line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use strict; |
3
|
24
|
|
|
24
|
|
185080
|
use Moo::Role; |
|
24
|
|
|
|
|
49
|
|
|
24
|
|
|
|
|
637
|
|
4
|
24
|
|
|
24
|
|
118
|
|
|
24
|
|
|
|
|
73
|
|
|
24
|
|
|
|
|
165
|
|
5
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
6
|
|
|
|
|
|
|
our $DATE = '2022-06-23'; # DATE |
7
|
|
|
|
|
|
|
our $DIST = 'Org-Parser'; # DIST |
8
|
|
|
|
|
|
|
our $VERSION = '0.558'; # VERSION |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
# ABSTRACT: Role for Org::Element::* classes |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=pod |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=encoding UTF-8 |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Org::ElementRole - Role for Org::Element::* classes |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 VERSION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This document describes version 0.558 of Org::ElementRole (from Perl distribution Org-Parser), released on 2022-06-23. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 HOMEPAGE |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Please visit the project's homepage at L<https://metacpan.org/release/Org-Parser>. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SOURCE |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Source repository is at L<https://github.com/perlancar/perl-Org-Parser>. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 AUTHOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
perlancar <perlancar@cpan.org> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 CONTRIBUTING |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
To contribute, you can send patches by email/via RT, or send pull requests on |
42
|
|
|
|
|
|
|
GitHub. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Most of the time, you don't need to build the distribution yourself. You can |
45
|
|
|
|
|
|
|
simply modify the code, then test via: |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
% prove -l |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
If you want to build the distribution (e.g. to try to install it locally on your |
50
|
|
|
|
|
|
|
system), you can install L<Dist::Zilla>, |
51
|
|
|
|
|
|
|
L<Dist::Zilla::PluginBundle::Author::PERLANCAR>, and sometimes one or two other |
52
|
|
|
|
|
|
|
Dist::Zilla plugin and/or Pod::Weaver::Plugin. Any additional steps required |
53
|
|
|
|
|
|
|
beyond that are considered a bug and can be reported to me. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This software is copyright (c) 2022, 2021, 2020, 2019, 2017, 2016, 2015, 2014, 2013, 2012, 2011 by perlancar <perlancar@cpan.org>. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
60
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 BUGS |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Org-Parser> |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
67
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
68
|
|
|
|
|
|
|
feature. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |