NAME

Module::InstalledVersion - Find out what version of a module is installed

SYNOPSIS

use Module::InstalledVersion;
my $m = new Module::InstalledVersion 'Foo::Bar';
print "Version is $m->{version}\n";
print "Directory is $m->{dir}\n";
print "Path is $m->{path}\n";

DESCRIPTION

This module finds out what version of another module is installed, without running that module. It uses the same regexp technique used by Extutils::MakeMaker for figuring this out.

Note that it won't work if the module you're looking at doesn't set $VERSION properly. This is true of far too many CPAN modules.

SEE ALSO

App::Mver, App::module::version, Module::Extract::VERSION, Module::Info, Module::InstalledVersion, Module::Metadata, Module::Version, Parse::PMFile.

REPOSITORY

https://github.com/neilbowers/Module-InstalledVersion

COPYRIGHT

Copyright (c) 2001 Kirrily Robert. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Kirrily "Skud" Robert <skud@cpan.org>