Gemfile 972 B

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