public Method

InstanceMethods.process_with_components(request, response, method = :perform_action, *arguments)

Extracts the action_name from the request parameters and performs that action.

Source Code

# File action_controller/components.rb, line 72
def process_with_components(request, response, method = :perform_action, *arguments) #:nodoc:
  flash.discard if component_request?
  process_without_components(request, response, method, *arguments)
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.