search for: _normalize_render

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

2012 Sep 18
4
multiple modules defining same method included into a class
...is another module included called AbstractController::Layouts. Layouts in turn includes a module called Rendering. Since there is a Rendering module within the AbstractController namespace, it is found, and it indeed contains a method called render. def render(*args, &block) options = _normalize_render(*args, &block) self.response_body = render_to_body(options) end And because render is included in Layouts, it''s included as an instance method, and because Layouts was included in ActionController::Base, that render method utlimately makes its way up to the Base class. Now w...