Gemfile 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. source 'https://rubygems.org'
  2. gem 'rails', '3.2.6'
  3. # Bundle edge Rails instead:
  4. # gem 'rails', :git => 'git://github.com/rails/rails.git'
  5. gem 'sqlite3'
  6. # Gems used only for assets and not required
  7. # in production environments by default.
  8. group :assets do
  9. gem 'sass-rails', '~> 3.2.3'
  10. gem 'coffee-rails', '~> 3.2.1'
  11. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  12. gem 'therubyracer', :platforms => :ruby
  13. gem 'uglifier', '>= 1.0.3'
  14. end
  15. gem 'jquery-rails'
  16. # To use ActiveModel has_secure_password
  17. # gem 'bcrypt-ruby', '~> 3.0.0'
  18. # To use Jbuilder templates for JSON
  19. # gem 'jbuilder'
  20. # Use unicorn as the app server
  21. # gem 'unicorn'
  22. # Deploy with Capistrano
  23. # gem 'capistrano'
  24. # To use debugger
  25. # gem 'debugger'
  26. gem 'activeadmin'
  27. gem 'shotgun'