File Coverage

blib/lib/Dist/Zilla/Stash/PAUSE.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Dist::Zilla::Stash::PAUSE 6.037;
2             # ABSTRACT: a stash of your PAUSE credentials
3              
4 3     3   3186 use Moose;
  3         7  
  3         28  
5              
6 3     3   20626 use Dist::Zilla::Pragmas;
  3         6  
  3         25  
7              
8 3     3   20 use namespace::autoclean;
  3         6  
  3         29  
9              
10             #pod =head1 OVERVIEW
11             #pod
12             #pod The PAUSE stash is a L<Login|Dist::Zilla::Role::Stash::Login> stash generally
13             #pod used for uploading to PAUSE.
14             #pod
15             #pod =cut
16              
17             sub mvp_aliases {
18 2     2 0 498 return { user => 'username' };
19             }
20              
21             has username => (
22             is => 'ro',
23             isa => 'Str',
24             required => 1,
25             );
26              
27             has password => (
28             is => 'ro',
29             isa => 'Str',
30             required => 1,
31             );
32              
33             with 'Dist::Zilla::Role::Stash::Login';
34             __PACKAGE__->meta->make_immutable;
35             1;
36              
37             __END__
38              
39             =pod
40              
41             =encoding UTF-8
42              
43             =head1 NAME
44              
45             Dist::Zilla::Stash::PAUSE - a stash of your PAUSE credentials
46              
47             =head1 VERSION
48              
49             version 6.037
50              
51             =head1 OVERVIEW
52              
53             The PAUSE stash is a L<Login|Dist::Zilla::Role::Stash::Login> stash generally
54             used for uploading to PAUSE.
55              
56             =head1 PERL VERSION
57              
58             This module should work on any version of perl still receiving updates from
59             the Perl 5 Porters. This means it should work on any version of perl
60             released in the last two to three years. (That is, if the most recently
61             released version is v5.40, then this module should work on both v5.40 and
62             v5.38.)
63              
64             Although it may work on older versions of perl, no guarantee is made that the
65             minimum required version will not be increased. The version may be increased
66             for any reason, and there is no promise that patches will be accepted to
67             lower the minimum required perl.
68              
69             =head1 AUTHOR
70              
71             Ricardo SIGNES 😏 <cpan@semiotic.systems>
72              
73             =head1 COPYRIGHT AND LICENSE
74              
75             This software is copyright (c) 2026 by Ricardo SIGNES.
76              
77             This is free software; you can redistribute it and/or modify it under
78             the same terms as the Perl 5 programming language system itself.
79              
80             =cut