File Coverage

blib/lib/WebService/Strava/Athlete/Gear/Bike.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package WebService::Strava::Athlete::Gear::Bike;
2              
3 4     4   37 use v5.010;
  4         11  
  4         142  
4 4     4   843 use strict;
  4         7  
  4         102  
5 4     4   17 use warnings;
  4         3  
  4         97  
6 4     4   16 use Moo;
  4         4  
  4         20  
7              
8             extends 'WebService::Strava::Athlete::Gear';
9              
10             # ABSTRACT: An Athlete's Bike
11              
12             our $VERSION = '0.05'; # VERSION: Generated by DZP::OurPkg:Version
13              
14              
15             has 'frame_type' => ( is => 'ro' );
16              
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             WebService::Strava::Athlete::Gear::Bike - An Athlete's Bike
28              
29             =head1 VERSION
30              
31             version 0.05
32              
33             =head1 SYNOPSIS
34              
35             Provides a Bike object
36              
37             =head1 DESCRIPTION
38              
39             Though currently gear items can only be retrieved if Strava
40             extend the API to be able to update/change/remove gear, this
41             will provide the framework to easily extend the library.
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