| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Acme::CPANModules::HashData; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
383039
|
use strict; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
49
|
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
81
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
761
|
use Acme::CPANModulesUtil::Misc; |
|
|
1
|
|
|
|
|
629
|
|
|
|
1
|
|
|
|
|
235
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
|
9
|
|
|
|
|
|
|
our $DATE = '2024-01-22'; # DATE |
|
10
|
|
|
|
|
|
|
our $DIST = 'Acme-CPANModules-HashData'; # DIST |
|
11
|
|
|
|
|
|
|
our $VERSION = '0.001'; # VERSION |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
my $text = <<'MARKDOWN'; |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
is a way to package any hash data as a Perl/CPAN module. It also |
|
16
|
|
|
|
|
|
|
provides a standard interface to access the data, currently read-only. |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
**The data** |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
All Perl modules under `HashData::*` namespace are modules that contain hash |
|
21
|
|
|
|
|
|
|
data. Examples include: `HashData::Sample::DeNiro`, |
|
22
|
|
|
|
|
|
|
`HashData::CPAN::AuthorName::ByPAUSEID`. |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
**CLIs** |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
(from ) is the official CLI for `HashData`. |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
**Sah schemas** |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
**Tie** |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
MARKDOWN |
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
our $LIST = { |
|
43
|
|
|
|
|
|
|
summary => 'List of modules related to HashData', |
|
44
|
|
|
|
|
|
|
description => $text, |
|
45
|
|
|
|
|
|
|
tags => ['task'], |
|
46
|
|
|
|
|
|
|
}; |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Acme::CPANModulesUtil::Misc::populate_entries_from_module_links_in_description; |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
1; |
|
51
|
|
|
|
|
|
|
# ABSTRACT: List of modules related to HashData |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
__END__ |