class ActionView::Renderer
def render_to_object(context, options) # :nodoc:
Experimental RBS support (using type sampling data from the type_fusion
project).
type ActionView__Renderer_render_to_object_context = #<Class:0x000000011a1a2640> | #<Class:0x000000010fd1fb40> | #<Class:0x0000000115c7ad38> | #<Class:0x0000000112ab8ca0> | #<Class:0x0000000116cdc140> | #<Class:0x000000010fb94398> | #<Class:0x000000010ff1d168> | #<Class:0x00000001089f1d80> def render_to_object: (ActionView__Renderer_render_to_object_context context, Hash options) -> ActionView::AbstractRenderer::RenderedTemplate
This signature was generated using 8 samples from 1 application.
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