File Coverage

blib/lib/Software/License/CC_BY_NC_SA_3_0.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 4 4 100.0
total 24 24 100.0


line stmt bran cond sub pod time code
1 1     1   30072 use strict;
  1         2  
  1         66  
2 1     1   6 use warnings;
  1         4  
  1         50  
3             package Software::License::CC_BY_NC_SA_3_0;
4 1     1   6 use base 'Software::License';
  1         4  
  1         169  
5             # ABSTRACT: Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License (CC BY-NC-SA 3.0)
6              
7 1     1 1 648 sub name { 'Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License (CC BY-NC-SA 3.0)' }
8 1     1 1 110035 sub url { 'http://creativecommons.org/licenses/by-nc-sa/3.0/' }
9              
10 1     1 1 2143 sub version { '3.0' }
11 2     2 1 40246 sub meta_name { 'restricted' }
12              
13             1;
14              
15             =pod
16              
17             =encoding utf-8
18              
19             =head1 NAME
20              
21             Software::License::CC_BY_NC_SA_3_0 - Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License (CC BY-NC-SA 3.0)
22              
23             =head1 AVAILABILITY
24              
25             The project homepage is L.
26              
27             The latest version of this module is available from the Comprehensive Perl
28             Archive Network (CPAN). Visit L to find a CPAN
29             site near you, or see L.
30              
31             =head1 AUTHOR
32              
33             Brendan Byrd
34              
35             =head1 COPYRIGHT AND LICENSE
36              
37             This software is Copyright (c) 2013 by Brendan Byrd.
38              
39             This is free software, licensed under:
40              
41             The GNU Lesser General Public License, Version 3, June 2007
42              
43             =cut
44              
45             __DATA__