--- trunk/lib/Frey/Run.pm 2008/11/05 21:40:02 316 +++ trunk/lib/Frey/Run.pm 2008/11/05 22:05:02 317 @@ -1,6 +1,6 @@ package Frey::Run; use Moose; -extends 'Frey'; +extends 'Frey::ClassLoader'; with 'Frey::Web'; with 'Frey::Config'; with 'Frey::Escape'; @@ -37,6 +37,8 @@ my $class = $self->class; + $self->load_class( $class ); + my @required = grep { defined $_ && $_->can('name') && !defined( $self->params->{ $_->name } )