method

render_to_object

render_to_object(context, options)
public

No documentation available.

# File actionview/lib/action_view/renderer/renderer.rb, line 25
    def render_to_object(context, options) # :nodoc:
      if options.key?(:partial)
        render_partial_to_object(context, options)
      else
        render_template_to_object(context, options)
      end
    end