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:
66 67 68 69 |
# File 'lib/action_view/template/resolver.rb', line 66 def all_template_paths # :nodoc: # Not implemented by default [] end |
#clear_cache ⇒ Object
58 59 |
# File 'lib/action_view/template/resolver.rb', line 58 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.
62 63 64 |
# File 'lib/action_view/template/resolver.rb', line 62 def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = []) _find_all(name, prefix, partial, details, key, locals) end |