NAME
CPAN::FindDependencies::Dependency - object representing a module dependency
SYNOPSIS
my @dependencies = CPAN::FindDependencies::finddeps("CPAN");
foreach my $dep (@dependencies) {
print ' ' x $dep->depth();
print $dep->name().' ('.$dep->distribution().")\n";
}
METHODS
The following read-only accessors are available. You will note that there is no public constructor and no mutators. Objects will be created by the CPAN::FindDependencies module.
name
The name of the module
distribution
The name of the distribution containing the module
depth
How deeply nested this module is in the dependency tree
incore
Whether a sufficiently high version of this module can be found in the perl core that the user specified.
warning
If any warnings were generated while processing the module (even if suppressed), this will return them.
BUGS/LIMITATIONS
None known
FEEDBACK
I welcome feedback about my code, including constructive criticism and bug reports. The best bug reports include files that I can add to the test suite, which fail with the current code in CVS and will pass once I've fixed the bug
CVS
http://drhyde.cvs.sourceforge.net/drhyde/perlmodules/CPAN-FindDependencies/
SEE ALSO
http://cpandeps.cantrell.org.uk/
AUTHOR, LICENCE and COPYRIGHT
Copyright 2007 David Cantrell <david@cantrell.org.uk>
This module is free-as-in-speech software, and may be used, distributed, and modified under the same terms as Perl itself.
CONSPIRACY
This module is also free-as-in-mason software.