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

NAME

Util::Medley - A collection of commonly used utilities.

VERSION

version 0.042

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.

Util::Medley::Cache
Util::Medley::Crypt
Util::Medley::DateTime
Util::Medley::File
Util::Medley::File::Zip
Util::Medley::List
Util::Medley::Logger
Util::Medley::Spawn
Util::Medley::String
Util::Medley::XML