Skip to Content Skip to Search

module ActionView::ViewPaths

Public instance methods

Append a path to the list of view paths for the current LookupContext.

Parameters

  • path - If a String is provided, it gets converted into the default view path. You may also provide a custom view path (see ActionView::PathSet for more information)

Source code GitHub
# File actionview/lib/action_view/view_paths.rb, line 103
def append_view_path(path)
  lookup_context.append_view_paths(self.class._build_view_paths(path))
end
Source code GitHub
# File actionview/lib/action_view/view_paths.rb, line 93
def details_for_lookup
  {}
end

LookupContext is the object responsible for holding all information required for looking up templates, i.e. view paths and details. Check ActionView::LookupContext for more information.

Source code GitHub
# File actionview/lib/action_view/view_paths.rb, line 88
def lookup_context
  @_lookup_context ||=
    ActionView::LookupContext.new(self.class._view_paths, details_for_lookup, _prefixes)
end

Prepend a path to the list of view paths for the current LookupContext.

Parameters

  • path - If a String is provided, it gets converted into the default view path. You may also provide a custom view path (see ActionView::PathSet for more information)

Source code GitHub
# File actionview/lib/action_view/view_paths.rb, line 113
def prepend_view_path(path)
  lookup_context.prepend_view_paths(self.class._build_view_paths(path))
end

Namespace

Definition files