Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jan 27, 2025
1 parent a51d0f8 commit 85e48c1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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> 📂 Root  [default: .]
-E, --Exclude <EXCLUDE> 🚫 Exclude  [default: node_modules]
--Pattern <PATTERN> 🔍 Pattern  [default: .git]
-O, --Omit <OMIT> 🚫 Omit  [default: Documentation]
-P, --Parallel Parallel 
-R, --Root <ROOT> Root 📂 [default: .]
-E, --Exclude <EXCLUDE> Exclude 🚫 [default: node_modules]
--Pattern <PATTERN> Pattern 🔍 [default: .git]
-O, --Omit <OMIT> Omit 🚫 [default: Documentation]
-h, --help Print help
-V, --version Print version
```
Expand Down
12 changes: 6 additions & 6 deletions Source/Fn/Binary/Command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ pub fn Fn() -> ArgMatches {
Command::new("Summary")
.version(env!("CARGO_PKG_VERSION"))
.author("Source 🖋️ Open 👐🏻 <Source/[email protected]>")
.about("🗣️ Summary ")
.about("Summary 🗣️")
.arg(
Arg::new("Exclude")
.short('E')
.long("Exclude")
.display_order(4)
.value_name("EXCLUDE")
.required(false)
.help("🚫 Exclude ")
.help("Exclude 🚫")
.default_value("node_modules"),
)
.arg(
Expand All @@ -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",
Expand All @@ -80,15 +80,15 @@ pub fn Fn() -> ArgMatches {
.display_order(2)
.value_name("PARALLEL")
.required(false)
.help("⏩ Parallel "),
.help("Parallel "),
)
.arg(
Arg::new("Pattern")
.long("Pattern")
.display_order(5)
.value_name("PATTERN")
.required(false)
.help("🔍 Pattern ")
.help("Pattern 🔍")
.default_value(".git"),
)
.arg(
Expand All @@ -98,7 +98,7 @@ pub fn Fn() -> ArgMatches {
.display_order(3)
.value_name("ROOT")
.required(false)
.help("📂 Root ")
.help("Root 📂")
.default_value("."),
)
.get_matches()
Expand Down
22 changes: 11 additions & 11 deletions Summary.diff
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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"),
+ )
Expand All @@ -110,7 +110,7 @@ index c590122..4cfbb9f 100644
+ .display_order(5)
+ .value_name("PATTERN")
+ .required(false)
+ .help("🔍 Pattern ")
+ .help("Pattern 🔍")
+ .default_value(".git"),
+ )
- .arg(
Expand All @@ -120,15 +120,15 @@ index c590122..4cfbb9f 100644
- .display_order(4)
- .value_name("EXCLUDE")
- .required(false)
- .help("🚫 Exclude ")
- .help("Exclude 🚫")
- .default_value("node_modules"),
- )
- .arg(
- Arg::new("Pattern")
- .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
Expand Down Expand Up @@ -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> 📂 Root  [default: .]
+ -E, --Exclude <EXCLUDE> 🚫 Exclude  [default: node_modules]
+ --Pattern <PATTERN> 🔍 Pattern  [default: .git]
+ -O, --Omit <OMIT> 🚫 Omit  [default: Documentation]
+ -P, --Parallel Parallel 
+ -R, --Root <ROOT> Root 📂 [default: .]
+ -E, --Exclude <EXCLUDE> Exclude 🚫 [default: node_modules]
+ --Pattern <PATTERN> Pattern 🔍 [default: .git]
+ -O, --Omit <OMIT> Omit 🚫 [default: Documentation]
+ -h, --help Print help
+ -V, --version Print version
+ ```
Expand Down

0 comments on commit 85e48c1

Please sign in to comment.