Gemfile 871 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #START:mysql
  7. group :production do
  8. gem 'mysql'
  9. end
  10. #END:mysql
  11. # Use unicorn as the web server
  12. # gem 'unicorn'
  13. # Deploy with Capistrano
  14. #START_HIGHLIGHT
  15. gem 'capistrano'
  16. #END_HIGHLIGHT
  17. # To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
  18. # gem 'ruby-debug'
  19. # gem 'ruby-debug19', :require => 'ruby-debug'
  20. # Bundle the extra gems:
  21. # gem 'bj'
  22. # gem 'nokogiri'
  23. # gem 'sqlite3-ruby', :require => 'sqlite3'
  24. # gem 'aws-s3', :require => 'aws/s3'
  25. gem 'will_paginate', '>= 3.0.pre'
  26. # Bundle gems for the local environment. Make sure to
  27. # put test-only gems in this group so their generators
  28. # and rake tasks are available in development mode:
  29. # group :development, :test do
  30. # gem 'webrat'
  31. # end