Class: ActionView::Resolver
- Inherits:
-
Object
- Object
- ActionView::Resolver
- Includes:
- ActiveSupport::Deprecation::DeprecatedConstantAccessor
- Defined in:
- lib/action_view/template/resolver.rb
Overview
Action View Resolver
Direct Known Subclasses
Defined Under Namespace
Classes: PathParser
Instance Method Summary collapse
-
#all_template_paths ⇒ Object
:nodoc:.
-
#built_templates ⇒ 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:
72 73 74 75 |
# File 'lib/action_view/template/resolver.rb', line 72 def all_template_paths # :nodoc: # Not implemented by default [] end |
#built_templates ⇒ Object
:nodoc:
67 68 69 70 |
# File 'lib/action_view/template/resolver.rb', line 67 def built_templates # :nodoc: # Used for error pages [] end |
#clear_cache ⇒ Object
59 60 |
# File 'lib/action_view/template/resolver.rb', line 59 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.
63 64 65 |
# File 'lib/action_view/template/resolver.rb', line 63 def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = []) _find_all(name, prefix, partial, details, key, locals) end |