Guest User

Untitled

a guest
Jun 13th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  4. gem 'rails', '4.2.5.1'
  5. # Use sqlite3 as the database for Active Record
  6. #gem 'sqlite3'
  7. #gem 'pg'
  8.  
  9. # Use SCSS for stylesheets
  10. gem 'sass-rails', '~> 5.0'
  11. # Use Uglifier as compressor for JavaScript assets
  12. gem 'uglifier', '>= 1.3.0'
  13. # Use CoffeeScript for .coffee assets and views
  14. gem 'coffee-rails', '~> 4.1.0'
  15.  
  16. # Use jquery as the JavaScript library
  17. gem 'jquery-rails'
  18.  
  19. gem 'jquery-ui-rails'
  20. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  21. gem 'turbolinks'
  22. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  23. gem 'jbuilder', '~> 2.0'
  24. # bundle exec rake doc:rails generates the API under doc/api.
  25. gem 'sdoc', '~> 0.4.0', group: :doc
  26.  
  27. # Use ActiveModel has_secure_password
  28. gem 'bcrypt-ruby', '3.1.2'
  29.  
  30.  
  31. group :development, :test do
  32. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  33. gem 'byebug'
  34. end
  35.  
  36. group :development do
  37. # Access an IRB console on exception pages or by using <%= console %> in views
  38. gem 'web-console', '~> 2.0'
  39. gem 'pg' , '0.17.1'
  40. gem 'rails_12factor'
  41. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  42. gem 'spring'
  43. end
  44.  
  45. group :production do
  46. gem 'puma', '2.11.1'
  47. end
  48.  
  49. default: &default
  50. adapter: postgresql
  51. encoding: unicode
  52. pool: 5
  53.  
  54.  
  55. development:
  56. <<: *default
  57. database: database_name
  58. username: xxx
  59. password: 'xxx'
  60.  
  61. test:
  62. <<: *default
  63. database: database_name
  64. username: xxx
  65. password: 'xxx'
  66.  
  67. production:
  68. <<: *default
  69. database: database_name
  70. username: xxx
  71. password: 'xxx'
Add Comment
Please, Sign In to add comment