trabajo-afectivo/Gemfile

74 lines
1.2 KiB
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
2013-01-08 22:10:10 +00:00
gem 'rails', '3.2.11'
2012-04-10 13:31:21 +00:00
# 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-11-07 12:30:27 +00:00
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-linkedin'
2012-04-29 21:28:45 +00:00
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'
# e. g. on linux we need a javascript execution
# gem 'libv8', '~> 3.11.8'
# gem 'execjs'
# gem 'therubyracer'
# e. g. for mysql you need to load mysql
gem 'mysql2'
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
2012-07-23 22:22:23 +00:00
# event machine
gem 'eventmachine'
gem 'em-websocket'
2012-11-08 20:11:54 +00:00
# code coverage
gem 'simplecov'
gem 'simplecov-rcov'
2012-11-12 18:29:22 +00:00
# UI tests w/ Selenium
#gem 'selenium-webdriver'
#gem 'watir-webdriver'
2012-11-12 18:29:22 +00:00