Method: ActionView::PathSet#find_all
- Defined in:
- actionview/lib/action_view/path_set.rb
#find_all(path, prefixes, partial, details, details_key, locals) ⇒ Object
45 46 47 48 49 50 51 |
# File 'actionview/lib/action_view/path_set.rb', line 45 def find_all(path, prefixes, partial, details, details_key, locals) search_combinations(prefixes) do |resolver, prefix| templates = resolver.find_all(path, prefix, partial, details, details_key, locals) return templates unless templates.empty? end [] end |