Flowdock
method

_find_all

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActionView::PathSet
_find_all(path, prefixes, args) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/path_set.rb, line 69
      def _find_all(path, prefixes, args)
        prefixes = [prefixes] if String === prefixes
        prefixes.each do |prefix|
          paths.each do |resolver|
            templates = resolver.find_all(path, prefix, *args)
            return templates unless templates.empty?
          end
        end
        []
      end
Register or log in to add new notes.