Gemfile 633 B

1234567891011121314151617181920212223242526272829303132333435
  1. source 'http://rubygems.org'
  2. gem 'rails', '3.1.0'
  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.1.0"
  10. gem 'coffee-rails', "~> 3.1.0"
  11. gem 'uglifier'
  12. end
  13. gem 'jquery-rails'
  14. gem 'therubyracer'
  15. # Use unicorn as the web server
  16. # gem 'unicorn'
  17. # Deploy with Capistrano
  18. # gem 'capistrano'
  19. # To use debugger
  20. # gem 'ruby-debug19', :require => 'ruby-debug'
  21. group :test do
  22. # Pretty printed test output
  23. gem 'turn', :require => false
  24. end