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.



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

def initialize
  @cache = Cache.new
end

Instance Method Details

#clear_cacheObject



112
113
114
# File 'lib/action_view/template/resolver.rb', line 112

def clear_cache
  @cache.clear
end

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

Normalizes the arguments and passes it on to find_templates.



117
118
119
120
121
122
123
# File 'lib/action_view/template/resolver.rb', line 117

def find_all(name, prefix = nil, partial = false, details = {}, key = nil, locals = [])
  locals = locals.map(&:to_s).sort!.freeze

  cached(key, [name, prefix, partial], details, locals) do
    _find_all(name, prefix, partial, details, key, locals)
  end
end

#find_all_with_query(query) ⇒ Object

:nodoc:



128
129
130
# File 'lib/action_view/template/resolver.rb', line 128

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