Flowdock
method

build_unbound_template

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: ActionView::PathResolver
build_unbound_template(template, virtual_path) 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/template/resolver.rb, line 240
      def build_unbound_template(template, virtual_path)
        handler, format, variant = extract_handler_and_format_and_variant(template)
        source = source_for_template(template)

        UnboundTemplate.new(
          source,
          template,
          handler,
          virtual_path: virtual_path,
          format: format,
          variant: variant,
        )
      end
Register or log in to add new notes.