Gemfile 986 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 "twitter"
  22. gem "koala"
  23. gem "mail"
  24. gem "mime-types"
  25. gem 'delayed_job_active_record'
  26. gem "daemons"
  27. # To use ActiveModel has_secure_password
  28. # gem 'bcrypt-ruby', '~> 3.0.0'
  29. # e. g. on linux we need a javascript execution
  30. # gem 'execjs'
  31. # gem 'therubyracer'
  32. # e. g. for mysql you need to load mysql
  33. # gem 'mysql'
  34. # Use unicorn as the web server
  35. # gem 'unicorn'
  36. # Deploy with Capistrano
  37. # gem 'capistrano'
  38. # To use debugger
  39. # gem 'ruby-debug'