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