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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d4fddc64823d36cba4ab47827377ed1c2ce4cafed9099cf55c2a7300ee40978
4
- data.tar.gz: c7b328db1f957ad8ecef57fae7eeb4b9fc69d6b100b64ed4e829207dc6315a1e
3
+ metadata.gz: fc54a9b143b7a97dcd2ad9867a5166b06cfe52e4631f7658c65aa76ea9e07c19
4
+ data.tar.gz: 5c60bc065b3b25cd450403dbf42089f30f5367416fee6b88f9baaf43b4ede04e
5
5
  SHA512:
6
- metadata.gz: 34bf1cf28cec078c5dde53e0917a6c01e4a0fb614f1858914bb51f6e2f92cd69ffee635b3175e6957eea660d328c22072063d1d1dad87a9082de1102b81743f0
7
- data.tar.gz: 0ed7bd998d774e0d09245513bdc8cf26dbacf5610623415ebc9269ed7d9d5925e8313e2cde7a87b10a781603410d9512017bd02c578b8c3d6340c72507dac4c3
6
+ metadata.gz: 7ef6e317026dae9f46a8abdaa3c0a4c8a7ef29598e192c223e4158510c65e8deac0a87719d0cbcc634c8d7c654cab7239e95d88369819fb1f7f9c6b1da027485
7
+ data.tar.gz: eb8c1115272cd4c23d158719f15a1f0af81a1e091af25a0e436c0832b4e21046bc8dd393d47e62214de59628a1e1e582a8c68533d8ce39b33d1ce2ee856a1971
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 2.0.7.pre
2
+
3
+ #### FIXED
4
+
5
+ - Zsh completion not outputting results
6
+
1
7
  ### 2.0.6.pre
2
8
 
3
9
  #### NEW
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- doing (2.0.6.pre)
4
+ doing (2.0.7.pre)
5
5
  chronic (~> 0.10, >= 0.10.2)
6
6
  deep_merge (~> 1.2, >= 1.2.1)
7
7
  gli (~> 2.19, >= 2.19.2)
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.5<!--END VER-->.
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.6.pre
5
+ v2.0.7.pre
6
6
 
7
7
  === Global Options
8
8
  === --config_file arg
data/lib/doing/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Doing
2
- VERSION = '2.0.6.pre'
2
+ VERSION = '2.0.7.pre'
3
3
  end
@@ -28,7 +28,7 @@ class ZshCompletions
28
28
  attr_accessor :commands, :global_options
29
29
 
30
30
  def generate_helpers
31
- <<~EOFUNCTIONS
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doing
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6.pre
4
+ version: 2.0.7.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Terpstra