• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Module/H03-May-2012-281135

t/H03-May-2012-347283

Build.PLH A D03-May-2012380 1816

ChangesH A D03-May-20121.9 KiB6447

MANIFESTH A D03-May-2012513 2726

MANIFEST.SKIPH A D03-May-2012102 1312

META.ymlH A D03-May-2012862 3534

Makefile.PLH A D03-May-2012580 1816

NINJAH A D03-May-2012135 98

READMEH A D03-May-20121.4 KiB7441

README

1README for Module::Depends 0.13
2
3=head1 NAME
4
5Module::Depends - identify the dependencies of a distribution
6
7=head1 SYNOPSIS
8
9 use YAML;
10 use Module::Depends;
11 my $deps = Module::Depends->new->dist_dir( '.' )->find_modules;
12 print "Our dependencies:\n", Dump $deps->requires;
13
14
15=head1 DEPENDENCIES
16
17This module has external dependencies on the following modules:
18
19 Class::Accessor::Chained
20 File::Spec
21 YAML
22
23=head1 INSTALLATION
24
25 perl Build.PL
26 perl Build test
27
28and if all goes well
29
30 perl Build install
31
32=head1 HISTORY
33
34What changed over the last 3 revisions
35
36=over
37
38=item 0.13 Tuesday 26th June, 2007
39
40    File::chdir 0.08 changed its behaviour and is not backwards
41    compatible - avoid using it.
42
43
44=item 0.12 Thursday 1st March, 2007
45
46	Implement a y_n for the Module::Build fakery
47
48
49=item 0.11 Saturday 3rd February, 2007
50
51	Fixed the emulation of Module::Install::require
52	Change the base test case so that it doesn't need a
53        ./Build dist first (for when building out of SVN rather
54       than a released dist)
55
56=back
57
58=head1 AUTHOR
59
60Richard Clamp, based on code extracted from the Fotango build system
61originally by James Duncan and Arthur Bergman.
62
63=head1 COPYRIGHT
64
65Copyright 2004,2007 Fotango.  All Rights Reserved.
66
67This module is free software; you can redistribute it and/or modify it
68under the same terms as Perl itself.
69
70=head1 SEE ALSO
71
72L<Module::Depends::Intrusive>
73
74