Module::Build::Pluggable::Base(3pm) | User Contributed Perl Documentation | Module::Build::Pluggable::Base(3pm) |
Module::Build::Pluggable::Base - Base object for plugins
package My::Module::Build::Plugin; use parent qw/Module::Build::Pluggable::Base/;
This is a abstract base class for Module::Build::Pluggable.
You cannot call this method in "HOOK_prepare" and HOOK_configure phase.
$self->add_before_action_modifier('build' => \&code);
Add a 'before' action method modifier.
You need to call this method in "HOOK_build" phase.
$self->add_around_action_modifier('build' => \&code);
Add a 'around' action method modifier.
You need to call this method in "HOOK_build" phase.
You need to call this method in "HOOK_build" phase.
You need to call this method in "HOOK_configure" phase.
You need to call this method in "HOOK_configure" phase.
2018-07-19 | perl v5.26.2 |