line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Email::MIME::Kit::Role::ManifestReader 3.000008; |
2
|
|
|
|
|
|
|
# ABSTRACT: things that read kit manifests |
3
|
|
|
|
|
|
|
|
4
|
6
|
|
|
6
|
|
3738
|
use v5.20.0; |
|
6
|
|
|
|
|
23
|
|
5
|
6
|
|
|
6
|
|
2405
|
use Moose::Role; |
|
6
|
|
|
|
|
28628
|
|
|
6
|
|
|
|
|
23
|
|
6
|
|
|
|
|
|
|
with 'Email::MIME::Kit::Role::Component'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
#pod =head1 IMPLEMENTING |
9
|
|
|
|
|
|
|
#pod |
10
|
|
|
|
|
|
|
#pod This role also performs L<Email::MIME::Kit::Role::Component>. |
11
|
|
|
|
|
|
|
#pod |
12
|
|
|
|
|
|
|
#pod Classes implementing this role must provide a C<read_manifest> method, which is |
13
|
|
|
|
|
|
|
#pod expected to locate and read a manifest for the kit. Classes implementing this |
14
|
|
|
|
|
|
|
#pod role should probably include L<Email::MIME::Kit::Role::ManifestDesugarer>, too. |
15
|
|
|
|
|
|
|
#pod |
16
|
|
|
|
|
|
|
#pod =cut |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
requires 'read_manifest'; |
19
|
|
|
|
|
|
|
|
20
|
6
|
|
|
6
|
|
20777
|
no Moose::Role; |
|
6
|
|
|
|
|
19
|
|
|
6
|
|
|
|
|
31
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=pod |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=encoding UTF-8 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Email::MIME::Kit::Role::ManifestReader - things that read kit manifests |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 VERSION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
version 3.000008 |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 PERL VERSION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
This library should run on perls released even a long time ago. It should |
40
|
|
|
|
|
|
|
work on any version of perl released in the last five years. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
43
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
44
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to |
45
|
|
|
|
|
|
|
lower the minimum required perl. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 IMPLEMENTING |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This role also performs L<Email::MIME::Kit::Role::Component>. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Classes implementing this role must provide a C<read_manifest> method, which is |
52
|
|
|
|
|
|
|
expected to locate and read a manifest for the kit. Classes implementing this |
53
|
|
|
|
|
|
|
role should probably include L<Email::MIME::Kit::Role::ManifestDesugarer>, too. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 AUTHOR |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
Ricardo Signes <cpan@semiotic.systems> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
This software is copyright (c) 2023 by Ricardo Signes. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
64
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=cut |