| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Stencil::Source::Awncorp; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
39376
|
use 5.014; |
|
|
1
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
6
|
use strict; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
36
|
|
|
6
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
66
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $VERSION = '0.01'; # VERSION |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=encoding utf8 |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Stencil::Source::Awncorp |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=cut |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ABSTRACT |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Personal Perl 5 Stencil Generators |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=cut |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
use Stencil::Source::Awncorp; |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This package provides Personal Perl 5 Stencil Generators. |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 SCENARIOS |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This package supports the following scenarios: |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 classes |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
use Stencil::Source::Awncorp::Class; |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
Stencil::Source::Awncorp::Class->new |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This package supports generating classes. See |
|
53
|
|
|
|
|
|
|
L<Stencil::Source::Awncorp::Class>. |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=cut |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 projects |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
use Stencil::Source::Awncorp::Project; |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
Stencil::Source::Awncorp::Project->new |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This package supports generating projects. See |
|
64
|
|
|
|
|
|
|
L<Stencil::Source::Awncorp::Project>. |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=cut |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 roles |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
use Stencil::Source::Awncorp::Role; |
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Stencil::Source::Awncorp::Role->new |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
This package supports generating roles. See |
|
75
|
|
|
|
|
|
|
L<Stencil::Source::Awncorp::Role>. |
|
76
|
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=cut |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 AUTHOR |
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
Al Newkirk, C<awncorp@cpan.org> |
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 LICENSE |
|
84
|
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Copyright (C) 2011-2019, Al Newkirk, et al. |
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under the terms |
|
88
|
|
|
|
|
|
|
of the The Apache License, Version 2.0, as elucidated in the L<"license |
|
89
|
|
|
|
|
|
|
file"|https://github.com/iamalnewkirk/stencil-source-awncorp/blob/master/LICENSE>. |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head1 PROJECT |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
L<Wiki|https://github.com/iamalnewkirk/stencil-source-awncorp/wiki> |
|
94
|
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
L<Project|https://github.com/iamalnewkirk/stencil-source-awncorp> |
|
96
|
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
L<Initiatives|https://github.com/iamalnewkirk/stencil-source-awncorp/projects> |
|
98
|
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
L<Milestones|https://github.com/iamalnewkirk/stencil-source-awncorp/milestones> |
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
L<Contributing|https://github.com/iamalnewkirk/stencil-source-awncorp/blob/master/CONTRIBUTE.md> |
|
102
|
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
L<Issues|https://github.com/iamalnewkirk/stencil-source-awncorp/issues> |
|
104
|
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=cut |
|
106
|
|
|
|
|
|
|
|