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