File Coverage

blib/lib/App/podify.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package App::podify;
2 1     1   12376 use strict;
  1         1  
  1         23  
3 1     1   2 use warnings;
  1         1  
  1         35  
4              
5             our $VERSION = '0.03';
6              
7             1;
8              
9             =encoding utf8
10              
11             =head1 NAME
12              
13             App::podify - Add POD to your modules
14              
15             =head1 VERSION
16              
17             0.03
18              
19             =head1 SYNOPSIS
20              
21             # Print processed module to STDOUT
22             $ podify lib/My/Module.pm
23              
24             # Replace module
25             $ podify -i lib/My/Module.pm
26              
27             # Process all files in the lib/ directory
28             $ podify -i lib/
29              
30             # Process all files in the lib/ directory recursively
31             $ podify -r -i lib/
32              
33             =head1 DESCRIPTION
34              
35             L is an application which can help you document your
36             module.
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             Copyright (C) 2014, Jan Henning Thorsen
41              
42             This program is free software, you can redistribute it and/or modify it under
43             the terms of the Artistic License version 2.0.
44              
45             =head1 AUTHOR
46              
47             Jan Henning Thorsen - C
48              
49             =cut