Guest User

Untitled

a guest
Jan 15th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. group :development, :test do
  2. gem 'pg', '~> 1.0.0'
  3. gem 'rails_12factor'
  4. #gem 'sqlite3'
  5. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  6. gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  7. # Adds support for Capybara system testing and selenium driver
  8. gem 'capybara', '~> 2.13'
  9. gem 'selenium-webdriver'
  10. end
  11.  
  12. group :production do
  13. gem 'pg', '~> 1.0.0'
  14. gem 'rails_12factor'
  15. end
  16.  
  17. group :development do
  18. # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
  19. gem 'web-console', '>= 3.3.0'
  20. end
  21.  
  22. # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
  23. gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
  24.  
  25. development:
  26. adapter: postgresql
  27. encoding: unicode
  28. database: database_postgresql
  29. pool: 5
  30. username: postgres
  31. password: secret
  32.  
  33. test:
  34. adapter: postgresql
  35. encoding: unicode
  36. database: database_postgresql_test
  37. pool: 5
  38. username: postgres
  39. password: secret
  40.  
  41. production:
  42. adapter: postgresql
  43. encoding: unicode
  44. database: database_postgresql
  45. pool: 5
  46. username: postgres
  47. password: secret
  48.  
  49. remote: -----> Installing node-v6.11.1-linux-x64
  50. remote: -----> Detecting rake tasks
  51. remote: -----> Preparing app for Rails asset pipeline
  52. remote: Running: rake assets:precompile
  53. remote: Yarn executable was not detected in the system.
  54. remote: Download Yarn at https://yarnpkg.com/en/docs/install
  55. remote: I, [2018-01-15T13:38:08.180450 #590] INFO -- : Writing /tmp/build_3dd0bceef080f0d8f6be5bc51b9d4a48/public/assets/jumbotron--032aba6cd1415006731040523573e7138c703aedc6d1f46b3622cbe4c9feec27.jpg
  56. remote: rake aborted!
  57. remote: Gem::LoadError: Specified 'postgresql' for database adapter, but the gem is not loaded. Add `gem 'pg'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).
  58. remote: /tmp/build_3dd0bceef080f0d8f6be5bc51b9d4a48/vendor/bundle/ruby/2.3.0/gems/activerecord-5.1.4/lib/active_record/connection_adapters/connection_specification.rb:188:in `rescue in spec'
  59.  
  60. remote: /tmp/build_3dd0bceef080f0d8f6be5bc51b9d4a48/vendor/bundle/ruby/2.3.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/task.rb:67:in `block (2 levels) in define'
  61. remote: /tmp/build_3dd0bceef080f0d8f6be5bc51b9d4a48/vendor/bundle/ruby/2.3.0/gems/rake-12.3.0/exe/rake:27:in `<top (required)>'
  62. remote: Tasks: TOP => assets:precompile
  63. remote: (See full trace by running task with --trace)
  64. remote: !
  65. remote: ! Precompiling assets failed.
  66. remote: !
  67. remote: ! Push rejected, failed to compile Ruby app.
  68. remote:
  69. remote: ! Push failed
  70. remote: Verifying deploy...
  71. remote:
  72. remote: ! Push rejected to damp-beyond-28813.
  73.  
  74. gem 'pg'
  75. OR
  76. gem 'pg', '~> 1.0.0'
  77.  
  78. gem 'pg', '~> 0.11'
Add Comment
Please, Sign In to add comment