Flowdock
method

non_recursive

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: Formatter
non_recursive(cache, options) private

No documentation

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

Hide source
# File actionpack/lib/action_dispatch/journey/formatter.rb, line 91
        def non_recursive(cache, options)
          routes = []
          stack  = [cache]

          while stack.any?
            c = stack.shift
            routes.concat(c[:___routes]) if c.key?(:___routes)

            options.each do |pair|
              stack << c[pair] if c.key?(pair)
            end
          end

          routes
        end
Register or log in to add new notes.