Class: ActionView::Resolver

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

Overview

Action View Resolver

Direct Known Subclasses

PathResolver

Defined Under Namespace

Classes: Cache, Path

Instance Method Summary collapse

Constructor Details

#initializeResolver

Returns a new instance of Resolver.



135
136
137
# File 'lib/action_view/template/resolver.rb', line 135

def initialize
  @cache = Cache.new
end

Instance Method Details

#clear_cacheObject



139
140
141
# File 'lib/action_view/template/resolver.rb', line 139

def clear_cache
  @cache.clear
end

#find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = []) ⇒ Object

Normalizes the arguments and passes it on to find_templates.



144
145
146
147
148
# File 'lib/action_view/template/resolver.rb', line 144

def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = [])
  cached(key, [name, prefix, partial], details, locals) do
    find_templates(name, prefix, partial, details)
  end
end

#find_all_anywhere(name, prefix, partial = false, details = {}, key = nil, locals = []) ⇒ Object



150
151
152
153
154
# File 'lib/action_view/template/resolver.rb', line 150

def find_all_anywhere(name, prefix, partial = false, details = {}, key = nil, locals = [])
  cached(key, [name, prefix, partial], details, locals) do
    find_templates(name, prefix, partial, details, true)
  end
end

#find_all_with_query(query) ⇒ Object

:nodoc:



156
157
158
# File 'lib/action_view/template/resolver.rb', line 156

def find_all_with_query(query) # :nodoc:
  @cache.cache_query(query) { find_template_paths(File.join(@path, query)) }
end