doing 2.0.5.pre → 2.0.6.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/bin/doing +133 -98
- data/doing.rdoc +88 -8
- data/generate_completions.sh +1 -0
- data/lib/completion/_doing.zsh +179 -127
- data/lib/completion/doing.bash +60 -27
- data/lib/completion/doing.fish +74 -23
- data/lib/doing/cli_status.rb +4 -0
- data/lib/doing/errors.rb +22 -15
- data/lib/doing/log_adapter.rb +27 -25
- data/lib/doing/plugin_manager.rb +1 -1
- data/lib/doing/string.rb +7 -6
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +83 -76
- data/lib/examples/commands/autotag.rb +63 -0
- data/scripts/generate_bash_completions.rb +3 -2
- data/scripts/generate_fish_completions.rb +4 -1
- data/scripts/generate_zsh_completions.rb +42 -38
- metadata +2 -2
- data/doing.fish +0 -278
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d4fddc64823d36cba4ab47827377ed1c2ce4cafed9099cf55c2a7300ee40978
|
4
|
+
data.tar.gz: c7b328db1f957ad8ecef57fae7eeb4b9fc69d6b100b64ed4e829207dc6315a1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34bf1cf28cec078c5dde53e0917a6c01e4a0fb614f1858914bb51f6e2f92cd69ffee635b3175e6957eea660d328c22072063d1d1dad87a9082de1102b81743f0
|
7
|
+
data.tar.gz: 0ed7bd998d774e0d09245513bdc8cf26dbacf5610623415ebc9269ed7d9d5925e8313e2cde7a87b10a781603410d9512017bd02c578b8c3d6340c72507dac4c3
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
### 2.0.6.pre
|
2
|
+
|
3
|
+
#### NEW
|
4
|
+
|
5
|
+
- If `doing view` and `doing show` are confused, offer option to run the other command
|
6
|
+
- `doing completion` to generate shell completion scripts for zsh, bash, and fish
|
7
|
+
|
8
|
+
#### IMPROVED
|
9
|
+
|
10
|
+
- More command line feedback
|
11
|
+
- Error formatting and output
|
12
|
+
- Add subcommand completion for `doing help` in fish shell
|
13
|
+
- Logging and error handling
|
14
|
+
|
15
|
+
#### FIXED
|
16
|
+
|
17
|
+
- Remove `--[no]` from non-negatable options
|
18
|
+
- `doing plugins -t export -c` not outputting columns
|
19
|
+
- View config not respecting tag_order setting
|
20
|
+
|
1
21
|
### 2.0.5.pre
|
2
22
|
|
3
23
|
#### NEW
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -6,7 +6,7 @@ _If you're one of the rare people like me who find this useful, feel free to [bu
|
|
6
6
|
|
7
7
|
<!--README-->
|
8
8
|
|
9
|
-
The current version of `doing` is <!--VER-->2.0.
|
9
|
+
The current version of `doing` is <!--VER-->2.0.5<!--END VER-->.
|
10
10
|
|
11
11
|
Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
|
12
12
|
|