Namespace
Methods
A
D
L
P
Instance Public methods
append_view_path(path)
# File actionview/lib/action_view/view_paths.rb, line 49
def append_view_path(path)
  lookup_context.view_paths.push(*path)
end
details_for_lookup()
# File actionview/lib/action_view/view_paths.rb, line 45
def details_for_lookup
  { }
end
lookup_context()

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.

# File actionview/lib/action_view/view_paths.rb, line 40
def lookup_context
  @_lookup_context ||=
    ActionView::LookupContext.new(self.class._view_paths, details_for_lookup, _prefixes)
end
prepend_view_path(path)
# File actionview/lib/action_view/view_paths.rb, line 53
def prepend_view_path(path)
  lookup_context.view_paths.unshift(*path)
end