The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MooseX::Role::Pluggable::Plugin - Role for plugins to consume

VERSION

version 0.07

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.

NAME

MooseX::Role::Pluggable::Plugin - add plugins to your Moose classes

AUTHOR

John SJ Anderson, genehack@genehack.org

SEE ALSO

MooseX::Role::Pluggable

COPYRIGHT AND LICENSE

Copyright 2014, John SJ Anderson

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

John SJ Anderson <john@genehack.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by John SJ Anderson.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.