The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Module::Find"

Module::Find - Find and use installed modules in a (sub)category River stage three • 79 direct dependents • 463 total dependents

Module::Find lets you find and use modules in categories. This can be very useful for auto-detecting driver or plugin modules. You can differentiate between looking in the category itself or in all subcategories. If you want Module::Find to search in...

CRENZ/Module-Find-0.16 - 01 Aug 2022 15:10:09 UTC

lib/Module/Install/Admin/Find.pm River stage three • 98 direct dependents • 178 total dependents

ETHER/Module-Install-1.21 - 28 Apr 2023 08:32:10 UTC

Module::CPANTS::Kwalitee::FindModules - Find modules provided by a dist River stage three • 16 direct dependents • 221 total dependents

Methods order Defines the order in which Kwalitee tests should be run. Returns 30, as data generated by "MCK::FindModules" is used by other tests. analyse "MCK::FindModules" first looks in "basedir" and lib/ for "*.pm" files. If it doesn't find any, ...

ISHIGAKI/Module-CPANTS-Analyse-1.02 - 10 Sep 2023 03:27:26 UTC

Module::Used - Find modules loaded by Perl code without running it. River stage one • 1 direct dependent • 8 total dependents

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

V - Print version of the specified module(s). River stage two • 7 direct dependents • 10 total dependents

This module uses stolen code from Module::Info to find the location and version of the specified module(s). It prints them and exit()s. It defines "import()" and is based on an idea from Michael Schwern on the perl5-porters list. See the discussion: ...

ABELTJE/V-0.19 - 08 Jan 2024 15:30:19 UTC

Module::Which - find version and path of locally installed modules River stage one • 4 direct dependents • 5 total dependents

"Module::Which" provides the "which()" function, which takes the name of one or more modules, and returns information about those modules if they're intalled locally, including the version and the path. "Module::Which" is the basis of the script "whi...

NEILB/Module-Which-0.05 - 10 Nov 2015 09:09:19 UTC

Module::Finder - find and query modules in @INC and/or elsewhere River stage zero No dependents

EWILHELM/Module-Finder-v0.1.5 - 17 Jul 2007 06:32:06 UTC

Module::Reader - Find and read perl modules like perl does River stage one • 1 direct dependent • 1 total dependent

This module finds modules in @INC using the same algorithm perl does. From that, it will give you the source content of a module, the file name (where available), and how it was found. Searches (and content) are based on the same internal rules that ...

HAARG/Module-Reader-0.003003 - 21 Jun 2017 16:22:51 UTC

Lib::Module - Perl library module utilities. River stage zero No dependents

A Lib::Module object describes a Perl library module and includes the module's package name, file name, version, and superclasses, if any. The module objects are normally part of a class hierarchy generated by libdirs (), module_paths (), and scanlib...

RKIES/Lib-Module-0.7 - 03 Apr 2014 17:00:30 UTC

Module::Path - get the full path to a locally installed module River stage three • 18 direct dependents • 761 total dependents

This module provides a single function, "module_path()", which takes a module name and finds the first directory in your @INC path where the module is installed locally. It returns the full path to that file, resolving any symlinks. It is portable an...

NEILB/Module-Path-0.19 - 16 Mar 2015 21:24:10 UTC

Module::Load - runtime require of both modules and files River stage five • 282 direct dependents • 21538 total dependents

"Module::Load" eliminates the need to know whether you are trying to require either a file or a module. If you consult "perldoc -f require" you will see that "require" will behave differently when given a bareword or a string. In the case of a string...

BINGOS/Module-Load-0.36 - 29 Sep 2020 10:58:42 UTC

Module::Mask - Pretend certain modules are not installed River stage three • 2 direct dependents • 206 total dependents

Sometimes you need to test what happens when a given module is not installed. This module provides a way of temporarily hiding installed modules from perl's require mechanism. The Module::Mask object adds itself to @INC and blocks require calls to re...

MATTLAW/Module-Mask-0.06 - 14 Jan 2013 10:01:57 UTC

Module::Lazy - postpone loading a module until it's actually used River stage zero No dependents

In large projects loading all the dependencies may take a lot of time. This module attempts to reduce the startup time by postponing initialization. The improvement be significant for unit test scripts and small command-line tools which do not utiliz...

KHEDIN/Module-Lazy-0.04 - 05 Mar 2019 17:55:56 UTC

Module::JSAN - Build JavaScript distributions for JSAN River stage zero No dependents

JSAN is the "JavaScript Archive Network," a JavaScript library akin to CPAN. Visit <http://www.openjsan.org/> for details. This module is a developer aid for creating JSAN distributions. This module works as simple wrapper for Module::Build::JSAN::In...

NPLATONOV/Module-JSAN-0.04 - 27 Jan 2010 18:14:00 UTC

Module::ExtractUse - Find out what modules are used River stage one • 5 direct dependents • 6 total dependents

"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::Cloud - Generates a tag cloud for modules used in given code River stage zero No dependents

This class traverses the given directories, searches for perl code, extracts the modules used by this code and generates a HTML::TagCloud object that gives an impression of how often each module is used....

MARCEL/Module-Cloud-1.100861 - 27 Mar 2010 13:27:38 UTC

Module::Info - Information about Perl modules River stage three • 18 direct dependents • 111 total dependents

Module::Info gives you information about Perl modules without actually loading the module. It actually isn't specific to modules and should work on any perl code....

NEILB/Module-Info-0.37 - 01 Nov 2015 15:33:55 UTC

Module::Faker - build fake dists for testing CPAN tools River stage one • 3 direct dependents • 3 total dependents

RJBS/Module-Faker-0.025 - 29 Apr 2023 08:07:10 UTC

Module::Build - Build and install Perl modules River stage five • 4486 direct dependents • 17571 total dependents

"Module::Build" is a system for building, testing, and installing Perl modules. It is meant to be an alternative to "ExtUtils::MakeMaker". Developers may alter the behavior of the module through subclassing. It also does not require a "make" on your ...

LEONT/Module-Build-0.4234 - 28 Apr 2023 08:59:31 UTC

Build::Daily - module to update daily versions for Module::Build and ExtUtils::MakeMaker River stage zero No dependents

Updates $VERSION string based on current date or forced string. This allows to create daily/commit builds. FUNCTIONS...

JKUTEJ/Build-Daily-0.01 - 24 Jul 2009 17:59:21 UTC
155 results (0.041 seconds)