doing 2.0.6.pre → 2.0.7.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 +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/doing.rdoc +1 -1
- data/lib/doing/version.rb +1 -1
- data/scripts/generate_zsh_completions.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc54a9b143b7a97dcd2ad9867a5166b06cfe52e4631f7658c65aa76ea9e07c19
|
4
|
+
data.tar.gz: 5c60bc065b3b25cd450403dbf42089f30f5367416fee6b88f9baaf43b4ede04e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ef6e317026dae9f46a8abdaa3c0a4c8a7ef29598e192c223e4158510c65e8deac0a87719d0cbcc634c8d7c654cab7239e95d88369819fb1f7f9c6b1da027485
|
7
|
+
data.tar.gz: eb8c1115272cd4c23d158719f15a1f0af81a1e091af25a0e436c0832b4e21046bc8dd393d47e62214de59628a1e1e582a8c68533d8ce39b33d1ce2ee856a1971
|
data/CHANGELOG.md
CHANGED
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.6<!--END VER-->.
|
10
10
|
|
11
11
|
Find all of the documentation in the [doing wiki](https://github.com/ttscoff/doing/wiki).
|
12
12
|
|
data/doing.rdoc
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Doing uses a TaskPaper-like formatting to keep a plain text record of what you've been doing, complete with tag-based time tracking. The command line tool allows you to add entries, annotate with tags and notes, and view your entries with myriad options, with a focus on a "natural" language syntax.
|
4
4
|
|
5
|
-
v2.0.
|
5
|
+
v2.0.7.pre
|
6
6
|
|
7
7
|
=== Global Options
|
8
8
|
=== --config_file arg
|
data/lib/doing/version.rb
CHANGED
@@ -28,7 +28,7 @@ class ZshCompletions
|
|
28
28
|
attr_accessor :commands, :global_options
|
29
29
|
|
30
30
|
def generate_helpers
|
31
|
-
|
31
|
+
out=<<~EOFUNCTIONS
|
32
32
|
compdef _doing doing
|
33
33
|
|
34
34
|
function _doing() {
|
@@ -57,6 +57,8 @@ class ZshCompletions
|
|
57
57
|
}
|
58
58
|
|
59
59
|
EOFUNCTIONS
|
60
|
+
status('Complete', reset: false)
|
61
|
+
out
|
60
62
|
end
|
61
63
|
|
62
64
|
def get_help_sections(command = '')
|
@@ -161,7 +163,6 @@ class ZshCompletions
|
|
161
163
|
|
162
164
|
def generate_completions
|
163
165
|
generate_helpers
|
164
|
-
status('Complete', reset: false)
|
165
166
|
end
|
166
167
|
end
|
167
168
|
|