I work on a Perl distribution using a ExtUtils::ModuleMaker basis. I am in the need of creating other modules (.pm
files) in this distribution. I would like to generate them using the same modulemaker
template.
I know that it is possible to achieve with Module::Starter and Module::Starter::Smart plugin by adding a --distro
parameter:
# create a new distribution named 'Foo-Bar'
$ module-starter --module=Foo::Bar
# ... then add a new module
$ module-starter --module=Foo::Bar::Me --distro=Foo-Bar
Is there such a thing for modulemaker
?