File Coverage

blib/lib/Software/License/BSD.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 5 5 100.0
total 27 27 100.0


line stmt bran cond sub pod time code
1 11     11   80813 use strict;
  11         36  
  11         304  
2 11     11   56 use warnings;
  11         194  
  11         534  
3             package Software::License::BSD;
4             $Software::License::BSD::VERSION = '0.104004';
5 11     11   676 use parent 'Software::License';
  11         347  
  11         70  
6             # ABSTRACT: The (three-clause) BSD License
7              
8 23     23 1 196 sub name { 'The (three-clause) BSD License' }
9 1     1 1 95 sub url { 'http://opensource.org/licenses/BSD-3-Clause' }
10 43     43 1 135 sub meta_name { 'bsd' }
11 42     42 1 85 sub meta2_name { 'bsd' }
12 43     43 1 109 sub spdx_expression { 'BSD' }
13              
14             1;
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Software::License::BSD - The (three-clause) BSD License
23              
24             =head1 VERSION
25              
26             version 0.104004
27              
28             =head1 PERL VERSION
29              
30             This module is part of CPAN toolchain, or is treated as such. As such, it
31             follows the agreement of the Perl Toolchain Gang to require no newer version
32             of perl than one released in the last ten years. This version may change by
33             agreement of the Toolchain Gang, but for now is governed by the L
34             Consensus|https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md>
35             of 2013 and the Lyon Amendment of 2023 (described at the linked-to document).
36              
37             Although it may work on older versions of perl, no guarantee is made that the
38             minimum required version will not be increased. The version may be increased
39             for any reason, and there is no promise that patches will be accepted to
40             lower the minimum required perl.
41              
42             =head1 AUTHOR
43              
44             Ricardo Signes
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2023 by Ricardo Signes.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut
54              
55             __DATA__