in reply to Spliting own program distribution intoi several modules.

Maybe take a look at App::FatPacker which allows you to inline all the modules used by myscript.pl into myscript.pl itself. This way myscript.pl always gets the exact versions of its required modules that are inlined within it, even if newer/older versions are available.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'
  • Comment on Re: Spliting own program distribution intoi several modules.

Replies are listed 'Best First'.
Re^2: Spliting own program distribution intoi several modules.
by vsespb (Chaplain) on Dec 27, 2012 at 13:15 UTC
    Yep, that looks like a solution..