NAME
MooseX::Role::Pluggable::Plugin - add plugins to your Moose classes
SYNOPSIS
package MyMoose::Plugin::Antlers;
use Moose;
with 'MooseX::Role::Pluggable::Plugin';
sub gore {
my( $self ) = shift;
# yadda yadda yadda
}
# see the documentation for MooseX::Role::Pluggable for info on how to get
# your Moose class to use this plugin...
DESCRIPTION
This is a role that must be consumed by any plugin that's going to be used with the 'MooseX::Role::Pluggable' role. It serves to make sure that required attributes are in place and contain the expected sorts of info.
Classes that want to utilize plugins should consume the 'MooseX::Role::Pluggable' role; see the documentation for that module for more information.
AUTHOR
John SJ Anderson, genehack@genehack.org
SEE ALSO
COPYRIGHT AND LICENSE
Copyright 2010, John SJ Anderson
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.