Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.85 KB | None | 0 0
  1. source 'https://rubygems.org'
  2. gem 'postgres', '~> 0.8.1'
  3. group :development, :test do
  4. gem 'sqlite3'
  5. end
  6.  
  7. ...
  8.  
  9. Bundled gems are installed into ./vendor/bundle.
  10. remote: Post-install message from rdoc:
  11. remote: Depending on your version of ruby, you may need to install ruby rdoc/ri data:
  12. remote: <= 1.8.6 : unsupported
  13. remote: = 1.8.7 : gem install rdoc-data; rdoc-data --install
  14. remote: = 1.9.1 : gem install rdoc-data; rdoc-data --install
  15. remote: >= 1.9.2 : nothing to do! Yay!
  16. remote: Post-install message from haml:
  17. remote: HEADS UP! Haml 4.0 has many improvements, but also has changes that may break
  18. remote: your application:
  19. remote: * Support for Ruby 1.8.6 dropped
  20. remote: * Support for Rails 2 dropped
  21. remote: * Sass filter now always outputs <style> tags
  22. remote: * Data attributes are now hyphenated, not underscored
  23. remote: * html2haml utility moved to the html2haml gem
  24. remote: * Textile and Maruku filters moved to the haml-contrib gem
  25. remote: For more info see:
  26. remote: http://rubydoc.info/github/haml/haml/file/CHANGELOG.md
  27. remote: Post-install message from compass:
  28. remote: Compass is charityware. If you love it, please donate on our behalf at http://umdf.org/compass Thanks!
  29. remote: Post-install message from postgres:
  30. remote: ---------------------------------------------------------------------------
  31. remote: This is an old, deprecated version of the Ruby PostgreSQL driver that hasn't
  32. remote: been maintained or supported since early 2008.
  33. remote: You should install/require 'pg' instead.
  34. remote: If you need the 'postgres' gem for legacy code that can't be converted, you can
  35. remote: still install it using an explicit version, like so:
  36. remote: gem install postgres -v '0.7.9.2008.01.28'
  37. remote: gem uninstall postgres -v '>0.7.9.2008.01.28'
  38. remote: If you have any questions, the nice folks in the Google group can help:
  39. remote: ---------------------------------------------------------------------------
  40. remote: Post-install message from paperclip:
  41. remote: ##################################################
  42. remote: # NOTE FOR UPGRADING FROM 4.3.0 OR EARLIER #
  43. remote: ##################################################
  44. remote: Paperclip is now compatible with aws-sdk >= 2.0.0.
  45. remote: If you are using S3 storage, aws-sdk >= 2.0.0 requires you to make a few small
  46. remote: changes:
  47. remote: * You must set the `s3_region`
  48. remote: * If you are explicitly setting permissions anywhere, such as in an initializer,
  49. remote: note that the format of the permissions changed from using an underscore to
  50. remote: using a hyphen. For example, `:public_read` needs to be changed to
  51. remote: `public-read`.
  52. remote: For a walkthrough of upgrading from 4 to 5 and aws-sdk >= 2.0 you can watch
  53. remote: http://rubythursday.com/episodes/ruby-snack-27-upgrade-paperclip-and-aws-sdk-in-prep-for-rails-5
  54. remote: Post-install message from twitter-bootstrap-rails:
  55. remote: Important: You may need to add a javascript runtime to your Gemfile in order for bootstrap's LESS files to compile to CSS.
  56. remote: **********************************************
  57. remote: ExecJS supports these runtimes:
  58. remote: therubyracer - Google V8 embedded within Ruby
  59. remote: therubyrhino - Mozilla Rhino embedded within JRuby
  60. remote: Node.js
  61. remote: Apple JavaScriptCore - Included with Mac OS X
  62. remote: Microsoft Windows Script Host (JScript)
  63. remote: **********************************************
  64. remote: Bundle completed (47.33s)
  65. remote: Cleaning up the bundler cache.
  66. remote: sh: 1: $: not found
  67. remote: sh: 1: $: not found
  68. remote: !
  69. remote: ! Could not detect rake tasks
  70. remote: ! ensure you can run `$ bundle exec rake -P` against your app
  71. remote: ! and using the production group of your Gemfile.
  72. remote: ! This is an old, deprecated version of the Ruby PostgreSQL driver that hasn't
  73. remote: ! been maintained or supported since early 2008.
  74. remote: !
  75. remote: ! You should install/require 'pg' instead.
  76. remote: !
  77. remote: ! If you need the 'postgres' gem for legacy code that can't be converted, you can
  78. remote: ! still install it using an explicit version, like so:
  79. remote: !
  80. remote: ! gem install postgres -v '0.7.9.2008.01.28'
  81. remote: ! gem uninstall postgres -v '>0.7.9.2008.01.28'
  82. remote: !
  83. remote: ! If you have any questions, the nice folks in the Google group can help:
  84. remote: !
  85. remote: !
  86. remote: /app/tmp/buildpacks/f6d48d8a14fccbb19c0c0402fca224929d18e9ee042b3e204bc5992612e990d3b3a0fb1f9627b1a3bae11e9fa20dffc96e136bd734a2f3cf92a0d05bedd42cfe/lib/language_pack/helpers/rake_runner.rb:102:in `load_rake_tasks!': Could not detect rake tasks (LanguagePack::Helpers::RakeRunner::CannotLoadRakefileError)
  87. remote: ensure you can run `$ bundle exec rake -P` against your app
  88. remote: and using the production group of your Gemfile.
  89. remote: This is an old, deprecated version of the Ruby PostgreSQL driver that hasn't
  90. remote: been maintained or supported since early 2008.
  91. remote:
  92. remote: You should install/require 'pg' instead.
  93. remote:
  94. remote: If you need the 'postgres' gem for legacy code that can't be converted, you can
  95. remote: still install it using an explicit version, like so:
  96. remote:
  97. remote: gem install postgres -v '0.7.9.2008.01.28'
  98. remote: gem uninstall postgres -v '>0.7.9.2008.01.28'
  99.  
  100. ...
  101.  
  102. remote: ! Push rejected, failed to compile Ruby app.
  103. remote:
  104. remote: ! Push failed
  105. remote: Verifying deploy...
  106. remote:
  107. remote: ! Push rejected to git_name_repo.
  108. remote:
  109. To https://git.heroku.com/git_name_repo.git
  110. ! [remote rejected] master -> master (pre-receive hook declined)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement