1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
README for Module::Depends 0.10
=head1 NAME
Module::Depends - identify the dependencies of a distribution
=head1 SYNOPSIS
use YAML;
use Module::Depends;
my $deps = Module::Depends->new->dist_dir( '.' )->find_modules;
print "Our dependencies:\n", Dump $deps->requires;
=head1 DEPENDENCIES
This module has external dependencies on the following modules:
Class::Accessor::Chained
File::Spec
File::chdir
YAML
=head1 INSTALLATION
perl Build.PL
perl Build test
and if all goes well
perl Build install
=head1 HISTORY
What changed over the last 3 revisions
=over
=item 0.10 Thursday 2nd June, 2005
Ship the file for the test suite. Doh.
=item 0.09 Thursday 2nd June, 2005
Dummy out that pesky inc::Module::Install
=item 0.08 Thursday 21st April, 2005
Make use of Cwd::realpath to normalise paths with relative
components in them. (Tom Insam)
=back
=head1 AUTHOR
Richard Clamp, based on code extracted from the Fotango build system
originally by James Duncan and Arthur Bergman.
=head1 COPYRIGHT
Copyright 2004 Fotango. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 SEE ALSO
L<Module::Depends::Intrusive>
|