doing 2.1.5pre → 2.1.6pre

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.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +3 -3
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/.yardopts +1 -1
  6. data/CHANGELOG.md +11 -0
  7. data/Gemfile.lock +1 -1
  8. data/README.md +5 -1
  9. data/bin/doing +43 -4
  10. data/docs/_config.yml +1 -0
  11. data/{doc → docs/doc}/Array.html +1 -1
  12. data/{doc → docs/doc}/BooleanTermParser/Clause.html +1 -1
  13. data/{doc → docs/doc}/BooleanTermParser/Operator.html +1 -1
  14. data/{doc → docs/doc}/BooleanTermParser/Query.html +1 -1
  15. data/{doc → docs/doc}/BooleanTermParser/QueryParser.html +1 -1
  16. data/{doc → docs/doc}/BooleanTermParser/QueryTransformer.html +1 -1
  17. data/{doc → docs/doc}/BooleanTermParser.html +1 -1
  18. data/{doc → docs/doc}/Doing/CLIFormat.html +0 -0
  19. data/{doc → docs/doc}/Doing/Color.html +1 -1
  20. data/{doc → docs/doc}/Doing/Completion.html +1 -1
  21. data/{doc → docs/doc}/Doing/Configuration.html +1 -1
  22. data/{doc → docs/doc}/Doing/Content.html +0 -0
  23. data/{doc → docs/doc}/Doing/Errors/DoingNoTraceError.html +1 -1
  24. data/{doc → docs/doc}/Doing/Errors/DoingRuntimeError.html +1 -1
  25. data/{doc → docs/doc}/Doing/Errors/DoingStandardError.html +1 -1
  26. data/{doc → docs/doc}/Doing/Errors/EmptyInput.html +1 -1
  27. data/{doc → docs/doc}/Doing/Errors/NoResults.html +1 -1
  28. data/{doc → docs/doc}/Doing/Errors/PluginException.html +1 -1
  29. data/{doc → docs/doc}/Doing/Errors/UserCancelled.html +1 -1
  30. data/{doc → docs/doc}/Doing/Errors/WrongCommand.html +1 -1
  31. data/{doc → docs/doc}/Doing/Errors.html +1 -1
  32. data/{doc → docs/doc}/Doing/Hooks.html +1 -1
  33. data/{doc → docs/doc}/Doing/Item.html +1 -1
  34. data/{doc → docs/doc}/Doing/Items.html +1 -1
  35. data/{doc → docs/doc}/Doing/LogAdapter.html +1 -1
  36. data/{doc → docs/doc}/Doing/Note.html +1 -1
  37. data/{doc → docs/doc}/Doing/Pager.html +1 -1
  38. data/{doc → docs/doc}/Doing/Plugins.html +59 -3
  39. data/{doc → docs/doc}/Doing/Prompt.html +1 -1
  40. data/{doc → docs/doc}/Doing/Section.html +1 -1
  41. data/{doc → docs/doc}/Doing/TemplateString.html +1 -1
  42. data/{doc → docs/doc}/Doing/Util/Backup.html +1 -1
  43. data/{doc → docs/doc}/Doing/Util.html +1 -1
  44. data/{doc → docs/doc}/Doing/WWID.html +1 -1
  45. data/{doc → docs/doc}/Doing/WWIDFile.html +0 -0
  46. data/{doc → docs/doc}/Doing.html +2 -2
  47. data/{doc → docs/doc}/GLI/Commands/MarkdownDocumentListener.html +1 -1
  48. data/{doc → docs/doc}/GLI/Commands.html +1 -1
  49. data/{doc → docs/doc}/GLI.html +1 -1
  50. data/{doc → docs/doc}/Hash.html +1 -1
  51. data/{doc → docs/doc}/PhraseParser/Operator.html +1 -1
  52. data/{doc → docs/doc}/PhraseParser/PhraseClause.html +1 -1
  53. data/{doc → docs/doc}/PhraseParser/Query.html +1 -1
  54. data/{doc → docs/doc}/PhraseParser/QueryParser.html +1 -1
  55. data/{doc → docs/doc}/PhraseParser/QueryTransformer.html +1 -1
  56. data/{doc → docs/doc}/PhraseParser/TermClause.html +1 -1
  57. data/{doc → docs/doc}/PhraseParser.html +1 -1
  58. data/{doc → docs/doc}/Status.html +1 -1
  59. data/{doc → docs/doc}/String.html +1 -1
  60. data/{doc → docs/doc}/Symbol.html +1 -1
  61. data/{doc → docs/doc}/Time.html +1 -1
  62. data/{doc → docs/doc}/_index.html +1 -1
  63. data/{doc → docs/doc}/class_list.html +0 -0
  64. data/{doc → docs/doc}/css/common.css +0 -0
  65. data/{doc → docs/doc}/css/full_list.css +0 -0
  66. data/{doc → docs/doc}/css/style.css +0 -0
  67. data/{doc → docs/doc}/file.README.html +6 -2
  68. data/{doc → docs/doc}/file_list.html +0 -0
  69. data/{doc → docs/doc}/frames.html +0 -0
  70. data/{doc → docs/doc}/index.html +6 -2
  71. data/{doc → docs/doc}/js/app.js +0 -0
  72. data/{doc → docs/doc}/js/full_list.js +0 -0
  73. data/{doc → docs/doc}/js/jquery.js +0 -0
  74. data/{doc → docs/doc}/method_list.html +172 -164
  75. data/{doc → docs/doc}/top-level-namespace.html +1 -1
  76. data/docs/index.md +60 -0
  77. data/doing.rdoc +27 -15
  78. data/example_plugin.rb +3 -1
  79. data/lib/completion/_doing.zsh +53 -41
  80. data/lib/completion/doing.bash +17 -6
  81. data/lib/completion/doing.fish +321 -2
  82. data/lib/doing/completion/fish_completion.rb +46 -3
  83. data/lib/doing/completion/zsh_completion.rb +1 -1
  84. data/lib/doing/configuration.rb +2 -3
  85. data/lib/doing/plugin_manager.rb +27 -8
  86. data/lib/doing/plugins/export/dayone_export.rb +2 -2
  87. data/lib/doing/plugins/export/html_export.rb +2 -2
  88. data/lib/doing/plugins/export/json_export.rb +1 -0
  89. data/lib/doing/plugins/export/markdown_export.rb +1 -1
  90. data/lib/doing/version.rb +1 -1
  91. data/lib/examples/plugins/say_export.rb +1 -1
  92. data/lib/examples/plugins/wiki_export/wiki_export.rb +3 -3
  93. metadata +69 -67
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Sun Dec 19 12:35:32 2021 by
108
+ Generated on Mon Dec 20 15:39:45 2021 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.9.26 (ruby-3.0.1).
111
111
  </div>
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Sun Dec 19 12:35:32 2021 by
108
+ Generated on Mon Dec 20 15:39:45 2021 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.9.26 (ruby-3.0.1).
111
111
  </div>
@@ -418,7 +418,7 @@
418
418
  </div>
419
419
 
420
420
  <div id="footer">
421
- Generated on Sun Dec 19 12:35:32 2021 by
421
+ Generated on Mon Dec 20 15:39:45 2021 by
422
422
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
423
423
  0.9.26 (ruby-3.0.1).
424
424
  </div>
@@ -162,7 +162,7 @@
162
162
  </div>
163
163
 
164
164
  <div id="footer">
165
- Generated on Sun Dec 19 12:35:33 2021 by
165
+ Generated on Mon Dec 20 15:39:46 2021 by
166
166
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
167
167
  0.9.26 (ruby-3.0.1).
168
168
  </div>
@@ -293,7 +293,7 @@
293
293
  </div>
294
294
 
295
295
  <div id="footer">
296
- Generated on Sun Dec 19 12:35:33 2021 by
296
+ Generated on Mon Dec 20 15:39:46 2021 by
297
297
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
298
298
  0.9.26 (ruby-3.0.1).
299
299
  </div>
@@ -485,7 +485,7 @@
485
485
  </div>
486
486
 
487
487
  <div id="footer">
488
- Generated on Sun Dec 19 12:35:33 2021 by
488
+ Generated on Mon Dec 20 15:39:46 2021 by
489
489
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
490
490
  0.9.26 (ruby-3.0.1).
491
491
  </div>
@@ -126,7 +126,7 @@ A phrase clause generates an Elasticsearch match_phrase query.</p>
126
126
  </div>
127
127
 
128
128
  <div id="footer">
129
- Generated on Sun Dec 19 12:35:33 2021 by
129
+ Generated on Mon Dec 20 15:39:46 2021 by
130
130
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
131
131
  0.9.26 (ruby-3.0.1).
132
132
  </div>
@@ -114,7 +114,7 @@
114
114
  </div>
115
115
 
116
116
  <div id="footer">
117
- Generated on Sun Dec 19 12:35:33 2021 by
117
+ Generated on Mon Dec 20 15:39:46 2021 by
118
118
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
119
119
  0.9.26 (ruby-3.0.1).
120
120
  </div>
@@ -283,7 +283,7 @@
283
283
  </div>
284
284
 
285
285
  <div id="footer">
286
- Generated on Sun Dec 19 12:35:33 2021 by
286
+ Generated on Mon Dec 20 15:39:46 2021 by
287
287
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
288
288
  0.9.26 (ruby-3.0.1).
289
289
  </div>
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Sun Dec 19 12:35:32 2021 by
108
+ Generated on Mon Dec 20 15:39:45 2021 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.9.26 (ruby-3.0.1).
111
111
  </div>
@@ -316,7 +316,7 @@
316
316
  </div>
317
317
 
318
318
  <div id="footer">
319
- Generated on Sun Dec 19 12:35:32 2021 by
319
+ Generated on Mon Dec 20 15:39:45 2021 by
320
320
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
321
321
  0.9.26 (ruby-3.0.1).
322
322
  </div>
@@ -2790,7 +2790,7 @@ be recognized, e.g. %greensomething still finds
2790
2790
  </div>
2791
2791
 
2792
2792
  <div id="footer">
2793
- Generated on Sun Dec 19 12:35:33 2021 by
2793
+ Generated on Mon Dec 20 15:39:46 2021 by
2794
2794
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
2795
2795
  0.9.26 (ruby-3.0.1).
2796
2796
  </div>
@@ -274,7 +274,7 @@
274
274
  </div>
275
275
 
276
276
  <div id="footer">
277
- Generated on Sun Dec 19 12:35:33 2021 by
277
+ Generated on Mon Dec 20 15:39:46 2021 by
278
278
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
279
279
  0.9.26 (ruby-3.0.1).
280
280
  </div>
@@ -240,7 +240,7 @@
240
240
  </div>
241
241
 
242
242
  <div id="footer">
243
- Generated on Sun Dec 19 12:35:33 2021 by
243
+ Generated on Mon Dec 20 15:39:46 2021 by
244
244
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
245
245
  0.9.26 (ruby-3.0.1).
246
246
  </div>
@@ -550,7 +550,7 @@
550
550
  </div>
551
551
 
552
552
  <div id="footer">
553
- Generated on Sun Dec 19 12:35:32 2021 by
553
+ Generated on Mon Dec 20 15:39:45 2021 by
554
554
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
555
555
  0.9.26 (ruby-3.0.1).
556
556
  </div>
File without changes
File without changes
File without changes
File without changes
@@ -65,10 +65,14 @@
65
65
 
66
66
  <!--README-->
67
67
 
68
- <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.4&lt;!--END VER--&gt;.</p>
68
+ <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.5&lt;!--END VER--&gt;.</p>
69
69
 
70
70
  <p>Find all of the documentation in the <a href="https://github.com/ttscoff/doing/wiki">doing wiki</a>.</p>
71
71
 
72
+ <p>See <a href="https://brettterpstra.com/2021/11/20/doing-2-dot-0/">what&#39;s new in Doing 2.0</a>.</p>
73
+
74
+ <p>Check out some craziness with Doing in the <a href="https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/">iTerm status bar</a> and the <a href="https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/">Mac Touch Bar/menu bar</a>.</p>
75
+
72
76
  <h2 id="what-and-why">What and why</h2>
73
77
 
74
78
  <p><code>doing</code> is a basic CLI for adding and listing &quot;what was I doing&quot; reminders in a <a href="https://www.taskpaper.com">TaskPaper-formatted</a> text file. It allows for multiple sections/categories and flexible output formatting.</p>
@@ -119,7 +123,7 @@ download 117 %
119
123
  </div></div>
120
124
 
121
125
  <div id="footer">
122
- Generated on Sun Dec 19 12:35:32 2021 by
126
+ Generated on Mon Dec 20 15:39:45 2021 by
123
127
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
124
128
  0.9.26 (ruby-3.0.1).
125
129
  </div>
File without changes
File without changes
@@ -65,10 +65,14 @@
65
65
 
66
66
  <!--README-->
67
67
 
68
- <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.4&lt;!--END VER--&gt;.</p>
68
+ <p>The current version of <code>doing</code> is &lt;!--VER--&gt;2.1.5&lt;!--END VER--&gt;.</p>
69
69
 
70
70
  <p>Find all of the documentation in the <a href="https://github.com/ttscoff/doing/wiki">doing wiki</a>.</p>
71
71
 
72
+ <p>See <a href="https://brettterpstra.com/2021/11/20/doing-2-dot-0/">what&#39;s new in Doing 2.0</a>.</p>
73
+
74
+ <p>Check out some craziness with Doing in the <a href="https://brettterpstra.com/2021/10/15/see-what-youre-doing-in-the-iterm-status-bar/">iTerm status bar</a> and the <a href="https://brettterpstra.com/2021/07/21/crazy-bettertouchtool-touch-bar-simulator/">Mac Touch Bar/menu bar</a>.</p>
75
+
72
76
  <h2 id="what-and-why">What and why</h2>
73
77
 
74
78
  <p><code>doing</code> is a basic CLI for adding and listing &quot;what was I doing&quot; reminders in a <a href="https://www.taskpaper.com">TaskPaper-formatted</a> text file. It allows for multiple sections/categories and flexible output formatting.</p>
@@ -119,7 +123,7 @@ download 117 %
119
123
  </div></div>
120
124
 
121
125
  <div id="footer">
122
- Generated on Sun Dec 19 12:35:32 2021 by
126
+ Generated on Mon Dec 20 15:39:45 2021 by
123
127
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
124
128
  0.9.26 (ruby-3.0.1).
125
129
  </div>
File without changes
File without changes
File without changes