-
-
17 Dec 2021 01:56:23 UTC
- Distribution: Util-Medley
- Module version: 0.061
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (0)
- Testers (49 / 0 / 5)
- Kwalitee
Bus factor: 1- % Coverage
- License: perl_5
- Perl: v5.16.0
- Activity
24 month- Tools
- Download (50.72KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
++ed by:2 non-PAUSE users- Dependencies
- Alt::Devel::CallParser::ButWorking
- Archive::Zip
- CHI
- CLI::Driver
- Carp
- Crypt::Blowfish
- Crypt::CBC
- Data::Printer
- DateTime::Format::ISO8601
- DateTime::Format::ISO8601::Format
- Exporter::Easy
- Fcntl
- File::Basename
- File::LibMagic
- File::Path
- File::ShareDir
- File::Slurp
- File::Touch
- File::Which
- FileHandle
- Getopt::Long
- Hash::Merge
- IPC::Run3
- Kavorka
- List::Compare
- List::Util
- Modern::Perl
- Module::Load
- Module::Overview
- Moose
- Moose::Role
- Number::Format
- Path::Iterator::Rule
- Scalar::Util
- Scalar::Util::Numeric
- Sort::Naturally
- String::Util
- Text::ASCIITable
- Text::Table
- Time::HiRes
- Time::Local
- Time::ParseDate
- Time::localtime
- Try::Tiny
- YAML
- constant
- diagnostics
- namespace::autoclean
- strict
- vars
- warnings
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Util::Medley - A collection of commonly used utilities.
VERSION
version 0.061
SYNOPSIS
use Util::Medley; my $medley = Util::Medley->new; my $cache = $medley->Cache; my $crypt = $medley->Crypt; my $dt = $medley->DateTime; ... OR you can create the objects directly. Note: this module loads all classes in one shot. use Util::Medley; my $cache = Util::Medley::Cache->new; my $crypt = Util::Medley::Crypt->new; my $dt = Util::Medley::DateTime->new; ...
DESCRIPTION
Let's face it, CPAN is huge and finding the right module to use can waste a lot of time. Once you find what you want, you may even have to refresh your memory on how to use it. That's where Util::Medley comes in. It is a collection of lightweight modules that provide a standard/consistent interface to commonly used modules all under one roof.
Module Install Instructions
To install Util::Medley, copy and paste the appropriate command in to your terminal.
cpanm Util::Medley
perl -MCPAN -e shell install Util::Medley
For more information on module installation, please visit the detailed CPAN module installation guide.