Advertisement
Guest User

Untitled

a guest
Jan 21st, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. source 'http://rubygems.org'
  2.  
  3. gem 'rails', '3.1.1'
  4.  
  5. # Bundle edge Rails instead:
  6. # gem 'rails', :git => 'git://github.com/rails/rails.git'
  7.  
  8. gem 'omniauth'
  9. gem 'twitter'
  10.  
  11. group :development, :test do
  12. gem 'mysql2'
  13. end
  14. group :production do
  15. gem 'pg'
  16. end
  17. gem 'thin'
  18. # Gems used only for assets and not required
  19. # in production environments by default.
  20. group :assets do
  21. gem 'sass-rails', '~> 3.1.4'
  22. gem 'coffee-rails', '~> 3.1.1'
  23. gem 'uglifier', '>= 1.0.3'
  24. end
  25.  
  26. gem 'jquery-rails'
  27.  
  28. # To use ActiveModel has_secure_password
  29. # gem 'bcrypt-ruby', '~> 3.0.0'
  30.  
  31. # Use unicorn as the web server
  32. # gem 'unicorn'
  33.  
  34. # Deploy with Capistrano
  35. # gem 'capistrano'
  36.  
  37. # To use debugger
  38. # gem 'ruby-debug19', :require => 'ruby-debug'
  39.  
  40. group :test do
  41. # Pretty printed test output
  42. gem 'turn', :require => false
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement