in reply to Re: Building Good Modules
in thread Building Good Modules

Thank you Alex and 1nickt! You've confirmed what I was hoping was the right way to do it. I'm already part way down the road -- I used the module-starter tool to set up the directory structure (at the moment, for the separate trees, but I'll merge them), and I use github.

If I have multiple .pm files in the bin/ directory, will the normal sequence of perl makefile.PL; make ; etc. catch all the files, or do I need to manually edit the makefile to have it find the multiple .pm files? Thanks again!

Replies are listed 'Best First'.
Re^3: Building Good Modules
by hippo (Archbishop) on Feb 13, 2019 at 09:02 UTC
    If I have multiple .pm files in the bin/ directory

    Don't put .pm files in the bin/ directory - put them in the lib/ directory instead. Then yes, they should be found automatically by the build and test process.

      I'm sorry, I mistyped. My brain knew it was lib/ but my fingers didn't.