line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::MintingProfile::SYP; |
2
|
|
|
|
|
|
|
# ABSTRACT: SYP's Dist::Zilla minting profile |
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
35289
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
38
|
|
5
|
1
|
|
|
1
|
|
5
|
use utf8; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
80
|
|
6
|
1
|
|
|
1
|
|
27
|
use warnings qw(all); |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
49
|
|
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
753
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
with q(Dist::Zilla::Role::MintingProfile::ShareDir); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $VERSION = '0.009'; # VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
no Moose; |
14
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__END__ |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=pod |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=encoding UTF-8 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Dist::Zilla::MintingProfile::SYP - SYP's Dist::Zilla minting profile |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 VERSION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
version 0.009 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 AUTHOR |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Stanislaw Pusep <stas@sysd.org> |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Stanislaw Pusep. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
41
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |