2011-12-13 00:16:38 +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']
|
|
|
|
gem "arel", :path => ENV['AREL']
|
2011-11-05 00:10:18 +08:00
|
|
|
else
|
|
|
|
gem "arel", :git => "git://github.com/rails/arel"
|
2010-07-26 07:44:14 +08:00
|
|
|
end
|
|
|
|
|
2011-09-02 12:54:17 +08:00
|
|
|
gem "bcrypt-ruby", "~> 3.0.0"
|
2011-07-24 16:57:59 +08:00
|
|
|
gem "jquery-rails"
|
2011-09-09 01:51:23 +08:00
|
|
|
|
|
|
|
if ENV['JOURNEY']
|
|
|
|
gem "journey", :path => ENV['JOURNEY']
|
|
|
|
else
|
|
|
|
gem "journey", :git => "git://github.com/rails/journey"
|
|
|
|
end
|
|
|
|
|
2011-07-07 08:38:54 +08:00
|
|
|
# This needs to be with require false to avoid
|
|
|
|
# it being automatically loaded by sprockets
|
2011-09-05 17:37:45 +08:00
|
|
|
gem "uglifier", ">= 1.0.3", :require => false
|
2011-03-30 04:42:57 +08:00
|
|
|
|
2011-10-23 00:17:33 +08:00
|
|
|
gem "rake", ">= 0.8.7"
|
2009-11-11 06:59:22 +08:00
|
|
|
gem "mocha", ">= 0.9.8"
|
2011-01-13 04:15:57 +08:00
|
|
|
|
|
|
|
group :doc do
|
|
|
|
gem "rdoc", "~> 3.4"
|
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.
|
|
|
|
gem "sdoc", :git => 'git://github.com/fxn/sdoc.git'
|
2011-02-09 08:01:36 +08:00
|
|
|
gem "RedCloth", "~> 4.2" if RUBY_VERSION < "1.9.3"
|
2011-07-04 19:42:25 +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
|
|
|
|
gem "memcache-client", ">= 1.8.5"
|
|
|
|
|
|
|
|
platforms :mri_18 do
|
2010-05-19 22:24:51 +08:00
|
|
|
gem "system_timer"
|
2011-04-16 00:42:51 +08:00
|
|
|
gem "json"
|
2010-05-19 22:24:51 +08:00
|
|
|
end
|
|
|
|
|
2011-11-18 06:41:53 +08:00
|
|
|
# Add your own local bundler stuff
|
|
|
|
instance_eval File.read ".Gemfile" if File.exists? ".Gemfile"
|
2010-11-06 05:11:58 +08:00
|
|
|
|
2011-07-22 20:55:48 +08:00
|
|
|
platforms :mri do
|
|
|
|
group :test do
|
|
|
|
gem "ruby-prof" if RUBY_VERSION < "1.9.3"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
platforms :ruby do
|
2011-05-25 04:27:43 +08:00
|
|
|
gem "json"
|
|
|
|
gem "yajl-ruby"
|
2011-06-17 05:01:49 +08:00
|
|
|
gem "nokogiri", ">= 1.4.5"
|
2011-05-06 01:47:07 +08:00
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
# AR
|
2011-12-04 12:57:44 +08:00
|
|
|
gem "sqlite3", "~> 1.3.5"
|
2010-05-20 04:38:27 +08:00
|
|
|
|
|
|
|
group :db do
|
2011-12-04 04:09:43 +08:00
|
|
|
gem "pg", ">= 0.11.0"
|
2010-05-20 04:38:27 +08:00
|
|
|
gem "mysql", ">= 2.8.1"
|
2011-11-17 15:14:06 +08:00
|
|
|
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-04-16 18:58:53 +08:00
|
|
|
gem "json"
|
2011-09-17 21:09:30 +08:00
|
|
|
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
|
2010-10-07 01:45:48 +08:00
|
|
|
gem "jruby-openssl"
|
|
|
|
|
2010-05-20 04:38:27 +08:00
|
|
|
group :db do
|
2011-09-17 21:09:30 +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-05-25 04:27:43 +08:00
|
|
|
gem "ruby-oci8", ">= 2.0.4"
|
2010-08-17 04:58:17 +08:00
|
|
|
end
|
|
|
|
if ENV['ORACLE_ENHANCED_PATH']
|
2011-05-25 04:27:43 +08:00
|
|
|
gem "activerecord-oracle_enhanced-adapter", :path => ENV['ORACLE_ENHANCED_PATH']
|
2010-08-17 04:58:17 +08:00
|
|
|
else
|
|
|
|
gem "activerecord-oracle_enhanced-adapter", :git => "git://github.com/rsim/oracle-enhanced.git"
|
|
|
|
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-10-03 10:51:01 +08:00
|
|
|
gem "ibm_db" if ENV['IBM_DB']
|