File Coverage

blib/lib/HashData/ColorCode/CMYK/Pantone.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package HashData::ColorCode::CMYK::Pantone;
2              
3 1     1   298347 use strict;
  1         3  
  1         43  
4 1     1   457 use Role::Tiny::With;
  1         6875  
  1         106  
5             with 'HashDataRole::Source::LinesInDATA';
6             #with 'Role::TinyCommons::Collection::FindItem::Iterator'; # add find_item() (has_item already added above)
7             #with 'Role::TinyCommons::Collection::PickItems::RandomSeekLines'; # add pick_items() that uses binary search
8              
9             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
10             our $DATE = '2024-05-10'; # DATE
11             our $DIST = 'HashData-ColorCode-CMYK-Pantone'; # DIST
12             our $VERSION = '0.002'; # VERSION
13              
14             # STATS
15              
16             1;
17             # ABSTRACT: Mapping of Pantone color names to CMYK values
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             HashData::ColorCode::CMYK::Pantone - Mapping of Pantone color names to CMYK values
26              
27             =head1 VERSION
28              
29             This document describes version 0.002 of HashData::ColorCode::CMYK::Pantone (from Perl distribution HashData-ColorCode-CMYK-Pantone), released on 2024-05-10.
30              
31             =head1 DESCRIPTION
32              
33             CMKY value are in this format: I,I,I,I. Where each C/M/Y/K value is
34             an integer from 0 to 100.
35              
36             =head1 HOMEPAGE
37              
38             Please visit the project's homepage at L.
39              
40             =head1 SOURCE
41              
42             Source repository is at L.
43              
44             =head1 SEE ALSO
45              
46             Source: L
47              
48             L, L
49              
50             =head1 AUTHOR
51              
52             perlancar
53              
54             =head1 CONTRIBUTING
55              
56              
57             To contribute, you can send patches by email/via RT, or send pull requests on
58             GitHub.
59              
60             Most of the time, you don't need to build the distribution yourself. You can
61             simply modify the code, then test via:
62              
63             % prove -l
64              
65             If you want to build the distribution (e.g. to try to install it locally on your
66             system), you can install L,
67             L,
68             L, and sometimes one or two other
69             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
70             that are considered a bug and can be reported to me.
71              
72             =head1 COPYRIGHT AND LICENSE
73              
74             This software is copyright (c) 2024 by perlancar .
75              
76             This is free software; you can redistribute it and/or modify it under
77             the same terms as the Perl 5 programming language system itself.
78              
79             =head1 BUGS
80              
81             Please report any bugs or feature requests on the bugtracker website L
82              
83             When submitting a bug or request, please include a test-file or a
84             patch to an existing test-file that illustrates the bug or desired
85             feature.
86              
87             =cut
88              
89             __DATA__