kaldor has asked for the wisdom of the Perl Monks concerning the following question:
Hi all,
I'm using Config::Any to read INI files that don't have ".ini" extension. Config::Any::INI requires Config::Tiny, but when Config::Tiny is NOT installed, the following code doesn't crash (as I would expect) :
use Config::Any; my @plugins = ('Config::Any::INI'); my $cfg = Config::Any->load_files( {files => \@filepaths, force_plugin +s => \@plugins} );
What am I missing here?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Config::Any does not complain when Config::Tiny is not installed
by rjt (Curate) on Oct 10, 2019 at 14:14 UTC | |
by kaldor (Beadle) on Oct 10, 2019 at 19:00 UTC |