File Coverage

blib/lib/Software/License/MIT.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   7480 use strict;
  10         17  
  10         220  
2 10     10   44 use warnings;
  10         14  
  10         347  
3             $Software::License::MIT::VERSION = '0.104002';
4             use parent 'Software::License';
5 10     10   42 # ABSTRACT: The MIT (aka X11) License
  10         23  
  10         41  
6              
7              
8 23     23 1 158 1;
9 0     0 1 0  
10 43     43 1 112 =pod
11 42     42 1 216  
12 43     43 1 88 =encoding UTF-8
13              
14             =head1 NAME
15              
16             Software::License::MIT - The MIT (aka X11) 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 MIT License
46              
47             Permission is hereby granted, free of charge, to any person
48             obtaining a copy of this software and associated
49             documentation files (the "Software"), to deal in the Software
50             without restriction, including without limitation the rights to
51             use, copy, modify, merge, publish, distribute, sublicense,
52             and/or sell copies of the Software, and to permit persons to
53             whom the Software is furnished to do so, subject to the
54             following conditions:
55              
56             The above copyright notice and this permission notice shall
57             be included in all copies or substantial portions of the
58             Software.
59              
60             THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
61             WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
62             INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
63             MERCHANTABILITY, FITNESS FOR A PARTICULAR
64             PURPOSE AND NONINFRINGEMENT. IN NO EVENT
65             SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
66             LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
67             LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
68             TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
69             CONNECTION WITH THE SOFTWARE OR THE USE OR
70             OTHER DEALINGS IN THE SOFTWARE.