NAME
Module::CoreList - what modules shipped with versions of perl
SYNOPSIS
use Module::CoreList;
print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
print Module::CoreList->first_release('File::Spec'); # prints 5.00503
print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.00601
DESCRIPTION
Module::CoreList contains the hash of hashes %Module::CoreList::version, this is keyed on perl version as indicated in $]. The second level hash is module => version pairs.
Note, it is possible for the version of a module to be unspecified, whereby the value is undef, so use exists $version{$foo}{$bar}
if that's what you're testing for.
CAVEATS
Module::CoreList currently only covers the 5.00503, 5.6.1 and 5.7.3 releases of perl. Probing this information can be rather time consuming so patches are welcomed for earlier versions.
VERSION
Module::CoreList 1.3 was released on 25th March 2002.
AUTHOR
Richard Clamp <richardc@unixbeard.net>
COPYRIGHT
Copyright (C) 2002 Richard Clamp. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.