123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- source 'http://rubygems.org'
- gem 'rails', '3.2.2'
- # Bundle edge Rails instead:
- #gem 'rails', :git => 'git://github.com/rails/rails.git'
- gem 'sqlite3'
- gem 'json'
- # Gems used only for assets and not required
- # in production environments by default.
- group :assets do
- gem 'sass-rails', '~> 3.2.4'
- gem 'coffee-rails', '~> 3.2.2'
- gem 'uglifier', '>= 1.2.3'
- end
- gem 'jquery-rails'
- # Optional support for eco templates
- gem 'eco'
- gem "omniauth"
- gem "omniauth-twitter"
- gem "omniauth-facebook"
- gem "omniauth-linkedin"
- gem "twitter"
- gem "koala"
- gem "mail"
- gem "mime-types"
- gem 'delayed_job_active_record'
- gem "daemons"
- # To use ActiveModel has_secure_password
- # gem 'bcrypt-ruby', '~> 3.0.0'
- # e. g. on linux we need a javascript execution
- # gem 'execjs'
- # gem 'therubyracer'
- # e. g. for mysql you need to load mysql
- # gem 'mysql'
- # Use unicorn as the web server
- # gem 'unicorn'
- # Deploy with Capistrano
- # gem 'capistrano'
- # To use debugger
- # gem 'ruby-debug'
|