12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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 "omniauth-google-oauth2"
- 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'
|