method

build_unbound_template

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: ActionView::PathResolver

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

These similar methods exist in v7.1.3.2:

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.