From 289076066551b5439e48ef743ca277af95eba36c Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Wed, 26 Aug 2009 11:13:02 -0700 Subject: Set the request and response in ActionController::Middleware --- actionpack/lib/action_controller/middleware.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actionpack') diff --git a/actionpack/lib/action_controller/middleware.rb b/actionpack/lib/action_controller/middleware.rb index 5fccca0b48..d2a404c1b1 100644 --- a/actionpack/lib/action_controller/middleware.rb +++ b/actionpack/lib/action_controller/middleware.rb @@ -7,6 +7,7 @@ module ActionController def call(env) controller = @controller.allocate + controller.send(:initialize) controller.app = @app controller._call(env) end @@ -24,6 +25,9 @@ module ActionController def _call(env) @_env = env + @_request = ActionDispatch::Request.new(env) + @_response = ActionDispatch::Response.new + @_response.request = request process(:index) end -- cgit v1.2.3