| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package WebService::Strava::Athlete::Gear::Shoe; |
|
2
|
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
38
|
use v5.010; |
|
|
4
|
|
|
|
|
19
|
|
|
|
4
|
|
|
|
|
153
|
|
|
4
|
4
|
|
|
4
|
|
17
|
use strict; |
|
|
4
|
|
|
|
|
5
|
|
|
|
4
|
|
|
|
|
105
|
|
|
5
|
4
|
|
|
4
|
|
13
|
use warnings; |
|
|
4
|
|
|
|
|
7
|
|
|
|
4
|
|
|
|
|
92
|
|
|
6
|
4
|
|
|
4
|
|
15
|
use Moo; |
|
|
4
|
|
|
|
|
4
|
|
|
|
4
|
|
|
|
|
19
|
|
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
extends 'WebService::Strava::Athlete::Gear'; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
# ABSTRACT: An Athlete's Shoe |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '0.05'; # VERSION: Generated by DZP::OurPkg:Version |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__END__ |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=pod |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=encoding UTF-8 |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
WebService::Strava::Athlete::Gear::Shoe - An Athlete's Shoe |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 VERSION |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
version 0.05 |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Provides a shoe object |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Though currently gear items can only be retrieved if Strava |
|
38
|
|
|
|
|
|
|
extend the API to be able to update/change/remove gear, this |
|
39
|
|
|
|
|
|
|
will provide the framework to easily extend the library. |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Shoes are essentially a plain gear object. |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 AUTHOR |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Leon Wright < techman@cpan.org > |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Leon Wright. |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
52
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=cut |