mirror of
https://github.com/nushell/nushell.git
synced 2024-12-14 19:23:11 +01:00
64 lines
1.4 KiB
Rust
64 lines
1.4 KiB
Rust
use crate::commands::WholeStreamCommand;
|
|
use crate::prelude::*;
|
|
use indexmap::IndexMap;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{Dictionary, Signature, UntaggedValue};
|
|
|
|
pub struct Version;
|
|
|
|
#[async_trait]
|
|
impl WholeStreamCommand for Version {
|
|
fn name(&self) -> &str {
|
|
"version"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("version")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Display Nu version"
|
|
}
|
|
|
|
async fn run(
|
|
&self,
|
|
args: CommandArgs,
|
|
registry: &CommandRegistry,
|
|
) -> Result<OutputStream, ShellError> {
|
|
version(args, registry)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Display Nu version",
|
|
example: "version",
|
|
result: None,
|
|
}]
|
|
}
|
|
}
|
|
|
|
pub fn version(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
|
|
let tag = args.call_info.args.span;
|
|
|
|
let mut indexmap = IndexMap::new();
|
|
indexmap.insert(
|
|
"version".to_string(),
|
|
UntaggedValue::string(clap::crate_version!()).into_value(&tag),
|
|
);
|
|
|
|
let value = UntaggedValue::Row(Dictionary::from(indexmap)).into_value(&tag);
|
|
Ok(OutputStream::one(value))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Version;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(Version {})
|
|
}
|
|
}
|