v0.3.0
Commander the command line arguments decoding framework makes it easy to write cli application in Swift.
Release Notes:
- Fully decoding of cli args with following patterns:
{cmd} --{key} {value} ... -- [args...]
{cmd} --{key}={value} ... [args...]
{cmd} --{bool} ...
{cmd} -{k} {value} ...
{cmd} -{k}={value} ...
{cmd} --{b} ...
{cmd} --{global-k} ...
- Supports nested command with following patterns:
{cmd} {cmd1} {cmd2}
...
- Tests' coverage reachs 80% and more.
- Easy to use and write.
- Totally customizable with
CommanderRepresentable
,CommandRepresentable
andOptionsRepresentable
.