How to create Perl module templates for multiple modules in the same namespace?

I use h2xsand Module :: Starter to create templates for my Perl modules. All of these and others, such as Module :: Build, are great for creating one-time modules. Unfortunately, I was not able to figure out a “clean” way to create a family of related modules and their documentation and test case templates in one go.

In particular, is it possible to create A :: P, A :: Q, A :: R ... in one call h2xsor other starting tools, or even add A :: Q, A :: R once the template for A has been created: : P?

+5
source share
1 answer

module-starter , :

module-starter --author='Example Author' --email=author@example.com --module=A::P --module=A::Q --module=A::R --distro='My-A-Module-Distro'
+9

All Articles