instance method
find_all
Ruby on Rails 3.0.20
Since v3.0.20Signature
find_all(name, prefix=nil, partial=false, details={}, key=nil)
Normalizes the arguments and passes it on to find_template.
Parameters
-
namereq -
prefixopt = nil -
partialopt = false -
detailsopt = {} -
keyopt = nil
Source
# File actionpack/lib/action_view/template/resolver.rb, line 18
def find_all(name, prefix=nil, partial=false, details={}, key=nil)
cached(key, prefix, name, partial) do
find_templates(name, prefix, partial, details)
end
end
Defined in actionpack/lib/action_view/template/resolver.rb line 18
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Resolver