2010-02-23 20:56:28 -05:00
|
|
|
source 'http://rubygems.org'
|
2010-01-31 19:33:06 -05:00
|
|
|
|
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"
|
2010-04-05 04:52:47 -04:00
|
|
|
gem "rails", :path => File.dirname(__FILE__)
|
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"
|
2010-08-18 10:44:12 -04:00
|
|
|
gem "rdoc", ">= 2.5.10"
|
2010-08-20 20:22:21 -04:00
|
|
|
gem "horo", ">= 1.0.2"
|
2009-11-10 17:59:22 -05:00
|
|
|
|
2010-09-02 17:10:19 -04:00
|
|
|
# for perf tests
|
|
|
|
gem "faker"
|
|
|
|
gem "rbench"
|
2010-09-10 00:38:40 -04:00
|
|
|
gem "addressable"
|
2010-09-02 17:10:19 -04:00
|
|
|
|
2010-07-25 18:31:45 -04:00
|
|
|
# AS
|
|
|
|
gem "memcache-client", ">= 1.8.5"
|
|
|
|
|
|
|
|
# AM
|
|
|
|
gem "text-format", "~> 1.0.0"
|
|
|
|
|
2010-08-28 12:29:28 -04:00
|
|
|
gem "weakling", :git => "git://github.com/swistak/weakling.git"
|
|
|
|
|
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
|
|
|
|
gem "ruby-debug19" if RUBY_VERSION < "1.9.3"
|
|
|
|
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
|
2010-07-15 15:37:12 -04:00
|
|
|
gem "sqlite3-ruby", "~> 1.3.1", :require => 'sqlite3'
|
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"
|
2010-10-19 20:53:00 -04:00
|
|
|
gem "mysql2", ">= 0.2.6"
|
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
|