line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ABSTRACT: the reader for dist.ini files |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
use Moose; |
4
|
50
|
|
|
50
|
|
26621
|
use Config::MVP::Reader 2.101540; # if_none |
|
50
|
|
|
|
|
142
|
|
|
50
|
|
|
|
|
536
|
|
5
|
50
|
|
|
50
|
|
400880
|
extends 'Config::MVP::Reader::Finder'; |
|
50
|
|
|
|
|
19087511
|
|
|
50
|
|
|
|
|
2610
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use Dist::Zilla::Pragmas; |
8
|
50
|
|
|
50
|
|
526
|
|
|
50
|
|
|
|
|
161
|
|
|
50
|
|
|
|
|
585
|
|
9
|
|
|
|
|
|
|
use namespace::autoclean; |
10
|
50
|
|
|
50
|
|
426
|
|
|
50
|
|
|
|
|
145
|
|
|
50
|
|
|
|
|
528
|
|
11
|
|
|
|
|
|
|
use Dist::Zilla::MVP::Assembler; |
12
|
50
|
|
|
50
|
|
27397
|
|
|
50
|
|
|
|
|
192
|
|
|
50
|
|
|
|
|
5258
|
|
13
|
|
|
|
|
|
|
return qw(Dist::Zilla::MVP::Reader Config::MVP::Reader); |
14
|
|
|
|
|
|
|
} |
15
|
187
|
|
|
187
|
1
|
4862
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
17
|
|
|
|
|
|
|
1; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=pod |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=encoding UTF-8 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Dist::Zilla::MVP::Reader::Finder - the reader for dist.ini files |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 VERSION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
version 6.028 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 PERL VERSION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This module should work on any version of perl still receiving updates from |
35
|
|
|
|
|
|
|
the Perl 5 Porters. This means it should work on any version of perl released |
36
|
|
|
|
|
|
|
in the last two to three years. (That is, if the most recently released |
37
|
|
|
|
|
|
|
version is v5.40, then this module should work on both v5.40 and v5.38.) |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
40
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
41
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
42
|
|
|
|
|
|
|
the minimum required perl. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 AUTHOR |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Ricardo SIGNES 😏 <cpan@semiotic.systems> |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
53
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |