aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/Gemfile
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-10-15 17:16:42 -0700
committerYehuda Katz <wycats@gmail.com>2009-10-15 17:16:42 -0700
commitef70ad5538c4ce02c4d31ef01a8db6b55c837571 (patch)
treec69eff105f58549115175269acd06032c9f96c70 /actionpack/Gemfile
parentc44d560145cc332d48b9fbacbc7d23954ebb4a46 (diff)
downloadrails-ef70ad5538c4ce02c4d31ef01a8db6b55c837571.tar.gz
rails-ef70ad5538c4ce02c4d31ef01a8db6b55c837571.tar.bz2
rails-ef70ad5538c4ce02c4d31ef01a8db6b55c837571.zip
Fix a few more 1.9 bugs. Rack 1.0.1 is required for 1.9 compliance but not release, so bundling 1.0.1 from git
Diffstat (limited to 'actionpack/Gemfile')
-rw-r--r--actionpack/Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/Gemfile b/actionpack/Gemfile
index 3cf6e6e333..506458365f 100644
--- a/actionpack/Gemfile
+++ b/actionpack/Gemfile
@@ -2,7 +2,7 @@ rails_root = Pathname.new(File.dirname(__FILE__)).join("..")
Gem.sources.each { |uri| source uri }
-gem "rack", "~> 1.0.0"
+gem "rack", "1.0.1", :git => "git://github.com/rack/rack.git", :branch => "rack-1.0"
gem "rack-test", "~> 0.5.0"
gem "activesupport", "3.0.pre", :vendored_at => rails_root.join("activesupport")
gem "activemodel", "3.0.pre", :vendored_at => rails_root.join("activemodel")