aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Gemfile
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-09-12 15:22:11 -0500
committerYehuda Katz <wycats@gmail.com>2009-09-12 15:22:11 -0500
commitddb4600ce608b14f9fa07bf1196b78e1d43ad999 (patch)
treec966da55cf5b475cdacb137597dfa1204e6f2547 /actionpack/Gemfile
parenta8a336cbfc55f91dc8befaad2425ff42085a1a4f (diff)
downloadrails-ddb4600ce608b14f9fa07bf1196b78e1d43ad999.tar.gz
rails-ddb4600ce608b14f9fa07bf1196b78e1d43ad999.tar.bz2
rails-ddb4600ce608b14f9fa07bf1196b78e1d43ad999.zip
Get ActionPack's test running on bundled gems. This should make running tests on new machines, as well as CI, work well.
Diffstat (limited to 'actionpack/Gemfile')
-rw-r--r--actionpack/Gemfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/actionpack/Gemfile b/actionpack/Gemfile
new file mode 100644
index 0000000000..ed1ae2e9c0
--- /dev/null
+++ b/actionpack/Gemfile
@@ -0,0 +1,14 @@
+rails_root = Pathname.new(File.dirname(__FILE__)).join("..")
+
+gem "rack", "~> 1.0.0"
+gem "rack-test", "~> 0.4.2"
+gem "activesupport", "3.0.pre", :vendored_at => rails_root.join("activesupport")
+gem "activemodel", "3.0.pre", :vendored_at => rails_root.join("activemodel")
+
+only :test do
+ gem "mocha"
+ gem "sqlite3-ruby"
+ gem "RedCloth"
+end
+
+disable_system_gems \ No newline at end of file