• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

Build.PLH A D20-Feb-2013746

ChangesH A D20-Feb-20131.8 KiB

lib/H05-Apr-20133

LICENSEH A D20-Feb-201318.1 KiB

Makefile.PLH A D20-Feb-2013512

MANIFESTH A D20-Feb-2013260

META.ymlH A D20-Feb-2013906

READMEH A D20-Feb-2013867

t/H11-Apr-201313

README

1Config::Std version 0.007
2
3This module implements yet another damn configuration-file system.
4
5The configuration language is deliberately simple and limited, and the
6module works hard to preserve as much information (section order,
7comments, etc.) as possible when a configuration file is updated.
8
9See Chapter 19 of "Perl Best Practices" (O'Reilly, 2005) for the
10rationale for this approach.
11
12
13INSTALLATION
14
15To install this module, run the following commands:
16
17    perl Makefile.PL
18    make
19    make test
20    make install
21
22
23Alternatively, to install with Module::Build, you can use the following commands:
24
25    perl Build.PL
26    ./Build
27    ./Build test
28    ./Build install
29
30
31
32DEPENDENCIES
33
34None.
35
36
37COPYRIGHT AND LICENCE
38
39Copyright (C) 2005, Damian Conway
40
41This library is free software; you can redistribute it and/or modify
42it under the same terms as Perl itself.
43