Dave Rolsky announced that the Moose docs grant is finished. Right away I got a temptation to try to throw Pod::2::DocBook on it. Of course it failed, but finally it was not too much work to fix things and the result is here to see:
moose-docbook-0.77.pdf
moose-docbook-0.77.html
135 pages. To compile them I've create a docbook/ folder with a Makefile and friends and did some minor changes to Moose source. You can find all of those togeter with Moose here. If you want to make a fresh version, clone moose-docbook and then pull the changes from Moose by `git pull git://github.com/nothingmuch/moose.git master`, chdir to docbook/ and run `make`. Note that you'll have to have Pod::2::DocBook 0.03, xsltproc, xmllint, docbook-xsl and fop.
PS anyone heard of oose module?
oose.pm? (Score:1)
Heard of it? I wrote it!
The people in the
#moosechannel were (before the days ofDevel::REPLand still some today) writing lots of one-liners to test assumptions in Moose.perl -e'package Class; use Moose; [assumption test here]'became annoying so I spent an hour one afternoon whipping up oose.pm which will automatically stick thepackage Class; use Moose;at the top of your file using a source filter (one of the few non-evil ways to use a source filter).This little source filter dropped the boilerplate d
Re: (Score:1)