I'm developing Perl applications at a company. I have a lot of modules. For the web app, I have Model::* and View::* classes which are manipulated from CGI::Application.

For my command-line apps, I have a series of Perl classes representing targets for the command-line apps.

Now for the issue

Both my web and command-line apps are designed to "bootstrap" themselves from a single environmental variable, which points to the root of the source code repository.

What this means is that my apps are easily relocatable to anywhere - you just check them out of the source repository and set the environmental variable and you are ready to go.

On the other hand...

My boss thinks that all modules should be built with something like Module::Starter and be part of a make, make install cycle.

Which process do you prefer?

Personally, the make, make install is just too slow for a rapid edit, run, edit cycle. It would make me 20% slower with no apparent gain.

Also, adding another module would mean editing a MANIFEST file each time.

I simply dont see the Module::Starter paradigm as practical for development of the plethora of modules in a medium-large Perl app... how about you?


In reply to modular app development - where do your modules live? by metaperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.