Gemfile 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. source 'http://rubygems.org'
  2. gem 'rails', '3.2.2'
  3. # Bundle edge Rails instead:
  4. #gem 'rails', :git => 'git://github.com/rails/rails.git'
  5. gem 'sqlite3'
  6. gem 'json'
  7. # Gems used only for assets and not required
  8. # in production environments by default.
  9. group :assets do
  10. gem 'sass-rails', '~> 3.2.4'
  11. gem 'coffee-rails', '~> 3.2.2'
  12. gem 'uglifier', '>= 1.2.3'
  13. end
  14. gem 'jquery-rails'
  15. # Optional support for eco templates
  16. gem 'eco'
  17. gem "omniauth"
  18. gem "omniauth-twitter"
  19. gem "omniauth-facebook"
  20. gem "omniauth-linkedin"
  21. gem "omniauth-google-oauth2"
  22. gem "twitter"
  23. gem "koala"
  24. gem "mail"
  25. gem "mime-types"
  26. gem 'delayed_job_active_record'
  27. gem "daemons"
  28. # To use ActiveModel has_secure_password
  29. # gem 'bcrypt-ruby', '~> 3.0.0'
  30. # e. g. on linux we need a javascript execution
  31. # gem 'execjs'
  32. # gem 'therubyracer'
  33. # e. g. for mysql you need to load mysql
  34. # gem 'mysql'
  35. # Use unicorn as the web server
  36. # gem 'unicorn'
  37. # Deploy with Capistrano
  38. # gem 'capistrano'
  39. # To use debugger
  40. # gem 'ruby-debug'