File Coverage

blib/lib/Pod/ProjectDocs/Config.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Pod::ProjectDocs::Config;
2              
3 4     4   28 use strict;
  4         9  
  4         145  
4 4     4   23 use warnings;
  4         7  
  4         184  
5              
6             our $VERSION = '0.53'; # VERSION
7              
8 4     4   24 use Moose;
  4         7  
  4         26  
9              
10             has 'title' => (
11             is => 'ro',
12             default => "MyProject's Libraries",
13             isa => 'Str',
14             );
15              
16             has 'desc' => (
17             is => 'ro',
18             default => "manuals and libraries",
19             isa => 'Str',
20             );
21              
22             has 'verbose' => (
23             is => 'ro',
24             isa => 'Bool',
25             );
26              
27             has 'index' => (
28             is => 'ro',
29             isa => 'Bool',
30             );
31              
32             has 'forcegen' => (
33             is => 'ro',
34             isa => 'Bool',
35             );
36              
37             has 'nosourcecode' => (
38             is => 'ro',
39             isa => 'Bool',
40             );
41              
42             has 'outroot' => (
43             is => 'ro',
44             isa => 'Str',
45             );
46              
47             has 'libroot' => (
48             is => 'ro',
49             isa => 'ArrayRef[Str]'
50             );
51              
52             has 'lang' => (
53             is => 'ro',
54             default => 'en',
55             isa => 'Str',
56             );
57              
58             has 'except' => (
59             is => 'ro',
60             isa => 'ArrayRef[Str | RegexpRef]'
61             );
62              
63 4     4   26147 no Moose;
  4         9  
  4         61  
64              
65             1;
66             __END__