trabajo-afectivo/Gemfile

59 lines
1,015 B
Ruby
Raw Normal View History

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'
gem "omniauth"
gem "omniauth-twitter"
gem "omniauth-facebook"
gem "omniauth-linkedin"
gem "omniauth-google-oauth2"
2012-04-10 14:06:46 +00:00
gem "twitter"
gem "koala"
gem "mail"
gem "mime-types"
gem 'delayed_job_active_record'
gem "daemons"
2012-04-10 13:31:21 +00:00
# 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'
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