2012-11-27 16:59:58 +00:00
|
|
|
source 'https://rubygems.org'
|
2010-02-01 00:33:06 +00:00
|
|
|
|
2010-12-18 18:42:03 +00:00
|
|
|
gemspec
|
|
|
|
|
2012-11-13 10:49:18 +00:00
|
|
|
gem 'mocha', '~> 0.13.0', require: false
|
2012-10-13 18:22:51 +00:00
|
|
|
gem 'rack-cache', '~> 1.2'
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'bcrypt-ruby', '~> 3.0.0'
|
2013-02-25 19:26:24 +00:00
|
|
|
gem 'jquery-rails', '~> 2.2.0'
|
2012-10-05 13:35:03 +00:00
|
|
|
gem 'turbolinks'
|
2013-02-25 21:39:25 +00:00
|
|
|
gem 'coffee-rails', '~> 4.0.0.beta1'
|
2011-09-08 17:51:23 +00:00
|
|
|
|
2011-07-07 00:38:54 +00:00
|
|
|
# This needs to be with require false to avoid
|
|
|
|
# it being automatically loaded by sprockets
|
2012-09-11 08:39:22 +00:00
|
|
|
gem 'uglifier', require: false
|
2012-09-19 15:43:40 +00:00
|
|
|
|
2011-01-12 20:15:57 +00:00
|
|
|
group :doc do
|
2012-11-12 21:51:51 +00:00
|
|
|
gem 'sdoc', github: 'voloko/sdoc'
|
2012-10-25 23:02:48 +00:00
|
|
|
gem 'redcarpet', '~> 2.2.2', platforms: :ruby
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'w3c_validators'
|
2012-12-22 21:43:10 +00:00
|
|
|
gem 'kindlerb'
|
2011-01-12 20:15:57 +00:00
|
|
|
end
|
2009-11-10 22:59:22 +00:00
|
|
|
|
2010-07-25 22:31:45 +00:00
|
|
|
# AS
|
2012-09-06 22:45:51 +00:00
|
|
|
gem 'dalli', '>= 2.2.1'
|
2010-07-25 22:31:45 +00:00
|
|
|
|
2011-11-17 22:41:53 +00:00
|
|
|
# Add your own local bundler stuff
|
2012-01-02 13:08:37 +00:00
|
|
|
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
|
|
|
|
instance_eval File.read local_gemfile if File.exists? local_gemfile
|
2010-11-05 21:11:58 +00:00
|
|
|
|
2011-07-22 12:55:48 +00:00
|
|
|
platforms :mri do
|
|
|
|
group :test do
|
2012-10-15 13:32:16 +00:00
|
|
|
gem 'ruby-prof', '~> 0.11.2' if RUBY_VERSION < '2.0'
|
2013-03-11 18:10:33 +00:00
|
|
|
gem 'debugger' if !ENV['TRAVIS'] && RUBY_VERSION < '2.1'
|
2011-07-22 12:55:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-25 22:31:45 +00:00
|
|
|
platforms :ruby do
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'yajl-ruby'
|
|
|
|
gem 'nokogiri', '>= 1.4.5'
|
2011-05-05 17:47:07 +00:00
|
|
|
|
2013-02-26 05:10:03 +00:00
|
|
|
# Needed for compiling the ActionDispatch::Journey parser
|
|
|
|
gem 'racc', '>=1.4.6', require: false
|
|
|
|
|
2010-07-25 22:31:45 +00:00
|
|
|
# AR
|
2012-05-16 03:25:30 +00:00
|
|
|
gem 'sqlite3', '~> 1.3.6'
|
2010-05-19 20:38:27 +00:00
|
|
|
|
|
|
|
group :db do
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'pg', '>= 0.11.0'
|
2012-11-18 00:48:22 +00:00
|
|
|
gem 'mysql', '>= 2.9.0'
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'mysql2', '>= 0.3.10'
|
2010-05-19 20:38:27 +00:00
|
|
|
end
|
2010-07-25 22:31:45 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'json'
|
2013-03-08 12:41:21 +00:00
|
|
|
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.7'
|
2010-01-01 02:49:27 +00:00
|
|
|
|
2010-10-07 15:49:40 +00:00
|
|
|
# This is needed by now to let tests work on JRuby
|
|
|
|
# TODO: When the JRuby guys merge jruby-openssl in
|
|
|
|
# jruby this will be removed
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'jruby-openssl'
|
2010-10-06 17:45:48 +00:00
|
|
|
|
2010-05-19 20:38:27 +00:00
|
|
|
group :db do
|
2013-03-08 12:41:21 +00:00
|
|
|
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.7'
|
|
|
|
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.7'
|
2010-05-19 20:38:27 +00:00
|
|
|
end
|
2010-01-01 02:49:27 +00:00
|
|
|
end
|
2010-08-16 20:58:17 +00:00
|
|
|
|
|
|
|
# gems that are necessary for ActiveRecord tests with Oracle database
|
2012-09-20 17:13:24 +00:00
|
|
|
if ENV['ORACLE_ENHANCED']
|
2010-08-16 20:58:17 +00:00
|
|
|
platforms :ruby do
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'ruby-oci8', '>= 2.0.4'
|
2010-08-16 20:58:17 +00:00
|
|
|
end
|
2012-09-20 17:13:24 +00:00
|
|
|
gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced', branch: 'master'
|
2010-08-16 20:58:17 +00:00
|
|
|
end
|
2011-10-03 02:51:01 +00:00
|
|
|
|
2011-10-03 15:56:11 +00:00
|
|
|
# A gem necessary for ActiveRecord tests with IBM DB
|
2011-12-12 16:16:52 +00:00
|
|
|
gem 'ibm_db' if ENV['IBM_DB']
|
2012-08-17 10:41:50 +00:00
|
|
|
|
|
|
|
gem 'benchmark-ips'
|