Dist::Zilla::Role::PrereqSource - something that registers prerequisites


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::PrereqSource - something that registers prerequisites

VERSION

Top

version 4.200008

DESCRIPTION

Top

PrereqSource plugins have a register_prereqs method that should register prereqs with the Dist::Zilla object.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Dist::Zilla::Role::PrereqSource;
BEGIN {
  $Dist::Zilla::Role::PrereqSource::VERSION = '4.200008';
}
# ABSTRACT: something that registers prerequisites
use Moose::Role;
with 'Dist::Zilla::Role::Plugin';


requires 'register_prereqs';

no Moose::Role;
1;

__END__