- or download this
Cannot load test.ini: required support modules are not available.
Please install Config::Tiny at config_any.pl line 11.
- or download this
# figure out what plugins we're using
my @plugins = $force
? map { eval "require $_;"; $_; } @{ $args->{ force_plugins }
+}
: $class->plugins;
- or download this
my @missing = grep { !eval "require $_" } @plugins;
die "Missing plugin(s): @missing" if @missing;