Methods
Instance Public methods
Append a path to the list of view paths for this controller.
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)
# File actionpack/lib/abstract_controller/view_paths.rb, line 17 def parent_prefixes @parent_prefixes ||= begin parent_controller = superclass prefixes = [] until parent_controller.abstract? prefixes << parent_controller.controller_path parent_controller = parent_controller.superclass end prefixes end end
Prepend a path to the list of view paths for this controller.
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)
A list of all of the default view paths for this controller.
Set the view paths.
Parameters
-
paths
- If a PathSet is provided, use that; otherwise, process the parameter into a PathSet.