Class: ActionView::Resolver
- Inherits:
 - 
      Object
      
        
- Object
 - ActionView::Resolver
 
 
- Defined in:
 - lib/action_view/template/resolver.rb
 
Overview
Action View Resolver
Direct Known Subclasses
Defined Under Namespace
Classes: PathParser
Constant Summary collapse
- Path =
 ActionView::TemplatePath
Instance Method Summary collapse
- 
  
    
      #all_template_paths  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 - #clear_cache ⇒ Object
 - 
  
    
      #find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = [])  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Normalizes the arguments and passes it on to find_templates.
 
Instance Method Details
#all_template_paths ⇒ Object
:nodoc:
      68 69 70 71  | 
    
      # File 'lib/action_view/template/resolver.rb', line 68 def all_template_paths # :nodoc: # Not implemented by default [] end  | 
  
#clear_cache ⇒ Object
      60 61  | 
    
      # File 'lib/action_view/template/resolver.rb', line 60 def clear_cache end  | 
  
#find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = []) ⇒ Object
Normalizes the arguments and passes it on to find_templates.
      64 65 66  | 
    
      # File 'lib/action_view/template/resolver.rb', line 64 def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = []) _find_all(name, prefix, partial, details, key, locals) end  |