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, Value};
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 span = args.call_info.name_span;
let mut indexmap = IndexMap::new();
indexmap.insert(
"version".to_string(),
Tagged::from_simple_spanned_item(Value::string(clap::crate_version!()), span),
2019-08-19 03:30:29 +02:00
);
let value = Tagged::from_simple_spanned_item(Value::Row(Dictionary::from(indexmap)), span);
2019-08-19 03:30:29 +02:00
Ok(OutputStream::one(value))
}