method

decomposed_match

decomposed_match(path, options)
public

No documentation available.

# File actionpack/lib/action_dispatch/routing/mapper.rb, line 1527
        def decomposed_match(path, options) # :nodoc:
          if on = options.delete(:on)
            send(on) { decomposed_match(path, options) }
          else
            case @scope.scope_level
            when :resources
              nested { decomposed_match(path, options) }
            when :resource
              member { decomposed_match(path, options) }
            else
              add_route(path, options)
            end
          end
        end