cling icon indicating copy to clipboard operation
cling copied to clipboard

A modular, non-macro-based command line interface library

Results 4 cling issues
Sort by recently updated
recently updated
newest added

The current flow of a command's execution runs through the `pre_run` hook -> `run` main method -> `post_run` hook. However, if `pre_run` or `run` are interrupted or stopped, `post_run` is...

help wanted
question

For `pre_run` hook methods, there is the option to stop command execution to the main `run` method if the value returned is `false`. However, there are no checks in place...

enhancement
help wanted
good first issue
question

First off, I've just started using this shard due to the stdlib `OptionParser` lacking some considerable customization options and flexibility. Thanks for putting this together. However, I have run into...

bug

Currently, the `usage` help message only prints the command's name, ignoring its lineage. Suppose you have the following ``` Greets a person Usage: greet [options] Commands: welcome sends a friendly...

bug fix