File Coverage

blib/lib/CPAN/Local/Plugin/ModList.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package CPAN::Local::Plugin::ModList;
2             {
3             $CPAN::Local::Plugin::ModList::VERSION = '0.010';
4             }
5              
6             # ABSTRACT: Update 03modlist.data
7              
8 1     1   115445 use CPAN::Index::API::File::ModList;
  0            
  0            
9             use Path::Class qw(file dir);
10             use namespace::autoclean;
11             use Moose;
12             extends 'CPAN::Local::Plugin';
13             with qw(CPAN::Local::Role::Initialise);
14              
15             sub initialise
16             {
17             my $self = shift;
18              
19             dir($self->root)->mkpath;
20              
21             my $modlist = CPAN::Index::API::File::ModList->new(
22             repo_path => $self->root,
23             );
24              
25             $modlist->write_to_tarball;
26             }
27              
28             __PACKAGE__->meta->make_immutable;
29              
30             __END__
31             =pod
32              
33             =head1 NAME
34              
35             CPAN::Local::Plugin::ModList - Update 03modlist.data
36              
37             =head1 VERSION
38              
39             version 0.010
40              
41             =head1 AUTHOR
42              
43             Peter Shangov <pshangov@yahoo.com>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2012 by Venda, Inc..
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
53