Flowdock
method

_find_all

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: ActionView::PathSet
_find_all(path, prefixes, args, outside_app) 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 72
    def _find_all(path, prefixes, args, outside_app)
      prefixes = [prefixes] if String === prefixes
      prefixes.each do |prefix|
        paths.each do |resolver|
          if outside_app
            templates = resolver.find_all_anywhere(path, prefix, *args)
          else
            templates = resolver.find_all(path, prefix, *args)
          end
          return templates unless templates.empty?
        end
      end
      []
    end
Register or log in to add new notes.