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

..24-Apr-201479

Build.PLH A D24-Apr-2014746

ChangesH A D24-Apr-20141.9 KiB

lib/H24-Apr-20143

LICENSEH A D24-Apr-201418.1 KiB

Makefile.PLH A D24-Apr-2014512

MANIFESTH A D24-Apr-2014344

META.jsonH A D24-Apr-2014891

META.ymlH A D24-Apr-2014469

READMEH A D24-Apr-2014947

t/H24-Apr-201413

README

1Config::Std version 0.901
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; 
40Copyright (C) 2011,2013 William Ricker + Tom Metro, maintainers for Boston.PM
41
42This library is free software; you can redistribute it and/or modify
43it under the same terms as Perl itself.
44