to install all binaries in ~/.cargo/bin
run.
cargo install --path .
Automatic adds tags by parsing the description.
The description string will be split in words and the
matching must be exact, no regular expressions supported (yet?).
You have to give configuration file tag-map.json
,
here is an example :
[
{
"name": "buy",
"keywords": ["buy" "shopping" "shop" ]
},
{
"name": "bug",
"keywords": ["fix", "bug"]
}
]
To use for on-add
```sh
~/.cargo/bin/auto-tagger
to use for on-modify (just drop the original line)
```sh
read original_line
~/.cargo/bin/auto-tagger
cargo test
will test everything