On Sun Jul 26 07:46:05 2009, DMAKI wrote:
Show quoted text> Ditto in the title.
>
> I just wanted to pass driver_args to Config::Any, but there was no way
> to do so.
I had to read the source to find this out, but you can provide a
subroutine (perhaps an attribute will work too?) called
"config_any_args" which provides the args to pass to Config::Any.
For example, I'm using this:
sub config_any_args {
return {
driver_args => {
General => {
-IncludeGlob => 1,
-IncludeRelative => 1,
-InterPolateVars => 1,
}
}
};
}
Since it's not documented, I'm not sure what the author's intent is,
whether it will continue to be available as such. Above works with
Version 0.04. YMMV.