line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
2
|
|
|
2
|
|
21
|
use 5.14.0; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
68
|
|
2
|
2
|
|
|
2
|
|
6
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
51
|
|
3
|
2
|
|
|
2
|
|
6
|
use warnings; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
107
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Opendata::GTFS::Standard { |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.0104'; # VERSION |
8
|
|
|
|
|
|
|
|
9
|
2
|
|
|
2
|
|
8
|
use base 'Moops'; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
1018
|
|
10
|
2
|
|
|
2
|
|
103763
|
use List::AllUtils(); |
|
2
|
|
|
|
|
18373
|
|
|
2
|
|
|
|
|
49
|
|
11
|
2
|
|
|
2
|
|
962
|
use MooseX::StrictConstructor(); |
|
2
|
|
|
|
|
766548
|
|
|
2
|
|
|
|
|
59
|
|
12
|
2
|
|
|
2
|
|
757
|
use Types::Opendata::GTFS(); |
|
2
|
|
|
|
|
70
|
|
|
2
|
|
|
|
|
72
|
|
13
|
2
|
|
|
2
|
|
1167
|
use Safe::Isa; |
|
2
|
|
|
|
|
865
|
|
|
2
|
|
|
|
|
422
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub import { |
16
|
26
|
|
|
26
|
|
60
|
my $class = shift; |
17
|
26
|
|
|
|
|
65
|
my %opts = @_; |
18
|
|
|
|
|
|
|
|
19
|
26
|
|
50
|
|
|
39
|
push @{ $opts{'imports'} ||= [] } => ( |
|
26
|
|
|
|
|
444
|
|
20
|
|
|
|
|
|
|
'List::AllUtils' => [qw/any none sum uniq zip first_index/], |
21
|
|
|
|
|
|
|
'Types::Opendata::GTFS' => [{ replace => 1 }, '-types'], |
22
|
|
|
|
|
|
|
'MooseX::StrictConstructor' => [], |
23
|
|
|
|
|
|
|
'Safe::Isa' => ['$_does'], |
24
|
|
|
|
|
|
|
); |
25
|
|
|
|
|
|
|
|
26
|
26
|
|
|
|
|
175
|
$class->SUPER::import(%opts); |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
} |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
__END__ |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=pod |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=encoding UTF-8 |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 NAME |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Opendata::GTFS::Standard |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 VERSION |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Version 0.0104, released 2015-02-22. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 SOURCE |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
L<https://github.com/Csson/p5-Opendata-GTFS-Feed> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 HOMEPAGE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
L<https://metacpan.org/release/Opendata-GTFS-Feed> |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 AUTHOR |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Erik Carlsson <info@code301.com> |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This software is copyright (c) 2015 by Erik Carlsson <info@code301.com>. |
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
|
|
|
|
|
|
|
=cut |