File Coverage

blib/lib/Module/Install/DOAP.pm
Criterion Covered Total %
statement 9 11 81.8
branch 0 2 0.0
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 18 66.6


line stmt bran cond sub pod time code
1             package Module::Install::DOAP;
2              
3 1     1   29054 use 5.008;
  1         3  
  1         43  
4 1     1   6 use base qw(Module::Install::Base);
  1         2  
  1         4419  
5 1     1   6 use strict;
  1         2  
  1         99  
6              
7             our $VERSION = '0.006';
8             our $AUTHOR_ONLY = 1;
9              
10             sub doap_metadata
11             {
12 0     0 0   my $self = shift;
13 0 0         $self->admin->doap_metadata(@_) if $self->is_admin;
14             }
15              
16             1;
17              
18             __END__
19             =head1 NAME
20              
21             Module::Install::DOAP - generate META.yml data from DOAP
22              
23             =head1 SYNOPSIS
24              
25             In Makefile.PL:
26              
27             rdf_metadata;
28             doap_metadata;
29            
30             =head1 DESCRIPTION
31              
32             This Module::Install plugin generates your META.yml file from RDF data
33             (especially DOAP) in your distribution's 'meta' directory.
34              
35             =head1 BUGS
36              
37             Please report any bugs to L<http://rt.cpan.org/>.
38              
39             =head1 SEE ALSO
40              
41             L<Module::Install>, L<Module::Install::DOAPChangeSets> .
42              
43             L<http://www.perlrdf.org/>.
44              
45             =head1 AUTHOR
46              
47             Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
48              
49             =head1 COPYRIGHT AND LICENSE
50              
51             Copyright (C) 2011 by Toby Inkster
52              
53             This library is free software; you can redistribute it and/or modify it
54             under the same terms as Perl itself.
55              
56             =cut