Help for this page

Select Code to Download


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