2017-11-16 23:30:08 -08:00
|
|
|
use common::*;
|
|
|
|
|
2017-11-17 17:28:06 -08:00
|
|
|
pub const DEFAULT_SHELL: &str = "sh";
|
2017-11-16 23:30:08 -08:00
|
|
|
|
|
|
|
pub struct Configuration<'a> {
|
|
|
|
pub dry_run: bool,
|
|
|
|
pub evaluate: bool,
|
|
|
|
pub highlight: bool,
|
|
|
|
pub overrides: Map<&'a str, &'a str>,
|
|
|
|
pub quiet: bool,
|
|
|
|
pub shell: &'a str,
|
|
|
|
pub color: Color,
|
|
|
|
pub verbose: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Default for Configuration<'a> {
|
|
|
|
fn default() -> Configuration<'static> {
|
|
|
|
Configuration {
|
|
|
|
dry_run: false,
|
|
|
|
evaluate: false,
|
|
|
|
highlight: false,
|
|
|
|
overrides: empty(),
|
|
|
|
quiet: false,
|
|
|
|
shell: DEFAULT_SHELL,
|
|
|
|
color: default(),
|
|
|
|
verbose: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|