The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

YAML::ConfigFile - easily read configuration files in YAML format

SYNOPSIS

  use YAML::ConfigFile;

  my $c = YAML::ConfigFile->new($filename);

DESCRIPTION

YAML is a format for data serialization which also happens to be useful for configuration files. This module reads in a config file, strips blank lines and comments (lines starting with #), and deserializes the remaining lines, and returns a hashref of the data.

YAML itself has not yet been released on CPAN; you'll have to get a tarball from Ingy or someone.

AUTHOR

Kirrily Robert <skud@cpan.org>

COPYING

YAML::ConfigFile (c) 2001 Kirrily Robert <skud@cpan.org> This software is distributed under the same licenses as Perl itself.

SEE ALSO

YAML