File Coverage

blib/lib/Pod/Weaver/PluginBundle/CorePrep.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 1 0.0
total 33 34 97.0


line stmt bran cond sub pod time code
1 9     9   21666 use strict;
  9         23  
  9         426  
2 9     9   50 use warnings;
  9         18  
  9         748  
3             package Pod::Weaver::PluginBundle::CorePrep 4.020;
4             # ABSTRACT: a bundle for the most commonly-needed prep work for a pod document
5              
6             # BEGIN BOILERPLATE
7 9     9   101 use v5.20.0;
  9         33  
8 9     9   46 use warnings;
  9         17  
  9         367  
9 9     9   48 use utf8;
  9         19  
  9         76  
10 9     9   337 no feature 'switch';
  9         17  
  9         1488  
11 9     9   2638 use experimental qw(postderef postderef_qq); # This experiment gets mainlined.
  9         22  
  9         143  
12             # END BOILERPLATE
13              
14 9     9   5790 use Pod::Weaver::Plugin::H1Nester;
  9         108  
  9         1095  
15              
16             sub mvp_bundle_config {
17             return (
18 29     29 0 112512 [ '@CorePrep/EnsurePod5', 'Pod::Weaver::Plugin::EnsurePod5', {} ],
19             # dialects should run here
20             [ '@CorePrep/H1Nester', 'Pod::Weaver::Plugin::H1Nester', {} ],
21             );
22             }
23              
24             1;
25              
26             __END__
27              
28             =pod
29              
30             =encoding UTF-8
31              
32             =head1 NAME
33              
34             Pod::Weaver::PluginBundle::CorePrep - a bundle for the most commonly-needed prep work for a pod document
35              
36             =head1 VERSION
37              
38             version 4.020
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
44             released in the last two to three years. (That is, if the most recently
45             released version is v5.40, then this module should work on both v5.40 and
46             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
51             lower 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) 2024 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