Re: Subdirectories and use lib

2011-07-21 Thread Shlomi Fish
Hi Marc, On Thu, 21 Jul 2011 08:40:44 -0700 Marc wrote: > On Jul 21, 2011, at 5:56 AM, Shlomi Fish wrote: > > > You can load modules from lib using "use Module::SubModule;" or "use > > Params::Validate" - no need to load all subdirectories. Just use "::" for > > loading stuff in sub-directorie

Re: Subdirectories and use lib

2011-07-21 Thread Marc
On Jul 21, 2011, at 5:56 AM, Shlomi Fish wrote: > You can load modules from lib using "use Module::SubModule;" or "use > Params::Validate" - no need to load all subdirectories. Just use "::" for > loading stuff in sub-directories. Thanks, Shlomi. That's all it took to get it to sink i

Re: Subdirectories and use lib

2011-07-21 Thread Shlomi Fish
Hi Marc, On Wed, 20 Jul 2011 15:38:06 -0700 Marc wrote: > I'd like to organize a project's files into subdirectories for better > housekeeping. I thought that use lib "."; would also include any > subdirectories, but sadly it doesn't. Is there a way to include all subdirs > without havin