search for: initialize_current_url

Displaying 1 result from an estimated 1 matches for "initialize_current_url".

2009 Jun 06
2
How does controller call render when there's no render in action
Hello, I was studying Rails source and at this point: def process(request, response, method = :perform_action, *arguments) #:nodoc: response.request = request initialize_template_class(response) assign_shortcuts(request, response) initialize_current_url assign_names log_processing send(method, *arguments) send_response I have a question. "send(method, *arguments)" this calls action of a controller, right? But if there''s no ''render'' in action - how does it automatically call r...