Dist-Zilla-Plugin-ContributorsFromPod
view release on metacpan or search on metacpan
lib/Dist/Zilla/Plugin/ContributorsFromPod.pm view on Meta::CPAN
ircnick: Some Name <some@email.com>
B<NOTE:> the word C<CONTRIBUTORS> must be in upper case, and the
following C<=head1> section must also be in upper case. C<CONTRIBUTORS>
being the last C<=head1> section is also fine. This is because we use a
regex to parse out the list from Pod::Text.
=cut
has _contributors => (is => 'ro', isa => ArrayRef[Str], lazy_build => 1);
sub metadata {
my $self = shift;
return $self->_contributors ? { 'x_contributors' => $self->_contributors } : {};
}
sub _build__contributors {
my $self = shift;
( run in 0.324 second using v1.01-cache-2.11-cpan-5f2e87ce722 )