| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Role::Stash::Authors - a stash that provides a list of author strings
version 4.200008
An Authors stash must provide an authors method that returns an arrayref of
author strings, generally in the form "Name <email>".
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| 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__