From 85e48c194f20cd7465ae94ffb938bc4b226e8206 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Mon, 27 Jan 2025 02:10:19 +0200 Subject: [PATCH] --- Cargo.toml | 2 +- README.md | 12 ++++++------ Source/Fn/Binary/Command.rs | 12 ++++++------ Summary.diff | 22 +++++++++++----------- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b1757ff..c282835 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ autobins = false autoexamples = false autotests = false default-run = "Summary" -description = "🗣️ Summary —" +description = "Summary 🗣️" license-file = "LICENSE" name = "psummary" repository = "https://github.com/PlayForm/Summary.git" diff --git a/README.md b/README.md index fb1c8f6..de1afab 100644 --- a/README.md +++ b/README.md @@ -46,16 +46,16 @@ cargo install psummary The Summary tool can be used with various options: ``` -🗣️ Summary — +Summary 🗣️ Usage: Summary [OPTIONS] Options: - -P, --Parallel ⏩ Parallel — - -R, --Root 📂 Root — [default: .] - -E, --Exclude 🚫 Exclude — [default: node_modules] - --Pattern 🔍 Pattern — [default: .git] - -O, --Omit 🚫 Omit — [default: Documentation] + -P, --Parallel Parallel ⏩ + -R, --Root Root 📂 [default: .] + -E, --Exclude Exclude 🚫 [default: node_modules] + --Pattern Pattern 🔍 [default: .git] + -O, --Omit Omit 🚫 [default: Documentation] -h, --help Print help -V, --version Print version ``` diff --git a/Source/Fn/Binary/Command.rs b/Source/Fn/Binary/Command.rs index 2d07212..92dfce2 100644 --- a/Source/Fn/Binary/Command.rs +++ b/Source/Fn/Binary/Command.rs @@ -45,7 +45,7 @@ pub fn Fn() -> ArgMatches { Command::new("Summary") .version(env!("CARGO_PKG_VERSION")) .author("Source 🖋️ Open 👐🏻 ") - .about("🗣️ Summary —") + .about("Summary 🗣️") .arg( Arg::new("Exclude") .short('E') @@ -53,7 +53,7 @@ pub fn Fn() -> ArgMatches { .display_order(4) .value_name("EXCLUDE") .required(false) - .help("🚫 Exclude —") + .help("Exclude 🚫") .default_value("node_modules"), ) .arg( @@ -63,7 +63,7 @@ pub fn Fn() -> ArgMatches { .display_order(6) .value_name("OMIT") .required(false) - .help("🚫 Omit —") + .help("Omit 🚫") .action(clap::ArgAction::Append) .default_values([ "(?i)documentation", @@ -80,7 +80,7 @@ pub fn Fn() -> ArgMatches { .display_order(2) .value_name("PARALLEL") .required(false) - .help("⏩ Parallel —"), + .help("Parallel ⏩"), ) .arg( Arg::new("Pattern") @@ -88,7 +88,7 @@ pub fn Fn() -> ArgMatches { .display_order(5) .value_name("PATTERN") .required(false) - .help("🔍 Pattern —") + .help("Pattern 🔍") .default_value(".git"), ) .arg( @@ -98,7 +98,7 @@ pub fn Fn() -> ArgMatches { .display_order(3) .value_name("ROOT") .required(false) - .help("📂 Root —") + .help("Root 📂") .default_value("."), ) .get_matches() diff --git a/Summary.diff b/Summary.diff index fc4f3bf..cecd2a6 100644 --- a/Summary.diff +++ b/Summary.diff @@ -90,7 +90,7 @@ index c590122..4cfbb9f 100644 + .display_order(4) + .value_name("EXCLUDE") + .required(false) -+ .help("🚫 Exclude —") ++ .help("Exclude 🚫") + .default_value("node_modules"), + ) + .arg( @@ -100,7 +100,7 @@ index c590122..4cfbb9f 100644 + .display_order(6) + .value_name("OMIT") + .required(false) -+ .help("🚫 Omit —") ++ .help("Omit 🚫") + .action(clap::ArgAction::Append) + .default_value("Documentation"), + ) @@ -110,7 +110,7 @@ index c590122..4cfbb9f 100644 + .display_order(5) + .value_name("PATTERN") + .required(false) -+ .help("🔍 Pattern —") ++ .help("Pattern 🔍") + .default_value(".git"), + ) - .arg( @@ -120,7 +120,7 @@ index c590122..4cfbb9f 100644 - .display_order(4) - .value_name("EXCLUDE") - .required(false) -- .help("🚫 Exclude —") +- .help("Exclude 🚫") - .default_value("node_modules"), - ) - .arg( @@ -128,7 +128,7 @@ index c590122..4cfbb9f 100644 - .display_order(5) - .value_name("PATTERN") - .required(false) -- .help("🔍 Pattern —") +- .help("Pattern 🔍") - .default_value(".git"), - ) diff --git a/Source/Fn/Binary/Command/Parallel.rs b/Source/Fn/Binary/Command/Parallel.rs @@ -422,16 +422,16 @@ index 018729b..49bf9ea 100644 + The Summary tool can be used with various options: + + ``` -+ 🗣️ Summary — ++ Summary 🗣️ + + Usage: Summary [OPTIONS] + + Options: -+ -P, --Parallel ⏩ Parallel — -+ -R, --Root 📂 Root — [default: .] -+ -E, --Exclude 🚫 Exclude — [default: node_modules] -+ --Pattern 🔍 Pattern — [default: .git] -+ -O, --Omit 🚫 Omit — [default: Documentation] ++ -P, --Parallel Parallel ⏩ ++ -R, --Root Root 📂 [default: .] ++ -E, --Exclude Exclude 🚫 [default: node_modules] ++ --Pattern Pattern 🔍 [default: .git] ++ -O, --Omit Omit 🚫 [default: Documentation] + -h, --help Print help + -V, --version Print version + ```