Class: ActionView::PathResolver
- Defined in:
- lib/action_view/template/resolver.rb
Overview
An abstract class that implements a Resolver with path semantics.
Direct Known Subclasses
Constant Summary collapse
- EXTENSIONS =
:nodoc:
{ locale: ".", formats: ".", variants: "+", handlers: "." }
- DEFAULT_PATTERN =
":prefix/:action{.:locale,}{.:formats,}{+:variants,}{.:handlers,}"
Instance Method Summary collapse
-
#initialize(pattern = nil) ⇒ PathResolver
constructor
A new instance of PathResolver.
Methods inherited from Resolver
#clear_cache, #find_all, #find_all_anywhere, #find_all_with_query
Constructor Details
#initialize(pattern = nil) ⇒ PathResolver
Returns a new instance of PathResolver.
211 212 213 214 |
# File 'lib/action_view/template/resolver.rb', line 211 def initialize(pattern = nil) @pattern = pattern || DEFAULT_PATTERN super() end |