Reducing Documentation's Technical Debt
Documentation is a social asset, but it's balanced by a technical debt. Documentation describes code that changes over time. As the code changes, so must the docs.
I want to write good documentation for my Perl distributions, but my standard of "good" documentation requires a lot of effort to write and maintain. I'm working on Pod::Plexus to make it easier. It doesn't replace anything, as far as I know. In fact, I've begun using it with Pod::Weaver in my Reflex distribution.
For example, I tend to write modular, cross-referenced code. Everything but the most superficial interfaces is used somewhere else in the distribution. I'd rather not contrive usage examples, so why not reuse parts of the distribution in the documentation? So Pod::Plexus includes an "=example" directive to insert live code into the documentation.
One of my pet peeves is hierarchical documentation. It's easy to document a subclass by saying "everything else (which I may or may not list here) is documented in this base class". On the down side, that's terrible for first time users. What does the module provide? Which ancestor documents which method? So tonight I added an "=include" directive to insert live documentation from another place.
Here's an example of Pod::Plexus markup. Output follows. It uses "=example" to create a synopsis from the module's live implementation. "=include" imports the description from a nearly identical module. Pod::Plexus includes some templating magic, so [% doc.module %]
expands to the module being documented.
package Reflex::Eg::Inheritance::Plain;
use warnings;
use strict;
use base 'Reflex::Timeout';
sub on_done {
shift()->reset();
print scalar(localtime()), " - Subclass got timeout.\n";
}
1;
__END__
=pod
=abstract Inheriting a Reflex timer with plain Perl.
=head1 SYNOPSIS
=example Reflex::Eg::Inheritance::Plain
Usage:
perl -M[% doc.module %] -e '[% doc.module %]->new(delay => 1)->run_all'
=head1 DESCRIPTION
This module is nearly identical to Reflex::Eg::Inheritance::Moose.
It only differs in the mechanism of subclassing Reflex::Timeout.
=include Reflex::Eg::Inheritance::Moose DESCRIPTION
=cut
Here's the output as promised. You'll notice that "=abstract" becomes a NAME section. Had this not been a test, Pod::Weaver would have added several other boilerplate sections.
package Reflex::Eg::Inheritance::Plain;
use warnings;
use strict;
use base 'Reflex::Timeout';
sub on_done {
shift()->reset();
print scalar(localtime()), " - Subclass got timeout.\n";
}
1;
__END__
=pod
=head1 NAME
Reflex::Eg::Inheritance::Plain - Inheriting a Reflex timer with plain Perl.
=head1 SYNOPSIS
package Reflex::Eg::Inheritance::Plain;
use warnings;
use strict;
use base 'Reflex::Timeout';
sub on_done {
shift()->reset();
print scalar(localtime()), " - Subclass got timeout.\n";
}
1;
Usage:
perl -MReflex::Eg::Inheritance::Plain -e 'Reflex::Eg::Inheritance::Plain->new(delay => 1)->run_all'
=head1 DESCRIPTION
This module is nearly identical to Reflex::Eg::Inheritance::Moose.
It only differs in the mechanism of subclassing Reflex::Timeout.
Reflex::Timeout objects normally go dormant after the first time they
call on_done().
Reflex::Eg::Inheritance::Plain implements a simple periodic timer by subclassing and
overriding Reflex::Timeout's on_done() callback. The act of finishing
the timeout causes itself to be reset.
Since this is an example, the subclass also prints a message so it's
apparent it works.
This is a relatively silly exercise.
Reflex::Interval already implements a periodic interval timer.
=cut
In a future installment, I'll talk briefly about how "=index REGEXP" creates an index of all the distributed modules matching a regular expression.
This looks like a great project and a great use of Pod::Weaver. Please blog more as it progresses.
-- David
I use the following for includes so that my PODs will agree with the spec:
=for include /path/to/file.pod
I love specifications, but "=for include" reads awkwardly. I suppose I'll have to bite the bullet for general acceptance, huh?