Parent

Class/Module Index [+]

Quicksearch

ActionView::Resolver

Action View Resolver

Public Class Methods

new() click to toggle source
# File lib/action_view/template/resolver.rb, line 104
def initialize
  @cache = Cache.new
end

Public Instance Methods

clear_cache() click to toggle source
# File lib/action_view/template/resolver.rb, line 108
def clear_cache
  @cache.clear
end
find_all(name, prefix=nil, partial=false, details={}, key=nil, locals=[]) click to toggle source

Normalizes the arguments and passes it on to find_templates.

# File lib/action_view/template/resolver.rb, line 113
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

[Validate]

Generated with the Darkfish Rdoc Generator 2.