module ActionView::ViewPaths::ClassMethods

Public Instance Methods

append_view_path(path) Show source
# File actionview/lib/action_view/view_paths.rb, line 76
def append_view_path(path)
  self._view_paths = view_paths + Array(path)
end

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)

prepend_view_path(path) Show source
# File actionview/lib/action_view/view_paths.rb, line 86
def prepend_view_path(path)
  self._view_paths = ActionView::PathSet.new(Array(path) + view_paths)
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)

view_paths() Show source
# File actionview/lib/action_view/view_paths.rb, line 91
def view_paths
  _view_paths
end

A list of all of the default view paths for this controller.

view_paths=(paths) Show source
# File actionview/lib/action_view/view_paths.rb, line 100
def view_paths=(paths)
  self._view_paths = ActionView::PathSet.new(Array(paths))
end

Set the view paths.

Parameters

  • paths - If a PathSet is provided, use that; otherwise, process the parameter into a PathSet.

© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.