Gemfile 889 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. #START:mysql
  7. group :production do
  8. gem 'mysql2'
  9. end
  10. #END:mysql
  11. # Gems used only for assets and not required
  12. # in production environments by default.
  13. group :assets do
  14. gem 'sass-rails', '~> 3.2.3'
  15. gem 'coffee-rails', '~> 3.2.1'
  16. # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  17. # gem 'therubyracer', :platforms => :ruby
  18. gem 'uglifier', '>= 1.0.3'
  19. end
  20. gem 'jquery-rails'
  21. # To use ActiveModel has_secure_password
  22. gem 'bcrypt-ruby', '~> 3.0.0'
  23. # To use Jbuilder templates for JSON
  24. # gem 'jbuilder'
  25. # Use unicorn as the app server
  26. # gem 'unicorn'
  27. # Deploy with Capistrano
  28. #START_HIGHLIGHT
  29. gem 'capistrano'
  30. #END_HIGHLIGHT
  31. # To use debugger
  32. # gem 'debugger'
  33. gem 'will_paginate', '~> 3.0'