2010-02-24 09:56:28 +08:00
|
|
|
source 'http://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']
|
|
|
|
else
|
|
|
|
gem "arel", :git => "git://github.com/rails/arel.git"
|
|
|
|
end
|
|
|
|
|
2010-09-20 16:18:44 +08:00
|
|
|
gem "rack", :git => "git://github.com/rack/rack.git"
|
2011-01-15 02:14:10 +08:00
|
|
|
gem "rack-test", :git => "git://github.com/brynary/rack-test.git"
|
2010-02-01 08:33:06 +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"
|
|
|
|
gem "horo", "= 1.0.3"
|
2011-02-09 08:01:36 +08:00
|
|
|
gem "RedCloth", "~> 4.2" if RUBY_VERSION < "1.9.3"
|
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"
|
2011-02-20 17:10:34 +08:00
|
|
|
gem "fssm", "~> 0.2.5"
|
2010-07-26 06:31:45 +08:00
|
|
|
|
|
|
|
platforms :mri_18 do
|
2010-05-19 22:24:51 +08:00
|
|
|
gem "system_timer"
|
|
|
|
gem "ruby-debug", ">= 0.10.3"
|
2010-09-03 05:10:19 +08:00
|
|
|
gem 'ruby-prof'
|
2010-05-19 22:24:51 +08:00
|
|
|
end
|
|
|
|
|
2010-11-06 05:11:58 +08:00
|
|
|
platforms :mri_19 do
|
|
|
|
# TODO: Remove the conditional when ruby-debug19 supports Ruby >= 1.9.3
|
2011-02-13 08:44:12 +08:00
|
|
|
gem "ruby-debug19", :require => 'ruby-debug' if RUBY_VERSION < "1.9.3"
|
2010-11-06 05:11:58 +08:00
|
|
|
end
|
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
platforms :ruby do
|
2010-04-29 00:02:45 +08:00
|
|
|
gem 'json'
|
|
|
|
gem 'yajl-ruby'
|
2010-11-17 02:09:42 +08:00
|
|
|
gem "nokogiri", ">= 1.4.4"
|
2010-06-01 16:06:17 +08:00
|
|
|
|
2010-07-26 06:31:45 +08:00
|
|
|
# AR
|
2011-01-17 04:55:28 +08:00
|
|
|
gem "sqlite3", "~> 1.3.3"
|
2010-05-20 04:38:27 +08:00
|
|
|
|
|
|
|
group :db do
|
2010-06-09 04:36:35 +08:00
|
|
|
gem "pg", ">= 0.9.0"
|
2010-05-20 04:38:27 +08:00
|
|
|
gem "mysql", ">= 2.8.1"
|
2011-02-03 02:25:16 +08:00
|
|
|
gem "mysql2", :git => "git://github.com/brianmario/mysql2.git"
|
2010-05-20 04:38:27 +08:00
|
|
|
end
|
2010-07-26 06:31:45 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
|
|
|
gem "ruby-debug", ">= 0.10.3"
|
|
|
|
|
2010-05-20 04:38:27 +08:00
|
|
|
gem "activerecord-jdbcsqlite3-adapter"
|
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
|
|
|
|
gem "activerecord-jdbcmysql-adapter"
|
|
|
|
gem "activerecord-jdbcpostgresql-adapter"
|
|
|
|
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
|
|
|
|
gem 'ruby-oci8', ">= 2.0.4"
|
|
|
|
end
|
|
|
|
if ENV['ORACLE_ENHANCED_PATH']
|
|
|
|
gem 'activerecord-oracle_enhanced-adapter', :path => ENV['ORACLE_ENHANCED_PATH']
|
|
|
|
else
|
|
|
|
gem "activerecord-oracle_enhanced-adapter", :git => "git://github.com/rsim/oracle-enhanced.git"
|
|
|
|
end
|
|
|
|
end
|