NAME

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

VERSION

version 0.04

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 at cpan.org>

BUGS

Please report any bugs or feature requests to bug-module-checkdeps at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-CheckDeps. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Module::CheckDeps

You can also look for information at:

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.