File Coverage

blib/lib/Dist/Zilla/MVP/Reader/Finder.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 23 23 100.0


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