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   98667 use strict;
  11         29  
  11         261  
2 11     11   41 use warnings;
  11         15  
  11         412  
3             $Software::License::BSD::VERSION = '0.104002';
4             use parent 'Software::License';
5 11     11   375 # ABSTRACT: The (three-clause) BSD License
  11         434  
  11         46  
6              
7              
8 23     23 1 148 1;
9 1     1 1 104  
10 43     43 1 111 =pod
11 42     42 1 61  
12 43     43 1 79 =encoding UTF-8
13              
14             =head1 NAME
15              
16             Software::License::BSD - The (three-clause) BSD License
17              
18             =head1 VERSION
19              
20             version 0.104002
21              
22             =head1 PERL VERSION
23              
24             This module is part of CPAN toolchain, or is treated as such. As such, it
25             follows the agreement of the Perl Toolchain Gang to require no newer version of
26             perl than v5.8.1. This version may change by agreement of the Toolchain Gang,
27             but for now is governed by the L<Lancaster
28             Consensus|https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md>
29             of 2013.
30              
31             =head1 AUTHOR
32              
33             Ricardo Signes <rjbs@semiotic.systems>
34              
35             =head1 COPYRIGHT AND LICENSE
36              
37             This software is copyright (c) 2022 by Ricardo Signes.
38              
39             This is free software; you can redistribute it and/or modify it under
40             the same terms as the Perl 5 programming language system itself.
41              
42             =cut
43              
44             __LICENSE__
45             The BSD License
46              
47             Redistribution and use in source and binary forms, with or without
48             modification, are permitted provided that the following conditions are
49             met:
50              
51             * Redistributions of source code must retain the above copyright
52             notice, this list of conditions and the following disclaimer.
53              
54             * Redistributions in binary form must reproduce the above copyright
55             notice, this list of conditions and the following disclaimer in the
56             documentation and/or other materials provided with the distribution.
57              
58             * Neither the name of {{$self->holder}} nor the names of its
59             contributors may be used to endorse or promote products derived from
60             this software without specific prior written permission.
61              
62             THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
63             IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
64             TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
65             PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
66             CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
67             EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
68             PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
69             PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
70             LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
71             NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
72             SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.