Search results for "module:Module::ScanDeps"
Module::ScanDeps - Recursively scan Perl code for dependencies
This module scans potential modules used by perl programs, and returns a hash reference; its keys are the module names as appears in %INC (e.g. "Test/More.pm"); the values are hash references with this structure: { file => '/usr/local/lib/perl5/5.8.0...
RSCHUPP/Module-ScanDeps-1.31 - 21 Apr 2021 14:17:01 UTC
Module::ScanDeps::Static - a cleanup of rpmbuild's perl.req
This module is a mashup (and cleanup) of the `/usr/lib/rpm/perl.req` file found in the rpm build tools library (see "LICENSE") below. Successful identification of the required Perl modules for a module or script is the subject of more than one projec...
BIGFOOT/Module-ScanDeps-Static-1.003 - 09 May 2023 12:17:35 UTC
Module::Used - Find modules loaded by Perl code without running it.
Modules are found statically based upon "use" and "require" statements. If use of the base or parent is found, both that module and the referenced ones will be returned. If Moose or Moose::Role are found, this will look for "extends" and "with" sugar...
ELLIOTJS/Module-Used-v1.3.0 - 28 Aug 2012 02:18:02 UTC
Module::PrintUsed - Prints modules used by your script when your script ends
This module helps you to check which modules (and scripts) were "use"d or "require"d during the runtime of your script. It prints the list of modules to STDERR, including version numbers and paths. Module::PrintUsed contains an "END {}" block that wi...
CRENZ/Module-PrintUsed-0.06 - 09 Mar 2015 21:55:42 UTC
Module::ExtractUse - Find out what modules are used
"Module::ExtractUse" is basically a Parse::RecDescent grammar to parse Perl code. It tries very hard to find all modules (whether pragmas, Core, or from CPAN) used by the parsed code. "Usage" is defined by either calling "use" or "require". Methods n...
DOMM/Module-ExtractUse-0.345 - 16 Jan 2023 16:14:58 UTC
Module::Extract::Use - Discover the modules a module explicitly uses
Extract the names of the modules used in a file using a static analysis. Since this module does not run code, it cannot find dynamic uses of modules, such as "eval "require $class"". It only reports modules that the file loads directly or are in the ...
BDFOY/Module-Extract-Use-1.051 - 09 Jan 2022 18:17:42 UTC