NAME

Module::CheckDeps - Very simple dependencies checker for Perl code

VERSION

version 0.07

SYNOPSIS

Module::CheckDeps parses Perl code, and returns which used modules are not yet installed.

In comparison to similar modules, such as Module::ScanDeps, Module::CheckDeps is much more basic and simpler, but also faster.

use Module::CheckDeps qw(checkdeps);

my $missing = checkdeps( $code );

EXPORT

checkdeps will be exported if explicitly specified.

use Module::CheckDeps qw(checkdeps);

SUBROUTINES

checkdeps( $code )

Return an array reference containing packages that need to be installed

AUTHOR

Alessandro Ghedini <alexbio@cpan.org>

SEE ALSO

Module::ScanDeps

LICENSE AND COPYRIGHT

Copyright 2010 Alessandro Ghedini.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.