Util::Medley - A collection of commonly used utilities.
version 0.061
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; ...
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.
To install Util::Medley, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Util::Medley
CPAN shell
perl -MCPAN -e shell install Util::Medley
For more information on module installation, please visit the detailed CPAN module installation guide.