in reply to Reflections on the design of a pure-Moose web app...

Mojolicious doesnt seem to be written in Moose...
use base 'Mojolicious'; sub startup { my $self = shift; my $r = $self->routes; $r->route('/:controller/:action') ->to(controller => 'foo', action => 'bar'); }
I guess your app which uses Mojolicious is?

Replies are listed 'Best First'.
Re^2: Reflections on the design of a pure-Moose web app...
by locked_user sundialsvc4 (Abbot) on Mar 23, 2009 at 19:30 UTC

    Correct.

    And Mojolicious, as a framework, well... I'm not trying to sell it here. Did the job okey.