I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2007-08-23 07:54:09-07 by clinton
Renaming of Config::Loader

Config::Loader takes a directory tree of configuration files (in XML, YAML, JSON, INI etc) and merges them into a single hash. It's merge policy allows for the overriding of individual keys locally, to allow easy separation of production and development environments. This merge policy can be customised with regexes or callbacks.

I'm currently trying to register the namespace, and the feedback has been that Config::Loader is not descriptive enough of what the module actually does.

brian.d.foy has suggested Config::Any::Merge. My opinion is below. Do you have any suggestions?

thanks

Clint

Pros for "Config::Any::Merge": - the Any implies the multiple formats - the Merge describes what it does, merging trees of config files, plus local overrides - the Config::Any namespace has traction, which might lead people on to my module Cons for "Config::Any::Merge": - it implies an interface relationship with Config::Any which there isn't - it hides the module away under a 3rd level namespace which also makes (eg) Config::Any::Merge::Writer quite a keyboardfull :) Other suggestions: - Config::Merge (the author has offered to vacate the namespace) - Config::Tree (does the Tree imply something else?)
Direct Responses: Write a response