Sha256: d154a556edf036c4c70c9639f8feadd57e8c92cc57e979dab7eb993828d068b8
Contents?: true
Size: 892 Bytes
Versions: 117
Compression:
Stored size: 892 Bytes
Contents
# frozen_string_literal: true module ActionView class ObjectRenderer < PartialRenderer # :nodoc: include ObjectRendering def initialize(lookup_context, options) super @object = nil @local_name = nil end def render_object_with_partial(object, partial, context, block) @object = object @local_name = local_variable(partial) render(partial, context, block) end def render_object_derive_partial(object, context, block) path = partial_path(object, context) render_object_with_partial(object, path, context, block) end private def template_keys(path) super + [@local_name] end def render_partial_template(view, locals, template, layout, block) locals[@local_name || template.variable] = @object super(view, locals, template, layout, block) end end end
Version data entries
117 entries across 112 versions & 10 rubygems