Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. source 'http://rubygems.org'
  2.  
  3.  
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '4.2.6'
  6. # Use sqlite3 as the database for Active Record
  7. gem 'sqlite3'
  8. # Use SCSS for stylesheets
  9. gem 'sass-rails', '~> 5.0'
  10. # Use Uglifier as compressor for JavaScript assets
  11. gem 'uglifier', '>= 1.3.0'
  12. # Use CoffeeScript for .coffee assets and views
  13. gem 'coffee-rails', '~> 4.1.0'
  14. # See https://github.com/rails/execjs#readme for more supported runtimes
  15. # gem 'therubyracer', platforms: :ruby
  16.  
  17. # Use jquery as the JavaScript library
  18. gem 'jquery-rails'
  19. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  20. gem 'turbolinks'
  21. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  22. gem 'jbuilder', '~> 2.0'
  23. # bundle exec rake doc:rails generates the API under doc/api.
  24. gem 'sdoc', '~> 0.4.0', group: :doc
  25.  
  26. # Use ActiveModel has_secure_password
  27. # gem 'bcrypt', '~> 3.1.7'
  28.  
  29. # Use Unicorn as the app server
  30. # gem 'unicorn'
  31.  
  32. # Use Capistrano for deployment
  33. # gem 'capistrano-rails', group: :development
  34.  
  35. group :development, :test do
  36. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  37. gem 'byebug'
  38. end
  39.  
  40. group :development do
  41. # Access an IRB console on exception pages or by using <%= console %> in views
  42. gem 'web-console', '~> 2.0'
  43.  
  44. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  45. gem 'spring'
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement