File Coverage

blib/lib/CPAN/ReleaseHistory/Release.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package CPAN::ReleaseHistory::Release;
2             $CPAN::ReleaseHistory::Release::VERSION = '0.15';
3 2     2   6 use Moo;
  2         3  
  2         11  
4 2     2   426 use CPAN::DistnameInfo;
  2         3  
  2         230  
5              
6             has 'path' => (is => 'ro');
7             has 'timestamp' => (is => 'ro');
8             has 'size' => (is => 'ro');
9             has 'distinfo' => (is => 'lazy');
10             has 'date' => (is => 'lazy');
11              
12             sub _build_distinfo
13             {
14 9     9   1407 my $self = shift;
15              
16 9         27 return CPAN::DistnameInfo->new($self->path);
17             }
18              
19             sub _build_date
20             {
21 9     9   878 my $self = shift;
22 9         58 my @gmt = gmtime($self->timestamp);
23              
24 9         99 return sprintf('%d-%.2d-%.2d', $gmt[5]+1900, $gmt[4]+1, $gmt[3]);
25             }
26              
27             1;
28              
29             =head1 NAME
30              
31             CPAN::ReleaseHistory::Release - data object with information about one CPAN release
32              
33             =head1 DESCRIPTION
34              
35             B
36              
37             =head1 REPOSITORY
38              
39             L
40              
41             =head1 AUTHOR
42              
43             Neil Bowers Eneilb@cpan.orgE
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2014 by Neil Bowers .
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut