Gemfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. source 'https://rubygems.org'
  2. ruby '2.3.3'
  3. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  4. gem 'rails', '4.2.6'
  5. # Use SCSS for stylesheets
  6. gem 'sass-rails', '~> 5.0'
  7. # Use Uglifier as compressor for JavaScript assets
  8. gem 'uglifier', '>= 1.3.0'
  9. # Use CoffeeScript for .coffee assets and views
  10. gem 'coffee-rails', '~> 4.1.0'
  11. # See https://github.com/rails/execjs#readme for more supported runtimes
  12. # gem 'therubyracer', platforms: :ruby
  13. # Use Haml as the templating library
  14. gem 'haml'
  15. # Use jquery as the JavaScript library
  16. gem 'jquery-rails'
  17. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  18. gem 'turbolinks'
  19. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  20. gem 'jbuilder', '~> 2.0'
  21. # bundle exec rake doc:rails generates the API under doc/api.
  22. gem 'sdoc', '~> 0.4.0', group: :doc
  23. # Use ActiveModel has_secure_password
  24. # gem 'bcrypt', '~> 3.1.7'
  25. # Use Unicorn as the app server
  26. # gem 'unicorn'
  27. # Use Capistrano for deployment
  28. # gem 'capistrano-rails', group: :development
  29. gem 'themoviedb'
  30. group :development, :test do
  31. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  32. gem 'byebug'
  33. gem 'rspec-rails'
  34. gem 'guard-rspec'
  35. # Use sqlite3 as the database for Active Record
  36. gem 'sqlite3'
  37. # Access an IRB console on exception pages or by using <%= console %> in views
  38. gem 'web-console', '~> 2.0'
  39. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  40. gem 'spring'
  41. end
  42. group :production do
  43. gem 'pg' # for Heroku deployment
  44. gem 'rails_12factor'
  45. end