2010-02-23 20:56:28 -05:00
|
|
|
source 'http://rubygems.org'
|
2010-01-31 19:33:06 -05:00
|
|
|
|
2010-12-18 13:42:03 -05:00
|
|
|
gemspec
|
|
|
|
|
2010-07-25 19:44:14 -04:00
|
|
|
if ENV['AREL']
|
|
|
|
gem "arel", :path => ENV['AREL']
|
|
|
|
else
|
|
|
|
gem "arel", :git => "git://github.com/rails/arel.git"
|
|
|
|
end
|
|
|
|
|
2010-09-20 04:18:44 -04:00
|
|
|
gem "rack", :git => "git://github.com/rack/rack.git"
|
2011-01-14 13:14:10 -05:00
|
|
|
gem "rack-test", :git => "git://github.com/brynary/rack-test.git"
|
2010-01-31 19:33:06 -05:00
|
|
|
|
|
|
|
gem "rake", ">= 0.8.7"
|
2009-11-10 17:59:22 -05:00
|
|
|
gem "mocha", ">= 0.9.8"
|
2011-01-12 15:15:57 -05:00
|
|
|
|
|
|
|
group :doc do
|
|
|
|
gem "rdoc", "~> 3.4"
|
|
|
|
gem "horo", "= 1.0.3"
|
2011-02-08 19:01:36 -05:00
|
|
|
gem "RedCloth", "~> 4.2" if RUBY_VERSION < "1.9.3"
|
2011-01-12 15:15:57 -05:00
|
|
|
end
|
2009-11-10 17:59:22 -05:00
|
|
|
|
2010-07-25 18:31:45 -04:00
|
|
|
# AS
|
|
|
|
gem "memcache-client", ">= 1.8.5"
|
2011-02-20 04:10:34 -05:00
|
|
|
gem "fssm", "~> 0.2.5"
|
2010-07-25 18:31:45 -04:00
|
|
|
|
|
|
|
platforms :mri_18 do
|
2010-05-19 10:24:51 -04:00
|
|
|
gem "system_timer"
|
|
|
|
gem "ruby-debug", ">= 0.10.3"
|
2010-09-02 17:10:19 -04:00
|
|
|
gem 'ruby-prof'
|
2010-05-19 10:24:51 -04:00
|
|
|
end
|
|
|
|
|
2010-11-05 17:11:58 -04:00
|
|
|
platforms :mri_19 do
|
|
|
|
# TODO: Remove the conditional when ruby-debug19 supports Ruby >= 1.9.3
|
2011-02-12 19:44:12 -05:00
|
|
|
gem "ruby-debug19", :require => 'ruby-debug' if RUBY_VERSION < "1.9.3"
|
2010-11-05 17:11:58 -04:00
|
|
|
end
|
|
|
|
|
2010-07-25 18:31:45 -04:00
|
|
|
platforms :ruby do
|
2010-04-28 12:02:45 -04:00
|
|
|
gem 'json'
|
|
|
|
gem 'yajl-ruby'
|
2010-11-16 13:09:42 -05:00
|
|
|
gem "nokogiri", ">= 1.4.4"
|
2010-06-01 04:06:17 -04:00
|
|
|
|
2010-07-25 18:31:45 -04:00
|
|
|
# AR
|
2011-01-16 15:55:28 -05:00
|
|
|
gem "sqlite3", "~> 1.3.3"
|
2010-05-19 16:38:27 -04:00
|
|
|
|
|
|
|
group :db do
|
2010-06-08 16:36:35 -04:00
|
|
|
gem "pg", ">= 0.9.0"
|
2010-05-19 16:38:27 -04:00
|
|
|
gem "mysql", ">= 2.8.1"
|
2011-02-02 13:25:16 -05:00
|
|
|
gem "mysql2", :git => "git://github.com/brianmario/mysql2.git"
|
2010-05-19 16:38:27 -04:00
|
|
|
end
|
2010-07-25 18:31:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :jruby do
|
|
|
|
gem "ruby-debug", ">= 0.10.3"
|
|
|
|
|
2010-05-19 16:38:27 -04:00
|
|
|
gem "activerecord-jdbcsqlite3-adapter"
|
2009-12-31 21:49:27 -05:00
|
|
|
|
2010-10-07 11:49:40 -04: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-06 13:45:48 -04:00
|
|
|
gem "jruby-openssl"
|
|
|
|
|
2010-05-19 16:38:27 -04:00
|
|
|
group :db do
|
|
|
|
gem "activerecord-jdbcmysql-adapter"
|
|
|
|
gem "activerecord-jdbcpostgresql-adapter"
|
|
|
|
end
|
2009-12-31 21:49:27 -05:00
|
|
|
end
|
2010-08-16 16:58:17 -04: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
|