File Coverage

blib/lib/Pod/Weaver/PluginBundle/Author/KENTNL/Core.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 2 0.0
total 26 28 92.8


line stmt bran cond sub pod time code
1 2     2   1122 use 5.006; # our
  2         5  
2 2     2   8 use strict;
  2         2  
  2         40  
3 2     2   8 use warnings;
  2         2  
  2         141  
4              
5             package Pod::Weaver::PluginBundle::Author::KENTNL::Core;
6              
7             our $VERSION = '0.001003';
8              
9             # ABSTRACT: Core configuration for Pod::Weaver
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 2     2   825 use Moo qw( with );
  2         16981  
  2         11  
14             with 'Pod::Weaver::PluginBundle::Author::KENTNL::Role::Easy';
15              
16              
17              
18              
19              
20 6     6 0 20 sub bundle_prefix { return '@A:KNL:Core' }
21              
22             sub instance_config {
23 2     2 0 2 my ($self) = @_;
24 2         29 $self->inhale_bundle('@CorePrep');
25 2         7 $self->add_entry('-SingleEncoding');
26 2         3 return;
27             }
28              
29 2     2   2113 no Moo;
  2         3  
  2         6  
30              
31             1;
32              
33             __END__
34              
35             =pod
36              
37             =encoding UTF-8
38              
39             =head1 NAME
40              
41             Pod::Weaver::PluginBundle::Author::KENTNL::Core - Core configuration for Pod::Weaver
42              
43             =head1 VERSION
44              
45             version 0.001003
46              
47             =head1 SYNOPSIS
48              
49             [@Author::KENTNL::Core]
50              
51             This is presently basically the same as
52              
53             [@CorePrep]
54             [-SingleEncoding]
55              
56             =for Pod::Coverage bundle_prefix instance_config
57              
58             =head1 AUTHOR
59              
60             Kent Fredric <kentnl@cpan.org>
61              
62             =head1 COPYRIGHT AND LICENSE
63              
64             This software is copyright (c) 2017 by Kent Fredric <kentfredric@gmail.com>.
65              
66             This is free software; you can redistribute it and/or modify it under
67             the same terms as the Perl 5 programming language system itself.
68              
69             =cut