in reply to Yet Another Config File Parser Module

Just a quick comment (or a shameless plug, depending on how you see it): you might wish to try my Config::FreeForm module, which lets you define arbitrary configuration data structures in memory then write them to disk using Data::Dumper.

You can separate config for different applications etc. into different files, and it manages them for you. You pull in the config sets you want like this:

use Config::FreeForm sets => [ 'Foo', 'Bar' ];
It aliases the keys in the config hash into the Config::FreeForm namespace.

Take a look; you might like it.

Replies are listed 'Best First'.
Re: Re: Yet Another Config File Parser Module
by jynx (Priest) on Dec 05, 2000 at 07:27 UTC
    oops,

    i should have checked CPAN recently before i posted this. Last time i checked CPAN for a module that did this was earlier than when you posted your module (before Nov 11). Rather than rechecking this script was the result. Thank you for the info, i will definitely look into it...

    jynx