README for Pod::Coverage 0.15
=head1 NAME
Pod::Coverage - Checks if the documentation of a module is comprehensive
=head1 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;
=head1 DEPENDENCIES
This module has external dependencies on the following modules:
Devel::Symdump 2.01
Pod::Find 0.21
Pod::Parser 1.13
=head1 INSTALLATION
perl Build.PL
perl Build test
and if all goes well
perl Build install
=head1 HISTORY
What changed over the last 3 revisions
=over
=item 0.15 Tuesday 19th October, 2004
Correctly ignores tie subroutines (David Cantrell)
=item 0.14 Sunday 9th May, 2004
Small fix from Andy Lester for when people entity escape
the greater than in the method call arrow.
=item 0.13 Monday 29th December, 2003
Fixed a case reported by Earle Martin, where
=head2 C<foo(),bar(),baz()> wasn't working correctly
Pod and Test fixes by Andy Lester
Now we install the pod_cover command line utility.
=back
=head1 SEE ALSO
L<Test::More>, L<Devel::Cover>
=head1 AUTHORS
Richard Clamp <
[email protected]>
Michael Stevens <
[email protected]>
some contributions from David Cantrell <
[email protected]>
=head1 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.