method

build_template

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: UnboundTemplate
build_template(locals) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/unbound_template.rb, line 39
      def build_template(locals)
        Template.new(
          @source,
          @identifier,
          details.handler_class,

          format: details.format_or_default,
          variant: variant&.to_s,
          virtual_path: @virtual_path,

          locals: locals.map(&:to_s)
        )
      end
Register or log in to add new notes.