| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Stash::User - a stash of user name and email
version 4.200008
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::Stash::User; BEGIN { $Dist::Zilla::Stash::User::VERSION = '4.200008'; } use Moose; # ABSTRACT: a stash of user name and email has name => ( is => 'ro', isa => 'Str', required => 1, ); has email => ( is => 'ro', isa => 'Str', required => 1, ); sub authors { my ($self) = @_; return [ sprintf "%s <%s>", $self->name, $self->email ]; } with 'Dist::Zilla::Role::Stash::Authors'; 1; __END__