nushell/src/commands/version.rs

45 lines
1.1 KiB
Rust
Raw Normal View History

2019-08-19 03:30:29 +02:00
use crate::commands::WholeStreamCommand;
use crate::data::Dictionary;
2019-09-11 16:36:50 +02:00
use crate::errors::ShellError;
2019-08-19 03:30:29 +02:00
use crate::parser::registry::Signature;
use crate::prelude::*;
use indexmap::IndexMap;
pub struct Version;
impl WholeStreamCommand for Version {
fn name(&self) -> &str {
"version"
}
fn signature(&self) -> Signature {
Signature::build("version")
}
fn usage(&self) -> &str {
"Display Nu version"
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
date(args, registry)
}
2019-08-19 03:30:29 +02:00
}
pub fn date(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
let args = args.evaluate_once(registry)?;
let tag = args.call_info.name_tag.clone();
2019-08-19 03:30:29 +02:00
let mut indexmap = IndexMap::new();
indexmap.insert(
"version".to_string(),
UntaggedValue::string(clap::crate_version!()).into_value(&tag),
2019-08-19 03:30:29 +02:00
);
let value = UntaggedValue::Row(Dictionary::from(indexmap)).into_value(&tag);
2019-08-19 03:30:29 +02:00
Ok(OutputStream::one(value))
}