summaryrefslogblamecommitdiff
path: root/devel/p5-Config-IniFiles/pkg-descr
blob: 2b247d9e949ab607c0cb243c6ca342e6dfeec085 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                             
IniConf provides a way to have readable configuration files outside your
Perl script.  The configuration can be safely reloaded upon receipt of a
signal.

USAGE 

Get a new IniConf object with the new method: 

	$cfg = IniConf->new( -file => "/path/configfile.ini" );
	$cfg = new IniConf -file => "/path/configfile.ini";

Optional named parameters may be specified after the configuration file
name.  See the new in the METHODS section, below.  INI files consist of a
number of sections, each preceeded with the section name in square brackets. 
Parameters are specified in each section as Name=Value.  Any spaces around
the equals sign will be ignored, and the value extends to the end of the
line