Search results for "module:Module::Runtime"
Module::Runtime - runtime module handling
The functions exported by this module deal with runtime handling of Perl modules, which are normally handled at compile time. This module avoids using any other modules, so that it can be used in low-level infrastructure. The parts of this module tha...
ZEFRAM/Module-Runtime-0.016 - 17 Oct 2017 20:29:23 UTC
Module::Runtime::Conflicts - Provide information on conflicts for Module::Runtime
This module provides conflicts checking for Module::Runtime, which had a recent release that broke some versions of Moose. It is called from Moose::Conflicts and "moose-outdated"....
ETHER/Module-Runtime-Conflicts-0.003 - 23 Jun 2016 03:48:42 UTC
Alt::Module::Runtime::ButEUMM - alternative distribution of Module::Runtime, using ExtUtils::MakeMaker
This is an alternative distribution of Module::Runtime, allowing easier deployment on very old versions of Perl. If you have had no problems installing Module::Runtime, then you do not need this module! Version 0.002 of Alt::Module::Runtime::ButEUMM ...
TOBYINK/Alt-Module-Runtime-ButEUMM-0.002 - 19 Jun 2018 20:27:07 UTC
RT-Extension-IncrementPriority-0.01/inc/Module/Install/RTx/Runtime.pm
JRANDALL/RT-Extension-IncrementPriority-1.0.0
-
19 Mar 2015 00:48:18 UTC
Module::Load - runtime require of both modules and files
"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::Path - get the full path to a locally installed module
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::Util - Module name tools and transformations
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::Hash - a tied hash that requires modules for you
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
Module::List - module `directory' listing
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
Module::Notify - trigger a callback when a module is loaded
Module::Notify runs callback code when it detects that a particular module has been loaded. Constructor "new($module_name, $callback)" Runs the callback when the module is loaded. Unlike most OO modules, you can freely use this in void context, and i...
TOBYINK/Module-Notify-0.002 - 10 Sep 2014 22:47:41 UTC
Module::cpmfile - Parse cpmfile
THIS IS EXPERIMENTAL. cpmfile (usually saved as "cpm.yml") is yet another file format for describing module dependencies, and Module::cpmfile helps you parse it. The JSON Schema for cpmfile is available at jsonschema.json <https://github.com/skaji/cp...
SKAJI/Module-cpmfile-0.006 - 20 Feb 2022 06:09:52 UTC
Paranoid::Module - Paranoid Module Loading Routines
This provides a single function that allows you to do dynamic loading of modules at runtime, along with importation of the exported symbol table. Specific functions and/or tag sets can be declared, just as you would in a normal use or import statemen...
CORLISS/Paranoid-2.10 - 09 Mar 2022 07:02:07 UTC
Module::CPANfile - Parse cpanfile
Module::CPANfile is a tool to handle cpanfile format to load application specific dependencies, not just for CPAN distributions....
MIYAGAWA/Module-CPANfile-1.1004 - 26 Apr 2018 09:09:20 UTC
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.33 - 04 Aug 2023 15:50:23 UTC
Module::Features - Define features for modules
This document specifies a very easy and lightweight way to define and declare features for modules. A definer module defines some features in a feature set, other modules declare these features that they have or don't have, and user can easily check ...
PERLANCAR/Module-Features-0.1.7 - 27 Aug 2021 01:40:46 UTC
Module::Spec::V2 - Load modules based on V2 specifications
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
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::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::Pluggable - automatically give your module the ability to have plugins
Provides a simple but, hopefully, extensible way of having 'plugins' for your module. Obviously this isn't going to be the be all and end all of solutions but it works for me. Essentially all it does is export a method into your namespace that looks ...
SIMONW/Module-Pluggable-5.2 - 05 Aug 2015 23:34:16 UTC