
CatalystX::RoleApplicator - apply roles to your Catalyst application-related classes

version 0.005

package MyApp;
use base 'Catalyst';
use Catalyst;
use CatalystX::RoleApplicator;
__PACKAGE__->apply_request_class_roles(
qw/My::Request::Role Other::Request::Role/
);

CatalystX::RoleApplicator makes it easy for you to apply roles to all the various classes that your Catalyst application uses.

Apply the named roles to one of the classes your application uses.
Apply the Moose extensions that power this class.

Hans Dieter Pearcey <hdp@cpan.org>

This software is copyright (c) 2009 by Hans Dieter Pearcey <hdp@cpan.org>.
This is free software; you can redistribute it and/or modify it under the same terms as perl itself.