Advertisement
Guest User

Untitled

a guest
Feb 7th, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3.  
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '4.1.5'
  6. # Use sqlite3 as the database for Active Record
  7. #gem 'sqlite3'
  8.  
  9. # Use postgresql as the database for Active Record
  10. gem 'pg'
  11. gem 'rails_12factor', group: :production
  12.  
  13. # Use SCSS for stylesheets
  14. gem 'sass-rails', '~> 4.0.3'
  15. # Use Uglifier as compressor for JavaScript assets
  16. gem 'uglifier', '>= 1.3.0'
  17. # Use CoffeeScript for .js.coffee assets and views
  18. gem 'coffee-rails', '~> 4.0.0'
  19. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  20. # gem 'therubyracer', platforms: :ruby
  21.  
  22. # Use jquery as the JavaScript library
  23. gem 'jquery-rails'
  24. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  25. gem 'turbolinks'
  26. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  27. gem 'jbuilder', '~> 2.0'
  28. # bundle exec rake doc:rails generates the API under doc/api.
  29. gem 'sdoc', '~> 0.4.0', group: :doc
  30.  
  31. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  32. gem 'spring', group: :development
  33.  
  34. # Use ActiveModel has_secure_password
  35. # gem 'bcrypt', '~> 3.1.7'
  36.  
  37. # Use unicorn as the app server
  38. # gem 'unicorn'
  39.  
  40. # Use Capistrano for deployment
  41. # gem 'capistrano-rails', group: :development
  42.  
  43. # Use debugger
  44. # gem 'debugger', group: [:development, :test]
  45. gem "therubyracer", "~> 0.11.4"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement