line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Stash::Rights 6.029; |
2
|
|
|
|
|
|
|
# ABSTRACT: a stash of your default licensing terms |
3
|
|
|
|
|
|
|
|
4
|
2
|
|
|
2
|
|
1892
|
use Moose; |
|
2
|
|
|
|
|
6
|
|
|
2
|
|
|
|
|
15
|
|
5
|
|
|
|
|
|
|
with 'Dist::Zilla::Role::Stash'; |
6
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
13901
|
use Dist::Zilla::Pragmas; |
|
2
|
|
|
|
|
7
|
|
|
2
|
|
|
|
|
17
|
|
8
|
|
|
|
|
|
|
|
9
|
2
|
|
|
2
|
|
15
|
use namespace::autoclean; |
|
2
|
|
|
|
|
14
|
|
|
2
|
|
|
|
|
19
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has license_class => ( |
12
|
|
|
|
|
|
|
is => 'ro', |
13
|
|
|
|
|
|
|
isa => 'Str', |
14
|
|
|
|
|
|
|
required => 1, |
15
|
|
|
|
|
|
|
); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has copyright_holder => ( |
18
|
|
|
|
|
|
|
is => 'ro', |
19
|
|
|
|
|
|
|
isa => 'Str', |
20
|
|
|
|
|
|
|
required => 1, |
21
|
|
|
|
|
|
|
); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
has copyright_year => ( |
24
|
|
|
|
|
|
|
is => 'ro', |
25
|
|
|
|
|
|
|
isa => 'Int', |
26
|
|
|
|
|
|
|
); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__END__ |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=pod |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=encoding UTF-8 |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 NAME |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Dist::Zilla::Stash::Rights - a stash of your default licensing terms |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 VERSION |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
version 6.029 |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 PERL VERSION |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
This module should work on any version of perl still receiving updates from |
48
|
|
|
|
|
|
|
the Perl 5 Porters. This means it should work on any version of perl released |
49
|
|
|
|
|
|
|
in the last two to three years. (That is, if the most recently released |
50
|
|
|
|
|
|
|
version is v5.40, then this module should work on both v5.40 and v5.38.) |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
53
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
54
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
55
|
|
|
|
|
|
|
the minimum required perl. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head1 AUTHOR |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Ricardo SIGNES 😏 <cpan@semiotic.systems> |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
66
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |