NAME
Pod::Coverage - Checks if the documentation of a module is comprehensive
SYNOPSIS
# in the beginnning...
perl -MPod::Coverage=Pod::Coverage -e666
# all in one invocation
use Pod::Coverage package => 'Fishy';
# straight OO
use Pod::Coverage;
my $pc = Pod::Coverage->new(package => 'Pod::Coverage');
print "We rock!" if $pc->coverage == 1;
DEPENDENCIES
This module has external dependencies on the following modules:
Devel::Symdump 2.01
Pod::Find 0.21
Pod::Parser 1.13
INSTALLATION
perl Build.PL
perl Build test
and if all goes well
perl Build install
HISTORY
What changed over the last 3 revisions
- 0.17 Tuesday 23rd November, 2004
-
Fixed a further case reported by Jos Boumans where =head2 $self->foo(); was intepreted as documentation for a C<foo()> method. (more XS4ALL house style)
- 0.16 Wednesday 20th October, 2004
-
Fixed a MANIFEST bug. Fixed a case reported by Jos Boumans where =head2 $self->foo; was intepreted as documentation for a C<foo;> method. (XS4ALL house style)
- 0.15 Tuesday 19th October, 2004
-
Correctly ignores tie subroutines (David Cantrell)
SEE ALSO
AUTHORS
Richard Clamp <richardc@unixbeard.net>
Michael Stevens <mstevens@etla.org>
some contributions from David Cantrell <david@cantrell.org.uk>
COPYRIGHT
Copyright (c) 2001, 2003, 2004 Richard Clamp, Michael Stevens. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.