http://qs321.pair.com?node_id=455281


in reply to How do you audit what Perl modules you use?

A little something I stole from the monestary recently. I wish I'd have commented the code with who the user that posted it was.
END { print STDERR "Modules used:\n", map { " $_\n" } values %INC; }

Replies are listed 'Best First'.
Re^2: How do you audit what Perl modules you use?
by DrWhy (Chaplain) on May 09, 2005 at 21:22 UTC
    Of course this will only show you what modules were actually used on a particular run of the program. That's not guaranteed to get you every module that may be used in your code, e.g. if you require a module in some conditional, to name just one possible way to avoid acutally using modules mentioned in your code.

    --DrWhy

    "If God had meant for us to think for ourselves he would have given us brains. Oh, wait..."