instance method
process_action
Ruby on Rails 3.0.20
Since v3.0.20 Private — implementation detail, not part of the public APISignature
process_action(method_name, *args)
Call the action. Override this in a subclass to modify the behavior around processing an action. This, and not #process, is the intended way to override action dispatching.
Parameters
-
method_namereq -
argsrest
Source
# File actionpack/lib/abstract_controller/base.rb, line 149
def process_action(method_name, *args)
send_action(method_name, *args)
end
Defined in actionpack/lib/abstract_controller/base.rb line 149
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in AbstractController::Base