module ActionView::ViewPaths::ClassMethods

def append_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

Append a path to the list of view paths for this controller.
def append_view_path(path)
  self._view_paths = view_paths + Array(path)
end