class ActionDispatch::Routing::Mapper::Scope

def each

def each
  node = self
  until node.equal? NULL
    yield node
    node = node.parent
  end
end