| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Stash::PAUSE - a stash of your PAUSE credentials
version 4.200008
The PAUSE stash is a Login stash generally used for uploading to PAUSE.
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::PAUSE; BEGIN { $Dist::Zilla::Stash::PAUSE::VERSION = '4.200008'; } use Moose; # ABSTRACT: a stash of your PAUSE credentials sub mvp_aliases { return { user => 'username' }; } has username => ( is => 'ro', isa => 'Str', required => 1, ); has password => ( is => 'ro', isa => 'Str', required => 1, ); with 'Dist::Zilla::Role::Stash::Login'; 1; __END__