File Coverage

blib/lib/Pod/Weaver/PluginBundle/Author/KENTNL/Postlude.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 2 0.0
total 30 32 93.7


line stmt bran cond sub pod time code
1 2     2   796 use 5.006; # our
  2         4  
2 2     2   7 use strict;
  2         2  
  2         36  
3 2     2   6 use warnings;
  2         2  
  2         125  
4              
5             package Pod::Weaver::PluginBundle::Author::KENTNL::Postlude;
6              
7             our $VERSION = '0.001003';
8              
9             # ABSTRACT: End of document stuff
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 2     2   414 use Moo qw( with );
  2         9357  
  2         10  
14              
15             with 'Pod::Weaver::PluginBundle::Author::KENTNL::Role::Easy';
16              
17              
18              
19              
20              
21 6     6 0 19 sub bundle_prefix { return '@A:KNL:Postlude' }
22              
23             sub instance_config {
24 1     1 0 1 my ($self) = @_;
25 1         4 $self->add_named_entry( 'Region.pre_postlude' => 'Region', { region_name => 'pre_postlude', } );
26 1         3 $self->add_entry( 'Leftovers' => {} );
27 1         3 $self->add_entry( 'Authors' => {} );
28 1         2 $self->add_entry( 'Contributors' => {} );
29 1         3 $self->add_entry( 'Legal' => {} );
30 1         3 $self->add_named_entry( 'Region.post_postlude' => 'Region', { region_name => 'post_postlude', } );
31 1         1 return;
32             }
33              
34 2     2   2767 no Moo;
  2         3  
  2         7  
35              
36             1;
37              
38             __END__
39              
40             =pod
41              
42             =encoding UTF-8
43              
44             =head1 NAME
45              
46             Pod::Weaver::PluginBundle::Author::KENTNL::Postlude - End of document stuff
47              
48             =head1 VERSION
49              
50             version 0.001003
51              
52             =head1 SYNOPSIS
53              
54             [@Author::KENTNL::Postlude]
55              
56             Is pretty much
57              
58             [Region / pre_postlude]
59             [Leftovers]
60             [Authors]
61             [Contributors]
62             [Legal]
63             [Region / post_postlude]
64              
65             =for Pod::Coverage bundle_prefix instance_config
66              
67             =head1 AUTHOR
68              
69             Kent Fredric <kentnl@cpan.org>
70              
71             =head1 COPYRIGHT AND LICENSE
72              
73             This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.
74              
75             This is free software; you can redistribute it and/or modify it under
76             the same terms as the Perl 5 programming language system itself.
77              
78             =cut