Action View Resolver

Methods
C
F
N
Classes and Modules
Class Public methods
new()
    # File actionpack/lib/action_view/template/resolver.rb, line 34
34:     def initialize
35:       @cached = Hash.new { |h1,k1| h1[k1] = Hash.new { |h2,k2|
36:         h2[k2] = Hash.new { |h3,k3| h3[k3] = Hash.new { |h4,k4| h4[k4] = {} } } } }
37:     end
Instance Public methods
clear_cache()
    # File actionpack/lib/action_view/template/resolver.rb, line 39
39:     def clear_cache
40:       @cached.clear
41:     end
find_all(name, prefix=nil, partial=false, details={}, key=nil, locals=[])

Normalizes the arguments and passes it on to find_template.

    # File actionpack/lib/action_view/template/resolver.rb, line 44
44:     def find_all(name, prefix=nil, partial=false, details={}, key=nil, locals=[])
45:       cached(key, [name, prefix, partial], details, locals) do
46:         find_templates(name, prefix, partial, details)
47:       end
48:     end