http://qs321.pair.com?node_id=718426


in reply to Re^3: Mojo 0.7 released (Perl on Rails in 150 lines of code)
in thread Mojo 0.7 released (Perl on Rails in 150 lines of code)

->route will create a new route object, which has a method ->to that sets some attributes in the object.
There is no hidden magic and they should not touch parent or child routes, but default values (and captures) will be forwarded to child routes when matching a path.
# /foo my $x = $r->route('/foo')->to(controller => 'bar'); # /foo/* $x->route('/:action')->to(action => 'test');
This would be a nested route example where defaults and captures get forwarded. (controller => 'bar' in this case)