Class: ActionView::PathResolver

Inherits:
Resolver
  • Object
show all
Defined in:
lib/action_view/template/resolver.rb

Overview

An abstract class that implements a Resolver with path semantics.

Direct Known Subclasses

FileSystemResolver, FixtureResolver, NullResolver

Constant Summary collapse

EXTENSIONS =

:nodoc:

[:locale, :formats, :handlers]
DEFAULT_PATTERN =
":prefix/:action{.:locale,}{.:formats,}{.:handlers,}"

Instance Method Summary collapse

Methods inherited from Resolver

#clear_cache, #find_all

Constructor Details

#initialize(pattern = nil) ⇒ PathResolver

Returns a new instance of PathResolver.



108
109
110
111
# File 'lib/action_view/template/resolver.rb', line 108

def initialize(pattern=nil)
  @pattern = pattern || DEFAULT_PATTERN
  super()
end