aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-01-31 16:33:06 -0800
committerCarl Lerche <carllerche@mac.com>2010-01-31 19:13:43 -0800
commit9f01dff9c203821bf4ac6d7b885f1d6b018d5c79 (patch)
tree5e7c4be2aec0f7e2bff6eac4e066a16dc4e269ad /Gemfile
parent9bd0422dd7b4fc9f3bebf6301b144c6a5f35c26b (diff)
downloadrails-9f01dff9c203821bf4ac6d7b885f1d6b018d5c79.tar.gz
rails-9f01dff9c203821bf4ac6d7b885f1d6b018d5c79.tar.bz2
rails-9f01dff9c203821bf4ac6d7b885f1d6b018d5c79.zip
Get rails tests running on bundler 0.9
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile19
1 files changed, 9 insertions, 10 deletions
diff --git a/Gemfile b/Gemfile
index 68f68aa22d..68e6487e2c 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,17 +1,20 @@
-gem "rake", ">= 0.8.7"
+path File.expand_path('..', __FILE__)
+source :gemcutter
+
+gem "rails", "3.0.pre"
+
+gem "rake", ">= 0.8.7"
gem "mocha", ">= 0.9.8"
-gem "ruby-debug", ">= 0.10.3" if RUBY_VERSION < '1.9'
-gem "rails", "3.0.pre", :path => "railties"
-%w(activesupport activemodel actionpack actionmailer activerecord activeresource).each do |lib|
- gem lib, '3.0.pre', :path => lib
+if RUBY_VERSION < '1.9'
+ gem "ruby-debug", ">= 0.10.3"
end
# AR
gem "arel", ">= 0.2.0"
gem "sqlite3-ruby", ">= 1.2.5"
-only :test do
+group :test do
gem "pg", ">= 0.8.0"
gem "mysql", ">= 2.8.1"
end
@@ -21,8 +24,6 @@ gem "rack-test", "0.5.3"
gem "RedCloth", ">= 4.2.2"
if ENV['CI']
- disable_system_gems
-
gem "nokogiri", ">= 1.4.0"
gem "memcache-client", ">= 1.7.6"
@@ -34,5 +35,3 @@ if ENV['CI']
gem "test-unit", ">= 2.0.5"
end
end
-
-disable_system_gems