in reply to Proposed module for CPAN for FilePro data file reading
Hi, I read from "Writing Perl modules for CPAN" recently and it was pretty good. Now we have Dist::Zilla which does a lot of the work of writing pod tests, building, uploading to CPAN, prepends use strict;use warnings to your files or some other piece of code(that you can specify0, and a lot more(check plugins for Dist::Zilla on CPAN). You just write in ~/.dzil/config.ini your username and password to your PAUSE account and after that when you run dzil release the module is automatically built and uploaded to your PAUSE account. You can also have the version set in dzil.ini so that it gets into the POD of each of your .pm files, and it builds your Makefile.PL for you.
Use Test::Kwalitee as a separate test for your module. It will make various checks on your module and tell you what you need to add/correct.
For OO use Moose.
|
|---|