2011-12-13 00:16:52 +08:00
|
|
|
source 'https://rubygems.org'
|
2010-02-01 08:33:06 +08:00
|
|
|
|
2010-12-19 02:42:03 +08:00
|
|
|
gemspec
|
|
|
|
|
2010-07-26 07:44:14 +08:00
|
|
|
if ENV['AREL']
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'arel', path: ENV['AREL']
|
2011-11-05 00:10:18 +08:00
|
|
|
else
|
2011-12-15 05:26:41 +08:00
|
|
|
gem 'arel'
|
2010-07-26 07:44:14 +08:00
|
|
|
end
|
|
|
|
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'rack-test', github: "brynary/rack-test"
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'bcrypt-ruby', '~> 3.0.0'
|
|
|
|
gem 'jquery-rails'
|
2011-09-09 01:51:23 +08:00
|
|
|
|
|
|
|
if ENV['JOURNEY']
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'journey', path: ENV['JOURNEY']
|
2011-09-09 01:51:23 +08:00
|
|
|
else
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'journey', github: "rails/journey"
|
2011-09-09 01:51:23 +08:00
|
|
|
end
|
|
|
|
|
2012-04-12 21:48:33 +08:00
|
|
|
if ENV['AR_DEPRECATED_FINDERS']
|
|
|
|
gem 'active_record_deprecated_finders', path: ENV['AR_DEPRECATED_FINDERS']
|
|
|
|
else
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'active_record_deprecated_finders', github: 'rails/active_record_deprecated_finders'
|
2012-04-12 21:48:33 +08:00
|
|
|
end
|
|
|
|
|
2011-07-07 08:38:54 +08:00
|
|
|
# This needs to be with require false to avoid
|
|
|
|
# it being automatically loaded by sprockets
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'uglifier', '>= 1.0.3', require: false
|
2011-03-30 04:42:57 +08:00
|
|
|
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'rake', '>= 0.8.7'
|
2012-04-24 18:35:08 +08:00
|
|
|
gem 'mocha', '>= 0.11.2'
|
2011-01-13 04:15:57 +08:00
|
|
|
|
|
|
|
group :doc do
|
2011-12-08 20:56:16 +08:00
|
|
|
# The current sdoc cannot generate GitHub links due
|
|
|
|
# to a bug, but the PR that fixes it has been there
|
|
|
|
# for some weeks unapplied. As a temporary solution
|
|
|
|
# this is our own fork with the fix.
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'sdoc', github: 'fxn/sdoc'
|
2011-12-16 07:22:14 +08:00
|
|
|
gem 'RedCloth', '~> 4.2'
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'w3c_validators'
|
2011-01-13 04:15:57 +08:00
|
|
|
end
|
2009-11-11 06:59:22 +08:00
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
# AS
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'memcache-client', '>= 1.8.5'
|
2010-07-26 06:31:45 +08:00
|
|
|
|
2011-11-18 06:41:53 +08:00
|
|
|
# Add your own local bundler stuff
|
2012-01-02 21:08:37 +08:00
|
|
|
local_gemfile = File.dirname(__FILE__) + "/.Gemfile"
|
|
|
|
instance_eval File.read local_gemfile if File.exists? local_gemfile
|
2010-11-06 05:11:58 +08:00
|
|
|
|
2011-07-22 20:55:48 +08:00
|
|
|
platforms :mri do
|
|
|
|
group :test do
|
2012-05-07 20:17:24 +08:00
|
|
|
gem 'ruby-prof', '0.10.8'
|
2011-07-22 20:55:48 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
platforms :ruby do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'json'
|
|
|
|
gem 'yajl-ruby'
|
|
|
|
gem 'nokogiri', '>= 1.4.5'
|
2011-05-06 01:47:07 +08:00
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
# AR
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'sqlite3', '~> 1.3.5'
|
2010-05-20 04:38:27 +08:00
|
|
|
|
|
|
|
group :db do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'pg', '>= 0.11.0'
|
|
|
|
gem 'mysql', '>= 2.8.1'
|
|
|
|
gem 'mysql2', '>= 0.3.10'
|
2010-05-20 04:38:27 +08:00
|
|
|
end
|
2010-07-26 06:31:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'json'
|
|
|
|
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2.0'
|
2010-01-01 10:49:27 +08:00
|
|
|
|
2010-10-07 23:49:40 +08: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-13 00:16:52 +08:00
|
|
|
gem 'jruby-openssl'
|
2010-10-07 01:45:48 +08:00
|
|
|
|
2010-05-20 04:38:27 +08:00
|
|
|
group :db do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'activerecord-jdbcmysql-adapter', '>= 1.2.0'
|
|
|
|
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2.0'
|
2010-05-20 04:38:27 +08:00
|
|
|
end
|
2010-01-01 10:49:27 +08:00
|
|
|
end
|
2010-08-17 04:58:17 +08:00
|
|
|
|
|
|
|
# gems that are necessary for ActiveRecord tests with Oracle database
|
|
|
|
if ENV['ORACLE_ENHANCED_PATH'] || ENV['ORACLE_ENHANCED']
|
|
|
|
platforms :ruby do
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'ruby-oci8', '>= 2.0.4'
|
2010-08-17 04:58:17 +08:00
|
|
|
end
|
|
|
|
if ENV['ORACLE_ENHANCED_PATH']
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'activerecord-oracle_enhanced-adapter', path: ENV['ORACLE_ENHANCED_PATH']
|
2010-08-17 04:58:17 +08:00
|
|
|
else
|
2012-05-02 04:01:29 +08:00
|
|
|
gem 'activerecord-oracle_enhanced-adapter', github: 'rsim/oracle-enhanced'
|
2010-08-17 04:58:17 +08:00
|
|
|
end
|
|
|
|
end
|
2011-10-03 10:51:01 +08:00
|
|
|
|
2011-10-03 23:56:11 +08:00
|
|
|
# A gem necessary for ActiveRecord tests with IBM DB
|
2011-12-13 00:16:52 +08:00
|
|
|
gem 'ibm_db' if ENV['IBM_DB']
|