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