line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CPAN::Dashboard::Distribution::Kwalitee; |
2
|
|
|
|
|
|
|
$CPAN::Dashboard::Distribution::Kwalitee::VERSION = '0.02'; |
3
|
1
|
|
|
1
|
|
23
|
use 5.006; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
4
|
1
|
|
|
1
|
|
4
|
use Moo; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
has kwalitee => (is => 'ro'); |
7
|
|
|
|
|
|
|
has core_kwalitee => (is => 'ro'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
CPAN::Dashboard::Distribution::Kwalitee - Package to manage the KWALITEE of distribution for CPAN Dashboard. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
B |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 REPOSITORY |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
L |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 AUTHOR |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Neil Bowers Eneilb@cpan.orgE |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Neil Bowers . |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
32
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|