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