module ActionView::ViewPaths

def prepend_view_path(path)

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

Prepend a path to the list of view paths for the current LookupContext.
def prepend_view_path(path)
  lookup_context.view_paths.unshift(*path)
end