Dist::Zilla::Role::PluginBundle - something that bundles a bunch of plugins


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Role::PluginBundle - something that bundles a bunch of plugins

VERSION

Top

version 4.200008

DESCRIPTION

Top

When loading configuration, if the config reader encounters a PluginBundle, it will replace its place in the plugin list with the result of calling its bundle_config method, which will be passed a Config::MVP::Section to configure the bundle.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::Role::PluginBundle;
BEGIN {
  $Dist::Zilla::Role::PluginBundle::VERSION = '4.200008';
}
# ABSTRACT: something that bundles a bunch of plugins
use Moose::Role;


sub register_component {
  my ($class, $name, $arg, $self) = @_;
  # ... we should register a placeholder so MetaConfig can tell us about the
  # pluginbundle that was loaded
}

requires 'bundle_config';

no Moose::Role;
1;

__END__