File Coverage

blib/lib/Software/License/CC0_1_0.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 7 8 87.5
pod 5 5 100.0
total 25 27 92.5


line stmt bran cond sub pod time code
1 10     10   5773 use strict;
  10         22  
  10         282  
2 10     10   52 use warnings;
  10         24  
  10         550  
3             package Software::License::CC0_1_0;
4             $Software::License::CC0_1_0::VERSION = '0.104004';
5 10     10   60 use parent 'Software::License';
  10         33  
  10         54  
6             # ABSTRACT: the "public domain"-like CC0 license, version 1.0
7              
8             #pod =head1 WARNING
9             #pod
10             #pod B
11             #pod
12             #pod This license is provided for those who want to place their software into the
13             #pod public domain. Doing this means you have waived any copyright protection as
14             #pod much as allowed by law, and that you grant anybody the right to do anything
15             #pod with your software. You cannot reverse your decision to dedicate software as
16             #pod public property, so use this only if you're quite sure that you mean to do
17             #pod it.
18             #pod
19             #pod =cut
20              
21 21     21 1 47 sub name { q(CC0 License) }
22 0     0 1 0 sub url { q{http://creativecommons.org/publicdomain/zero/1.0/} }
23              
24 43     43 1 131 sub meta_name { 'unrestricted' }
25 42     42 1 107 sub meta2_name { 'unrestricted' }
26 43     43 1 123 sub spdx_expression { 'CC0-1.0' }
27              
28             1;
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             Software::License::CC0_1_0 - the "public domain"-like CC0 license, version 1.0
37              
38             =head1 VERSION
39              
40             version 0.104004
41              
42             =head1 PERL VERSION
43              
44             This module is part of CPAN toolchain, or is treated as such. As such, it
45             follows the agreement of the Perl Toolchain Gang to require no newer version
46             of perl than one released in the last ten years. This version may change by
47             agreement of the Toolchain Gang, but for now is governed by the L
48             Consensus|https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md>
49             of 2013 and the Lyon Amendment of 2023 (described at the linked-to document).
50              
51             Although it may work on older versions of perl, no guarantee is made that the
52             minimum required version will not be increased. The version may be increased
53             for any reason, and there is no promise that patches will be accepted to
54             lower the minimum required perl.
55              
56             =head1 WARNING
57              
58             B
59              
60             This license is provided for those who want to place their software into the
61             public domain. Doing this means you have waived any copyright protection as
62             much as allowed by law, and that you grant anybody the right to do anything
63             with your software. You cannot reverse your decision to dedicate software as
64             public property, so use this only if you're quite sure that you mean to do
65             it.
66              
67             =head1 AUTHOR
68              
69             Ricardo Signes
70              
71             =head1 COPYRIGHT AND LICENSE
72              
73             This software is copyright (c) 2023 by Ricardo Signes.
74              
75             This is free software; you can redistribute it and/or modify it under
76             the same terms as the Perl 5 programming language system itself.
77              
78             =cut
79              
80             __DATA__