_normalize_args

_normalize_args(action=nil, options={}) Instance Public methods Normalize args by converting render âfooâ to render :action => âfooâ and render âfoo/barâ to render :file => âfoo/barâ. :api: plugin

_normalize_options

_normalize_options(options) Instance Public methods Normalize options. :api: plugin

_normalize_render

_normalize_render(*args, &block) Instance Public methods Normalize args and options. :api: private

_process_format

_process_format(format, options = {}) Instance Public methods Process the rendered format. :api: private

_process_options

_process_options(options) Instance Public methods Process extra options. :api: plugin

render

render(*args, &block) Instance Public methods Normalize arguments, options and then delegates #render_to_body and sticks the result in self.response_body. :api: public

render_to_body

render_to_body(options = {}) Instance Public methods Performs the actual template rendering. :api: public

render_to_string

render_to_string(*args, &block) Instance Public methods Raw rendering of a template to a string. It is similar to render, except that it does not set the response_body and it should be guaranteed to always return a string. If a component extends the semantics of response_body (as Action Controller extends it to be anything that responds to the method each), this method needs to be overridden in order to still return a string. :api: plugin

rendered_format

rendered_format() Instance Public methods Returns Content-Type of rendered content :api: public

view_assigns

view_assigns() Instance Public methods This method should return a hash with assigns. You can overwrite this configuration per controller. :api: public