Gemfile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. source 'http://rubygems.org'
  2. gem 'rails', '3.0.5'
  3. # Bundle edge Rails instead:
  4. # gem 'rails', :git => 'git://github.com/rails/rails.git'
  5. gem 'sqlite3'
  6. group :production do
  7. gem 'mysql'
  8. end
  9. # Use unicorn as the web server
  10. # gem 'unicorn'
  11. # Deploy with Capistrano
  12. gem 'capistrano'
  13. # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
  14. # gem 'ruby-debug'
  15. # gem 'ruby-debug19', :require => 'ruby-debug'
  16. # Bundle the extra gems:
  17. # gem 'bj'
  18. # gem 'nokogiri'
  19. # gem 'sqlite3-ruby', :require => 'sqlite3'
  20. # gem 'aws-s3', :require => 'aws/s3'
  21. #START:plugins
  22. gem 'will_paginate', '>= 3.0.pre'
  23. #START_HIGHLIGHT
  24. gem 'activemerchant', '~> 1.10.0'
  25. #START_HIGHLIGHT
  26. gem 'haml', '~> 3.0.18'
  27. #START_HIGHLIGHT
  28. gem 'jquery-rails', '~> 0.2.2'
  29. #END_HIGHLIGHT
  30. #END_HIGHLIGHT
  31. #END_HIGHLIGHT
  32. #END:plugins
  33. # Bundle gems for the local environment. Make sure to
  34. # put test-only gems in this group so their generators
  35. # and rake tasks are available in development mode:
  36. # group :development, :test do
  37. # gem 'webrat'
  38. # end