Method: ActionDispatch::Routing::Mapper::Scope#each

Defined in:
actionpack/lib/action_dispatch/routing/mapper.rb

#eachObject



2367
2368
2369
2370
2371
2372
2373
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 2367

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