Gemfile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. source 'https://rubygems.org'
  2. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  3. gem 'rails', '4.1.4'
  4. # Use sqlite3 as the database for Active Record
  5. gem 'sqlite3'
  6. # Use SCSS for stylesheets
  7. gem 'sass-rails', '~> 4.0.3'
  8. # Use Uglifier as compressor for JavaScript assets
  9. gem 'uglifier', '>= 1.3.0'
  10. # Use CoffeeScript for .js.coffee assets and views
  11. gem 'coffee-rails', '~> 4.0.0'
  12. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  13. # gem 'therubyracer', platforms: :ruby
  14. # Use jquery as the JavaScript library
  15. gem 'jquery-rails'
  16. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  17. gem 'turbolinks'
  18. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  19. gem 'jbuilder', '~> 2.0'
  20. # bundle exec rake doc:rails generates the API under doc/api.
  21. gem 'sdoc', '~> 0.4.0', group: :doc
  22. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  23. gem 'spring', group: :development
  24. # Use ActiveModel has_secure_password
  25. # gem 'bcrypt', '~> 3.1.7'
  26. # Use unicorn as the app server
  27. # gem 'unicorn'
  28. # Use Capistrano for deployment
  29. # gem 'capistrano-rails', group: :development
  30. # Use debugger
  31. # gem 'debugger', group: [:development, :test]