rails--rails/Gemfile

37 lines
724 B
Ruby
Raw Normal View History

2010-02-01 00:33:06 +00:00
path File.expand_path('..', __FILE__)
2010-02-05 02:28:45 +00:00
source 'http://gemcutter.org'
2010-02-01 00:33:06 +00:00
2010-02-04 01:29:51 +00:00
gem "rails", "3.0.0.beta"
2010-02-01 00:33:06 +00:00
gem "rake", ">= 0.8.7"
gem "mocha", ">= 0.9.8"
2010-02-01 00:33:06 +00:00
if RUBY_VERSION < '1.9'
gem "ruby-debug", ">= 0.10.3"
end
# AR
2010-02-04 17:52:27 +00:00
gem "sqlite3-ruby", ">= 1.2.5", :require => 'sqlite3'
2010-02-01 00:33:06 +00:00
group :test do
gem "pg", ">= 0.8.0"
gem "mysql", ">= 2.8.1"
end
# AP
2010-02-04 17:52:27 +00:00
gem "rack-test", "0.5.3", :require => 'rack/test'
gem "RedCloth", ">= 4.2.2"
if ENV['CI']
gem "nokogiri", ">= 1.4.0"
2010-02-04 17:52:27 +00:00
gem "memcache-client", ">= 1.7.6", :require => 'memcache'
2009-11-10 23:46:32 +00:00
# fcgi gem doesn't compile on 1.9
# avoid minitest strangeness on 1.9
if RUBY_VERSION < '1.9.0'
gem "fcgi", ">= 0.8.7"
else
2010-02-04 17:52:27 +00:00
gem "test-unit", ">= 2.0.5", :require => 'test/unit'
2009-11-10 23:46:32 +00:00
end
end