method

find_all

find_all(*args)
public

No documentation available.

# File actionpack/lib/action_view/paths.rb, line 20
    def find_all(*args)
      each do |resolver|
        templates = resolver.find_all(*args)
        return templates unless templates.empty?
      end
      []
    end