From 5d8e76cefe4680b4b7bbba37f314ffa274a591a4 Mon Sep 17 00:00:00 2001 From: Rizwan Reza Date: Sun, 16 May 2010 23:40:17 +0430 Subject: [PATCH] Rack dependency bumped to 1.1.0, tests passing. --- actionpack/Rakefile | 2 +- actionpack/lib/action_controller.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 23e251f..b982c61 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s| s.requirements << 'none' s.add_dependency('activesupport', '= 2.3.6' + PKG_BUILD) - s.add_dependency('rack', '~> 1.0.0') + s.add_dependency('rack', '~> 1.1.0') s.require_path = 'lib' s.autorequire = 'action_controller' diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb index 2824ae9..262faea 100644 --- a/actionpack/lib/action_controller.rb +++ b/actionpack/lib/action_controller.rb @@ -31,7 +31,7 @@ rescue LoadError end end -gem 'rack', '~> 1.0.1' +gem 'rack', '~> 1.1.0' require 'rack' require 'action_controller/cgi_ext' -- 1.6.5.2