David A. Faler wrote:
I was just at YAPC::NA, and the suggestion there was to use Module::Build these
days.
module-starter isn't a EU::MM replacement; it's a tool that produces a
CPAN-ready shell for your module to go into, including a skeletal test
suite. In fact, it will happily use Module
Second use of module-starter (plus Module::Starter::Smart), with Build for the
build process.
Just set up a simple .module-starter/config like so:
plugins: Module::Starter::Simple Module::Starter::Smart
author: Bill Dueber
email: dueb...@umich.edu
builder: Module::Build
verbose: 1
Then:
mod
- "Shawn Boyette" wrote:
> Ed Summers forwarded:
>
> > writing modules intended for distributed on CPAN is still a bit of
> a
> > black art to me.
>
> Tell him to install Module::Starter, and then use module-starter(1).
>
> --
> Shawn Boyette (WFH)
>
I was just at YAPC::NA, and the su