Methods
#
A
D
L
P
Classes and Modules
Instance Public methods
_prefixes()

The prefixes used in render “foo” shortcuts.

    # File actionpack/lib/abstract_controller/view_paths.rb, line 33
33:     def _prefixes
34:       @_prefixes ||= begin
35:         parent_prefixes = self.class.parent_prefixes
36:         parent_prefixes.dup.unshift(controller_path)
37:       end
38:     end
append_view_path(path)
    # File actionpack/lib/abstract_controller/view_paths.rb, line 52
52:     def append_view_path(path)
53:       lookup_context.view_paths.push(*path)
54:     end
details_for_lookup()
    # File actionpack/lib/abstract_controller/view_paths.rb, line 48
48:     def details_for_lookup
49:       { }
50:     end
lookup_context()

LookupContext is the object responsible to hold all information required to lookup templates, i.e. view paths and details. Check ActionView::LookupContext for more information.

    # File actionpack/lib/abstract_controller/view_paths.rb, line 43
43:     def lookup_context
44:       @_lookup_context ||=
45:         ActionView::LookupContext.new(self.class._view_paths, details_for_lookup, _prefixes)
46:     end
prepend_view_path(path)
    # File actionpack/lib/abstract_controller/view_paths.rb, line 56
56:     def prepend_view_path(path)
57:       lookup_context.view_paths.unshift(*path)
58:     end