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

Search results for "module:Module::Load"

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::Load::Util - Some utility routines related to module loading River stage three • 26 direct dependents • 435 total dependents

This module provides some utility routines related to module loading. Currently what it offers now are the two functions "load_module_with_optional_args" and "instantiate_class_with_optional_args". These functions are designed for use with command-li...

PERLANCAR/Module-Load-Util-0.011 - 15 Apr 2024 00:06:20 UTC

Module::Load::DiffINC - Load a module and show difference in %INC before vs after River stage one • 1 direct dependent • 1 total dependent

This module will record %INC, load (using "require()") all modules specified in the import argument, then compare %INC with the originally recorded before loading the modules....

PERLANCAR/Module-Load-DiffINC-0.001 - 02 Aug 2017 05:28:47 UTC

Module::Load::In::INIT - Load modules in INIT phase River stage one • 6 direct dependents • 6 total dependents

This module can load (or perhaps defer loading) modules in the INIT phase instead of the BEGIN phase. One use-case where it is useful: monkey-patching a module (using a Module::Patch-based module) in a fatpacked script (see Module::FatPack or App::Fa...

PERLANCAR/Module-Load-In-INIT-0.005 - 18 Feb 2018 11:17:34 UTC

Module::Load::Conditional - Looking up module information / loading at runtime River stage five • 54 direct dependents • 21423 total dependents

Module::Load::Conditional provides simple ways to query and possibly load any of the modules you have installed on your system during runtime. It is able to load multiple modules at once or none at all if one of them was not able to load. It also tak...

BINGOS/Module-Load-Conditional-0.74 - 21 Aug 2020 08:09:10 UTC

lib/Devel/Trepan/CmdProcessor/Command/Load_Subcmd/Module.pm River stage one • 2 direct dependents • 2 total dependents

ROCKY/Devel-Trepan-v1.0.1 - 03 Nov 2019 19:15:25 UTC

Module::LocalLoad - create and use a local lib/ for globally installed modules River stage zero No dependents

You're debugging your code, and it's still failing even though you're doing everything right. You might have misinterpreted the documentation for some module you're using, or perhaps it's not doing what it says it should. Time to take a peek at the i...

WOLDRICH/Module-LocalLoad-0.176 - 18 Feb 2019 10:45:40 UTC

Module::EnforceLoad - Make sure your modules load their deps in preload environments. River stage zero No dependents

Unit tests are good. Unit tests can also be slow. Unit tests run faster if you preload all your modules and then fork for each test. This scenario will fail to catch when you forget to load a dependancy as the preload will satisfy it. This can lead t...

EXODIST/Module-EnforceLoad-0.000002 - 22 Jun 2016 20:53:40 UTC

Module::New::File::LoadTest River stage zero No dependents

a template for a load test (which uses Test::UseAllModules)....

ISHIGAKI/Module-New-0.15 - 19 Apr 2015 15:25:22 UTC

Module::Spec - Load modules based on specifications River stage one • 1 direct dependent • 1 total dependent

This is alpha software. The API is likely to change....

FERREIRA/Module-Spec-0.9.0 - 08 Jul 2018 03:19:31 UTC

Module::Use River stage zero No dependents

Module::Use will record the modules used over the course of the Perl interpreter's lifetime. If the logging module is able, the old logs are read and frequently used modules are automatically loaded. Note that no symbols are imported into packages. U...

JSMITH/Module-Use-0.05 - 09 Oct 2001 19:21:54 UTC

Module::Hash - a tied hash that requires modules for you River stage one • 1 direct dependent • 1 total dependent

Module::Hash provides a tied hash that can be used to load and quote module names. Tied Interface tie my %MOD, "Module::Hash", %options; The hash is tied to Module::Hash. Every time you fetch a hash key, such as $MOD{"Math::BigInt"} that module is lo...

TOBYINK/Module-Hash-0.002 - 10 Sep 2014 22:04:24 UTC

Kelp::Module - Base class for Kelp modules River stage two • 18 direct dependents • 20 total dependents

Provides the base class for creating Kelp modules. Creating a Kelp module means extending this class and overriding the "build" method. Kelp modules usually "register" a new method into the web application. Registering methods Modules use the "regist...

BRTASTIC/Kelp-1.06 - 09 May 2022 21:07:41 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::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

Module::Spec::V2 - Load modules based on V2 specifications River stage one • 1 direct dependent • 1 total dependent

This is alpha software. The API is likely to change. MODULE SPECS As string M M~V minimum match, ≥ V M~0 same as M, accepts any version Example version specs are 2 2.3 2.3.4 v3.2.3 As a hash ref { M => V } minimum match, ≥ V { M => '0' } accepts any ...

FERREIRA/Module-Spec-0.9.0 - 08 Jul 2018 03:19:31 UTC

Module::Spec::V1 - Load modules based on V1 specifications River stage one • 1 direct dependent • 1 total dependent

This is alpha software. The API is likely to change. MODULE SPECS As string M any version As a hash ref { M => V } minimum match, ≥ V { M => '0' } accepts any version As an array ref [ M ] [ M => V ] minimum match, ≥ V [ M => '0' ] same as [ M ], acc...

FERREIRA/Module-Spec-0.9.0 - 08 Jul 2018 03:19:31 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::Util - Module name tools and transformations River stage three • 20 direct dependents • 533 total dependents

This module provides a few useful functions for manipulating module names. Its main aim is to centralise some of the functions commonly used by modules that manipulate other modules in some way, like converting module names to relative paths....

MATTLAW/Module-Util-1.09 - 10 Jan 2013 15:24:51 UTC

Module::List - module `directory' listing River stage three • 34 direct dependents • 559 total dependents

This module deals with the examination of the namespace of Perl modules. The contents of the module namespace is split across several physical directory trees, but this module hides that detail, providing instead a view of the abstract namespace....

ZEFRAM/Module-List-0.004 - 30 Jul 2017 09:03:28 UTC
126 results (0.034 seconds)