NAME
Parrot::Configure::Options::Conf::Shared - Configuration options shared by both Command-Line and Configuration-File configuration modes
SYNOPSIS
use Parrot::Configure::Options::Conf::Shared qw(
@shared_valid_options
);
our @valid_options = ( 'ask', @shared_valid_options );
DESCRIPTION
This package exports a single variable, @shared_valid_options(), which holds the list of options which may be used either on:
- the Configure.pl command-line (corresponding to use of
mode => configureinParrot::Configure::Options::process_options()); or - inside a configuration file where Configure.pl is called with the
--file=path/to/configfileoption (corresponding to use ofmode => fileinParrot::Configure::Options::process_options()).
AUTHOR
Refactored from earlier code by James E Keenan.
Parrot::Configure::Options. Parrot::Configure::Options::Conf::CLI. Parrot::Configure::Options::Conf::File. Configure.pl.