|
NAMECatalystX::RoleApplicator - apply roles to your Catalyst application-related classes VERSIONversion 0.005 SYNOPSIS package MyApp;
use base 'Catalyst';
use Catalyst;
use CatalystX::RoleApplicator;
__PACKAGE__->apply_request_class_roles(
qw/My::Request::Role Other::Request::Role/
);
DESCRIPTIONCatalystX::RoleApplicator makes it easy for you to apply roles to all the various classes that your Catalyst application uses. METHODSapply_request_class_rolesapply_response_class_rolesapply_engine_class_rolesapply_dispatcher_class_rolesapply_stats_class_rolesApply the named roles to one of the classes your application uses. init_metaApply the Moose extensions that power this class. AUTHORHans Dieter Pearcey <hdp@cpan.org> COPYRIGHT AND LICENSEThis 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.
|