Dist::Zilla::Role::Stash::Authors - a stash that provides a list of author strings


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

Index


Code Index:

NAME

Top

Dist::Zilla::Role::Stash::Authors - a stash that provides a list of author strings

VERSION

Top

version 4.200008

OVERVIEW

Top

An Authors stash must provide an authors method that returns an arrayref of author strings, generally in the form "Name <email>".

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Dist::Zilla::Role::Stash::Authors;
BEGIN {
  $Dist::Zilla::Role::Stash::Authors::VERSION = '4.200008';
}
use Moose::Role;
with 'Dist::Zilla::Role::Stash';
# ABSTRACT: a stash that provides a list of author strings


requires 'authors';

1;

__END__