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