line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package TableData::Sample::DeNiro; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
991
|
use 5.010001; |
|
2
|
|
|
|
|
7
|
|
4
|
2
|
|
|
2
|
|
8
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
34
|
|
5
|
2
|
|
|
2
|
|
7
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
48
|
|
6
|
|
|
|
|
|
|
|
7
|
2
|
|
|
2
|
|
8
|
use Role::Tiny::With; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
175
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
10
|
|
|
|
|
|
|
our $DATE = '2022-02-20'; # DATE |
11
|
|
|
|
|
|
|
our $DIST = 'TableDataRoles-Standard'; # DIST |
12
|
|
|
|
|
|
|
our $VERSION = '0.014'; # VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
with 'TableDataRole::Source::CSVInDATA'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
# ABSTRACT: Rotten Tomato ratings of movies with Robert De Niro |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=pod |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=encoding UTF-8 |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
TableData::Sample::DeNiro - Rotten Tomato ratings of movies with Robert De Niro |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 VERSION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
This document describes version 0.014 of TableData::Sample::DeNiro (from Perl distribution TableDataRoles-Standard), released on 2022-02-20. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 HOMEPAGE |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Please visit the project's homepage at L. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 SOURCE |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Source repository is at L. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 AUTHOR |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
perlancar |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 CONTRIBUTING |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
To contribute, you can send patches by email/via RT, or send pull requests on |
47
|
|
|
|
|
|
|
GitHub. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Most of the time, you don't need to build the distribution yourself. You can |
50
|
|
|
|
|
|
|
simply modify the code, then test via: |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
% prove -l |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
If you want to build the distribution (e.g. to try to install it locally on your |
55
|
|
|
|
|
|
|
system), you can install L, |
56
|
|
|
|
|
|
|
L, and sometimes one or two other |
57
|
|
|
|
|
|
|
Dist::Zilla plugin and/or Pod::Weaver::Plugin. Any additional steps required |
58
|
|
|
|
|
|
|
beyond that are considered a bug and can be reported to me. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
This software is copyright (c) 2022, 2021 by perlancar . |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
65
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head1 BUGS |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
Please report any bugs or feature requests on the bugtracker website L |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
When submitting a bug or request, please include a test-file or a |
72
|
|
|
|
|
|
|
patch to an existing test-file that illustrates the bug or desired |
73
|
|
|
|
|
|
|
feature. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=cut |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
__DATA__ |