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

..03-May-2022-

eg/H02-Feb-2008-21

lib/H02-Feb-2008-29585

t/H02-Feb-2008-228158

Build.PLH A D02-Feb-2008471 1916

ChangesH A D02-Feb-2008744 2115

MANIFESTH A D02-Feb-2008366 2322

META.ymlH A D02-Feb-2008472 2221

Makefile.PLH A D02-Feb-2008601 2116

READMEH A D02-Feb-20081.5 KiB6439

README

1NAME
2
3    relative - Load modules with relative names
4
5
6DESCRIPTION
7
8    This module allows you to load modules using only parts of their name,
9    relatively to the current module or to a given module. Module names are
10    by default searched below the current module, but can be searched upper
11    in the hierarchy using the "..::" syntax.
12
13    In order to further loosen the namespace coupling, "import" returns the
14    full names of the loaded modules, making object-oriented code easier to
15    write.
16
17
18INSTALLATION
19
20    To install this module, run the following commands:
21
22        perl Makefile.PL
23        make
24        make test
25        make install
26
27    Alternatively, to install with Module::Build, you can use the
28    following commands:
29
30        perl Build.PL
31        ./Build
32        ./Build test
33        ./Build install
34
35
36SUPPORT AND DOCUMENTATION
37
38    After installing, you can find documentation for this module with
39    the perldoc command.
40
41        perldoc relative
42
43    You can also look for information at:
44
45        Search CPAN
46            http://search.cpan.org/dist/relative
47
48        CPAN Request Tracker:
49            http://rt.cpan.org/NoAuth/Bugs.html?Dist=relative
50
51        AnnoCPAN, annotated CPAN documentation:
52            http://annocpan.org/dist/relative
53
54        CPAN Ratings:
55            http://cpanratings.perl.org/d/relative
56
57
58COPYRIGHT AND LICENCE
59
60    Copyright (C) 2007 S�bastien Aperghis-Tramoni
61
62    This program is free software; you can redistribute it and/or modify
63    it under the same terms as Perl itself.
64