line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::CPANTS::Kwalitee::Signature; |
2
|
7
|
|
|
7
|
|
3748
|
use strict; |
|
7
|
|
|
|
|
26
|
|
|
7
|
|
|
|
|
224
|
|
3
|
7
|
|
|
7
|
|
40
|
use warnings; |
|
7
|
|
|
|
|
27
|
|
|
7
|
|
|
|
|
867
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = '1.02'; |
6
|
|
|
|
|
|
|
$VERSION =~ s/_//; ## no critic |
7
|
|
|
|
|
|
|
|
8
|
42
|
|
|
42
|
1
|
112
|
sub order { 100 } |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub analyse { |
11
|
12
|
|
|
12
|
1
|
61
|
my ($class, $self) = @_; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
# NOTE: The analysis/metric in this module has moved to |
14
|
|
|
|
|
|
|
# Module::CPANTS::SiteKwalitee because this requires an external |
15
|
|
|
|
|
|
|
# tool (though optional) and decent network connection to |
16
|
|
|
|
|
|
|
# validate a signature. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
# Note also that this stub should not be removed so that |
19
|
|
|
|
|
|
|
# this can replace the old ::Signature module, and the old |
20
|
|
|
|
|
|
|
# metrics will not be loaded while loading plugins. |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub kwalitee_indicators { |
24
|
8
|
|
|
8
|
1
|
39
|
return []; |
25
|
|
|
|
|
|
|
} |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__ |