Gemfile 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #START:bcrypt
  17. # To use ActiveModel has_secure_password
  18. #START_HIGHLIGHT
  19. gem 'bcrypt-ruby', '~> 3.0.0'
  20. #END_HIGHLIGHT
  21. #END:bcrypt
  22. # To use Jbuilder templates for JSON
  23. # gem 'jbuilder'
  24. # Use unicorn as the app server
  25. # gem 'unicorn'
  26. # Deploy with Capistrano
  27. # gem 'capistrano'
  28. # To use debugger
  29. # gem 'debugger'
  30. gem 'will_paginate', '~> 3.0'