Module: ActionView::ViewPaths::ClassMethods
- Defined in:
 - lib/action_view/view_paths.rb
 
Instance Method Summary collapse
- 
  
    
      #_prefixes  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - #_view_paths ⇒ Object
 - #_view_paths=(paths) ⇒ Object
 - 
  
    
      #append_view_path(path)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Append a path to the list of view paths for this controller.
 - 
  
    
      #prepend_view_path(path)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prepend a path to the list of view paths for this controller.
 - 
  
    
      #view_paths  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
A list of all of the default view paths for this controller.
 - 
  
    
      #view_paths=(paths)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Set the view paths.
 
Instance Method Details
#_prefixes ⇒ Object
:nodoc:
      23 24 25 26 27 28 29  | 
    
      # File 'lib/action_view/view_paths.rb', line 23 def _prefixes # :nodoc: @_prefixes ||= begin return local_prefixes if superclass.abstract? local_prefixes + superclass._prefixes end end  | 
  
#_view_paths ⇒ Object
      15 16 17  | 
    
      # File 'lib/action_view/view_paths.rb', line 15 def _view_paths ViewPaths.get_view_paths(self) end  | 
  
#_view_paths=(paths) ⇒ Object
      19 20 21  | 
    
      # File 'lib/action_view/view_paths.rb', line 19 def _view_paths=(paths) ViewPaths.set_view_paths(self, paths) end  | 
  
#append_view_path(path) ⇒ Object
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) 
      37 38 39  | 
    
      # File 'lib/action_view/view_paths.rb', line 37 def append_view_path(path) self._view_paths = view_paths + Array(path) end  | 
  
#prepend_view_path(path) ⇒ Object
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) 
      47 48 49  | 
    
      # File 'lib/action_view/view_paths.rb', line 47 def prepend_view_path(path) self._view_paths = ActionView::PathSet.new(Array(path) + view_paths) end  | 
  
#view_paths ⇒ Object
A list of all of the default view paths for this controller.
      52 53 54  | 
    
      # File 'lib/action_view/view_paths.rb', line 52 def view_paths _view_paths end  | 
  
#view_paths=(paths) ⇒ Object
Set the view paths.
Parameters
- 
paths- If a PathSet is provided, use that; otherwise, process the parameter into a PathSet. 
      61 62 63  | 
    
      # File 'lib/action_view/view_paths.rb', line 61 def view_paths=(paths) self._view_paths = ActionView::PathSet.new(Array(paths)) end  |