class method
self.call
Ruby on Rails 2.3.18
Since v2.3.18 Last seen in v2.3.18Signature
self.call(env)
No documentation comment.
Parameters
-
envreq
Source
# File actionpack/lib/action_controller/base.rb, line 382
def call(env)
# HACK: For global rescue to have access to the original request and response
request = env["action_controller.rescue.request"] ||= Request.new(env)
response = env["action_controller.rescue.response"] ||= Response.new
process(request, response)
end
Defined in actionpack/lib/action_controller/base.rb line 382
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionController::Base