doing 2.1.30 → 2.1.31pre
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/.irbrc +1 -0
- data/.yardoc/checksums +9 -8
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +4923 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/bin/commands/again.rb +1 -1
- data/bin/commands/archive.rb +3 -3
- data/bin/commands/cancel.rb +1 -1
- data/bin/commands/commands.rb +8 -8
- data/bin/commands/completion.rb +61 -19
- data/bin/commands/config.rb +9 -9
- data/bin/commands/done.rb +1 -1
- data/bin/commands/flag.rb +1 -1
- data/bin/commands/grep.rb +5 -5
- data/bin/commands/last.rb +1 -1
- data/bin/commands/meanwhile.rb +1 -1
- data/bin/commands/now.rb +1 -1
- data/bin/commands/on.rb +1 -1
- data/bin/commands/open.rb +1 -1
- data/bin/commands/recent.rb +4 -4
- data/bin/commands/show.rb +8 -8
- data/bin/commands/since.rb +1 -1
- data/bin/commands/today.rb +1 -1
- data/bin/commands/view.rb +3 -3
- data/bin/commands/yesterday.rb +2 -2
- data/bin/doing +22 -133
- data/docs/doc/Array.html +1 -1
- data/docs/doc/BooleanTermParser/Clause.html +1 -1
- data/docs/doc/BooleanTermParser/Operator.html +1 -1
- data/docs/doc/BooleanTermParser/Query.html +1 -1
- data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
- data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
- data/docs/doc/BooleanTermParser.html +1 -1
- data/docs/doc/Doing/Color.html +1 -1
- data/docs/doc/Doing/Completion.html +324 -4
- data/docs/doc/Doing/Configuration.html +1 -1
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +1 -1
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +1 -1
- data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
- data/docs/doc/Doing/Errors/EmptyInput.html +1 -1
- data/docs/doc/Doing/Errors/NoResults.html +1 -1
- data/docs/doc/Doing/Errors/PluginException.html +1 -1
- data/docs/doc/Doing/Errors/UserCancelled.html +1 -1
- data/docs/doc/Doing/Errors/WrongCommand.html +1 -1
- data/docs/doc/Doing/Errors.html +1 -1
- data/docs/doc/Doing/Hooks.html +1 -1
- data/docs/doc/Doing/Item.html +125 -1
- data/docs/doc/Doing/Items.html +1 -1
- data/docs/doc/Doing/LogAdapter.html +1 -1
- data/docs/doc/Doing/Note.html +109 -3
- data/docs/doc/Doing/Pager.html +1 -1
- data/docs/doc/Doing/Plugins.html +1 -1
- data/docs/doc/Doing/Prompt.html +1 -1
- data/docs/doc/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +1 -1
- data/docs/doc/Doing/Types.html +1 -1
- data/docs/doc/Doing/Util/Backup.html +1 -1
- data/docs/doc/Doing/Util.html +1 -1
- data/docs/doc/Doing/WWID.html +6 -6
- data/docs/doc/Doing.html +2 -2
- data/docs/doc/FalseClass.html +1 -1
- data/docs/doc/GLI/Commands/Help.html +1 -1
- data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/docs/doc/GLI/Commands.html +1 -1
- data/docs/doc/GLI.html +1 -1
- data/docs/doc/Hash.html +1 -1
- data/docs/doc/Object.html +1 -1
- data/docs/doc/PhraseParser/Operator.html +1 -1
- data/docs/doc/PhraseParser/PhraseClause.html +1 -1
- data/docs/doc/PhraseParser/Query.html +1 -1
- data/docs/doc/PhraseParser/QueryParser.html +1 -1
- data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
- data/docs/doc/PhraseParser/TermClause.html +1 -1
- data/docs/doc/PhraseParser.html +1 -1
- data/docs/doc/Status.html +1 -1
- data/docs/doc/String.html +1 -1
- data/docs/doc/Symbol.html +1 -1
- data/docs/doc/Time.html +1 -1
- data/docs/doc/TrueClass.html +1 -1
- data/docs/doc/_index.html +3 -1
- data/docs/doc/file.README.html +2 -2
- data/docs/doc/index.html +2 -2
- data/docs/doc/method_list.html +337 -241
- data/docs/doc/top-level-namespace.html +105 -1
- data/doing.rdoc +25 -9
- data/example_plugin.rb +7 -5
- data/lib/completion/_doing.zsh +2 -2
- data/lib/completion/doing.bash +2 -2
- data/lib/completion/doing.fish +2 -3
- data/lib/doing/add_options.rb +117 -0
- data/lib/doing/array/array.rb +16 -0
- data/lib/doing/completion/bash_completion.rb +12 -51
- data/lib/doing/completion/fish_completion.rb +16 -52
- data/lib/doing/completion/zsh_completion.rb +12 -56
- data/lib/doing/completion.rb +203 -17
- data/lib/doing/item.rb +21 -3
- data/lib/doing/items.rb +5 -5
- data/lib/doing/note.rb +24 -8
- data/lib/doing/plugins/export/dayone_export.rb +8 -6
- data/lib/doing/plugins/export/html_export.rb +4 -4
- data/lib/doing/plugins/export/json_export.rb +19 -20
- data/lib/doing/plugins/export/markdown_export.rb +2 -2
- data/lib/doing/plugins/export/template_export.rb +4 -4
- data/lib/doing/plugins/import/calendar_import.rb +1 -1
- data/lib/doing/plugins/import/doing_import.rb +1 -1
- data/lib/doing/plugins/import/timing_import.rb +1 -1
- data/lib/doing/string/highlight.rb +3 -4
- data/lib/doing/string/string.rb +8 -0
- data/lib/doing/util.rb +1 -1
- data/lib/doing/util_backup.rb +12 -12
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +76 -77
- data/lib/doing.rb +57 -0
- data/lib/examples/commands/wiki.rb +27 -19
- data/scripts/setting_replace.rb +11 -0
- metadata +6 -4
|
@@ -94,6 +94,32 @@
|
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
</div>
|
|
97
|
+
|
|
98
|
+
<h2>
|
|
99
|
+
Constant Summary
|
|
100
|
+
<small><a href="#" class="constants_summary_toggle">collapse</a></small>
|
|
101
|
+
</h2>
|
|
102
|
+
|
|
103
|
+
<dl class="constants">
|
|
104
|
+
|
|
105
|
+
<dt id="OPTIONS_RX-constant" class="">OPTIONS_RX =
|
|
106
|
+
|
|
107
|
+
</dt>
|
|
108
|
+
<dd><pre class="code"><span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>(?:-(?<short>\w), )?(?:--(?:\[no-\])?(?<long>\w+)(?:=(?<arg>\w+))?)\s+- (?<desc>.*?)$</span><span class='regexp_end'>/</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
|
109
|
+
|
|
110
|
+
<dt id="SECTIONS_RX-constant" class="">SECTIONS_RX =
|
|
111
|
+
|
|
112
|
+
</dt>
|
|
113
|
+
<dd><pre class="code"><span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>(?m-i)^([A-Z ]+)\n([\s\S]*?)(?=\n+[A-Z]+|\Z)</span><span class='regexp_end'>/</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
|
114
|
+
|
|
115
|
+
<dt id="COMMAND_RX-constant" class="">COMMAND_RX =
|
|
116
|
+
|
|
117
|
+
</dt>
|
|
118
|
+
<dd><pre class="code"><span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>^(?<cmd>[^, \t]+)(?<alias>(?:, [^, \t]+)*)?\s+- (?<desc>.*?)$</span><span class='regexp_end'>/</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
|
119
|
+
|
|
120
|
+
</dl>
|
|
121
|
+
|
|
122
|
+
|
|
97
123
|
|
|
98
124
|
|
|
99
125
|
|
|
@@ -111,7 +137,7 @@
|
|
|
111
137
|
<li class="public ">
|
|
112
138
|
<span class="summary_signature">
|
|
113
139
|
|
|
114
|
-
<a href="#generate_completion-class_method" title="generate_completion (class method)">.<strong>generate_completion</strong>(type: 'zsh', file:
|
|
140
|
+
<a href="#generate_completion-class_method" title="generate_completion (class method)">.<strong>generate_completion</strong>(type: 'zsh', file: :default, link: true) ⇒ Object </a>
|
|
115
141
|
|
|
116
142
|
|
|
117
143
|
|
|
@@ -128,6 +154,182 @@
|
|
|
128
154
|
<span class="summary_desc"><div class='inline'><p>Generate a completion script and output to file or stdout.</p>
|
|
129
155
|
</div></span>
|
|
130
156
|
|
|
157
|
+
</li>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
<li class="public ">
|
|
161
|
+
<span class="summary_signature">
|
|
162
|
+
|
|
163
|
+
<a href="#get_help_sections-class_method" title="get_help_sections (class method)">.<strong>get_help_sections</strong>(command = '') ⇒ Object </a>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
</span>
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
178
|
+
|
|
179
|
+
</li>
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
<li class="public ">
|
|
183
|
+
<span class="summary_signature">
|
|
184
|
+
|
|
185
|
+
<a href="#install_builtin-class_method" title="install_builtin (class method)">.<strong>install_builtin</strong>(type) ⇒ Object </a>
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
</span>
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
200
|
+
|
|
201
|
+
</li>
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
<li class="public ">
|
|
205
|
+
<span class="summary_signature">
|
|
206
|
+
|
|
207
|
+
<a href="#link_default-class_method" title="link_default (class method)">.<strong>link_default</strong>(type) ⇒ Object </a>
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
</span>
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
222
|
+
|
|
223
|
+
</li>
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
<li class="public ">
|
|
227
|
+
<span class="summary_signature">
|
|
228
|
+
|
|
229
|
+
<a href="#normalize_type-class_method" title="normalize_type (class method)">.<strong>normalize_type</strong>(type) ⇒ Object </a>
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
</span>
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
244
|
+
|
|
245
|
+
</li>
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
<li class="public ">
|
|
249
|
+
<span class="summary_signature">
|
|
250
|
+
|
|
251
|
+
<a href="#parse_command-class_method" title="parse_command (class method)">.<strong>parse_command</strong>(command) ⇒ Object </a>
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
</span>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
266
|
+
|
|
267
|
+
</li>
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
<li class="public ">
|
|
271
|
+
<span class="summary_signature">
|
|
272
|
+
|
|
273
|
+
<a href="#parse_commands-class_method" title="parse_commands (class method)">.<strong>parse_commands</strong>(commands) ⇒ Object </a>
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
</span>
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
288
|
+
|
|
289
|
+
</li>
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
<li class="public ">
|
|
293
|
+
<span class="summary_signature">
|
|
294
|
+
|
|
295
|
+
<a href="#parse_option-class_method" title="parse_option (class method)">.<strong>parse_option</strong>(option) ⇒ Object </a>
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
</span>
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
310
|
+
|
|
311
|
+
</li>
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
<li class="public ">
|
|
315
|
+
<span class="summary_signature">
|
|
316
|
+
|
|
317
|
+
<a href="#parse_options-class_method" title="parse_options (class method)">.<strong>parse_options</strong>(options) ⇒ Object </a>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
</span>
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
332
|
+
|
|
131
333
|
</li>
|
|
132
334
|
|
|
133
335
|
|
|
@@ -143,7 +345,7 @@
|
|
|
143
345
|
<div class="method_details first">
|
|
144
346
|
<h3 class="signature first" id="generate_completion-class_method">
|
|
145
347
|
|
|
146
|
-
.<strong>generate_completion</strong>(type: 'zsh', file:
|
|
348
|
+
.<strong>generate_completion</strong>(type: 'zsh', file: :default, link: true) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
147
349
|
|
|
148
350
|
|
|
149
351
|
|
|
@@ -186,7 +388,7 @@ stdout</p>
|
|
|
186
388
|
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
|
|
187
389
|
|
|
188
390
|
|
|
189
|
-
<em class="default">(defaults to: <tt
|
|
391
|
+
<em class="default">(defaults to: <tt>:default</tt>)</em>
|
|
190
392
|
|
|
191
393
|
|
|
192
394
|
—
|
|
@@ -199,6 +401,124 @@ stdout</p>
|
|
|
199
401
|
|
|
200
402
|
|
|
201
403
|
</div>
|
|
404
|
+
</div>
|
|
405
|
+
|
|
406
|
+
<div class="method_details ">
|
|
407
|
+
<h3 class="signature " id="get_help_sections-class_method">
|
|
408
|
+
|
|
409
|
+
.<strong>get_help_sections</strong>(command = '') ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
</h3>
|
|
416
|
+
</div>
|
|
417
|
+
|
|
418
|
+
<div class="method_details ">
|
|
419
|
+
<h3 class="signature " id="install_builtin-class_method">
|
|
420
|
+
|
|
421
|
+
.<strong>install_builtin</strong>(type) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
</h3>
|
|
428
|
+
</div>
|
|
429
|
+
|
|
430
|
+
<div class="method_details ">
|
|
431
|
+
<h3 class="signature " id="link_default-class_method">
|
|
432
|
+
|
|
433
|
+
.<strong>link_default</strong>(type) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
</h3><div class="docstring">
|
|
440
|
+
<div class="discussion">
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
</div>
|
|
444
|
+
</div>
|
|
445
|
+
<div class="tags">
|
|
446
|
+
|
|
447
|
+
<p class="tag_title">Raises:</p>
|
|
448
|
+
<ul class="raise">
|
|
449
|
+
|
|
450
|
+
<li>
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
<span class='type'>(<tt>InvalidArgument</tt>)</span>
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
</li>
|
|
458
|
+
|
|
459
|
+
</ul>
|
|
460
|
+
|
|
461
|
+
</div>
|
|
462
|
+
</div>
|
|
463
|
+
|
|
464
|
+
<div class="method_details ">
|
|
465
|
+
<h3 class="signature " id="normalize_type-class_method">
|
|
466
|
+
|
|
467
|
+
.<strong>normalize_type</strong>(type) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
</h3>
|
|
474
|
+
</div>
|
|
475
|
+
|
|
476
|
+
<div class="method_details ">
|
|
477
|
+
<h3 class="signature " id="parse_command-class_method">
|
|
478
|
+
|
|
479
|
+
.<strong>parse_command</strong>(command) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
</h3>
|
|
486
|
+
</div>
|
|
487
|
+
|
|
488
|
+
<div class="method_details ">
|
|
489
|
+
<h3 class="signature " id="parse_commands-class_method">
|
|
490
|
+
|
|
491
|
+
.<strong>parse_commands</strong>(commands) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
</h3>
|
|
498
|
+
</div>
|
|
499
|
+
|
|
500
|
+
<div class="method_details ">
|
|
501
|
+
<h3 class="signature " id="parse_option-class_method">
|
|
502
|
+
|
|
503
|
+
.<strong>parse_option</strong>(option) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
</h3>
|
|
510
|
+
</div>
|
|
511
|
+
|
|
512
|
+
<div class="method_details ">
|
|
513
|
+
<h3 class="signature " id="parse_options-class_method">
|
|
514
|
+
|
|
515
|
+
.<strong>parse_options</strong>(options) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
</h3>
|
|
202
522
|
</div>
|
|
203
523
|
|
|
204
524
|
</div>
|
|
@@ -206,7 +526,7 @@ stdout</p>
|
|
|
206
526
|
</div>
|
|
207
527
|
|
|
208
528
|
<div id="footer">
|
|
209
|
-
Generated on
|
|
529
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
210
530
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
211
531
|
0.9.27 (ruby-3.0.1).
|
|
212
532
|
</div>
|
|
@@ -1139,7 +1139,7 @@ matched, first match wins)</p>
|
|
|
1139
1139
|
</div>
|
|
1140
1140
|
|
|
1141
1141
|
<div id="footer">
|
|
1142
|
-
Generated on
|
|
1142
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
1143
1143
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1144
1144
|
0.9.27 (ruby-3.0.1).
|
|
1145
1145
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
</div>
|
|
239
239
|
|
|
240
240
|
<div id="footer">
|
|
241
|
-
Generated on
|
|
241
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
242
242
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
243
243
|
0.9.27 (ruby-3.0.1).
|
|
244
244
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
181
|
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
data/docs/doc/Doing/Errors.html
CHANGED
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
</div>
|
|
182
182
|
|
|
183
183
|
<div id="footer">
|
|
184
|
-
Generated on
|
|
184
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
185
185
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
186
186
|
0.9.27 (ruby-3.0.1).
|
|
187
187
|
</div>
|
data/docs/doc/Doing/Hooks.html
CHANGED
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
</div>
|
|
355
355
|
|
|
356
356
|
<div id="footer">
|
|
357
|
-
Generated on
|
|
357
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
358
358
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
359
359
|
0.9.27 (ruby-3.0.1).
|
|
360
360
|
</div>
|
data/docs/doc/Doing/Item.html
CHANGED
|
@@ -377,6 +377,29 @@
|
|
|
377
377
|
<span class="summary_desc"><div class='inline'><p>Updates the title of the Item by expanding natural language dates within configured date tags (tags whose value is expected to be a date).</p>
|
|
378
378
|
</div></span>
|
|
379
379
|
|
|
380
|
+
</li>
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
<li class="public ">
|
|
384
|
+
<span class="summary_signature">
|
|
385
|
+
|
|
386
|
+
<a href="#finished%3F-instance_method" title="#finished? (instance method)">#<strong>finished?</strong> ⇒ Boolean </a>
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
</span>
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
<span class="summary_desc"><div class='inline'><p>Test if item has a @done tag.</p>
|
|
401
|
+
</div></span>
|
|
402
|
+
|
|
380
403
|
</li>
|
|
381
404
|
|
|
382
405
|
|
|
@@ -792,6 +815,29 @@
|
|
|
792
815
|
<span class="summary_desc"><div class='inline'><p>outputs item in Doing file format, including leading tab.</p>
|
|
793
816
|
</div></span>
|
|
794
817
|
|
|
818
|
+
</li>
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
<li class="public ">
|
|
822
|
+
<span class="summary_signature">
|
|
823
|
+
|
|
824
|
+
<a href="#unfinished%3F-instance_method" title="#unfinished? (instance method)">#<strong>unfinished?</strong> ⇒ Boolean </a>
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
</span>
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
<span class="summary_desc"><div class='inline'><p>Test if item does not contain @done tag.</p>
|
|
839
|
+
</div></span>
|
|
840
|
+
|
|
795
841
|
</li>
|
|
796
842
|
|
|
797
843
|
|
|
@@ -1198,6 +1244,45 @@ dates</p>
|
|
|
1198
1244
|
</ul>
|
|
1199
1245
|
|
|
1200
1246
|
|
|
1247
|
+
</div>
|
|
1248
|
+
</div>
|
|
1249
|
+
|
|
1250
|
+
<div class="method_details ">
|
|
1251
|
+
<h3 class="signature " id="finished?-instance_method">
|
|
1252
|
+
|
|
1253
|
+
#<strong>finished?</strong> ⇒ <tt>Boolean</tt>
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
</h3><div class="docstring">
|
|
1260
|
+
<div class="discussion">
|
|
1261
|
+
<p>Test if item has a @done tag</p>
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
</div>
|
|
1265
|
+
</div>
|
|
1266
|
+
<div class="tags">
|
|
1267
|
+
|
|
1268
|
+
<p class="tag_title">Returns:</p>
|
|
1269
|
+
<ul class="return">
|
|
1270
|
+
|
|
1271
|
+
<li>
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
—
|
|
1279
|
+
<div class='inline'><p>true item has @done tag</p>
|
|
1280
|
+
</div>
|
|
1281
|
+
|
|
1282
|
+
</li>
|
|
1283
|
+
|
|
1284
|
+
</ul>
|
|
1285
|
+
|
|
1201
1286
|
</div>
|
|
1202
1287
|
</div>
|
|
1203
1288
|
|
|
@@ -2221,6 +2306,45 @@ thus should not receive a date on the @done tag</p>
|
|
|
2221
2306
|
<div class="tags">
|
|
2222
2307
|
|
|
2223
2308
|
|
|
2309
|
+
</div>
|
|
2310
|
+
</div>
|
|
2311
|
+
|
|
2312
|
+
<div class="method_details ">
|
|
2313
|
+
<h3 class="signature " id="unfinished?-instance_method">
|
|
2314
|
+
|
|
2315
|
+
#<strong>unfinished?</strong> ⇒ <tt>Boolean</tt>
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
|
|
2319
|
+
|
|
2320
|
+
|
|
2321
|
+
</h3><div class="docstring">
|
|
2322
|
+
<div class="discussion">
|
|
2323
|
+
<p>Test if item does not contain @done tag</p>
|
|
2324
|
+
|
|
2325
|
+
|
|
2326
|
+
</div>
|
|
2327
|
+
</div>
|
|
2328
|
+
<div class="tags">
|
|
2329
|
+
|
|
2330
|
+
<p class="tag_title">Returns:</p>
|
|
2331
|
+
<ul class="return">
|
|
2332
|
+
|
|
2333
|
+
<li>
|
|
2334
|
+
|
|
2335
|
+
|
|
2336
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
|
2337
|
+
|
|
2338
|
+
|
|
2339
|
+
|
|
2340
|
+
—
|
|
2341
|
+
<div class='inline'><p>true if item is missing @done tag</p>
|
|
2342
|
+
</div>
|
|
2343
|
+
|
|
2344
|
+
</li>
|
|
2345
|
+
|
|
2346
|
+
</ul>
|
|
2347
|
+
|
|
2224
2348
|
</div>
|
|
2225
2349
|
</div>
|
|
2226
2350
|
|
|
@@ -2229,7 +2353,7 @@ thus should not receive a date on the @done tag</p>
|
|
|
2229
2353
|
</div>
|
|
2230
2354
|
|
|
2231
2355
|
<div id="footer">
|
|
2232
|
-
Generated on
|
|
2356
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
2233
2357
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
2234
2358
|
0.9.27 (ruby-3.0.1).
|
|
2235
2359
|
</div>
|
data/docs/doc/Doing/Items.html
CHANGED
|
@@ -890,7 +890,7 @@ specified section</p>
|
|
|
890
890
|
</div>
|
|
891
891
|
|
|
892
892
|
<div id="footer">
|
|
893
|
-
Generated on
|
|
893
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
894
894
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
895
895
|
0.9.27 (ruby-3.0.1).
|
|
896
896
|
</div>
|
|
@@ -1797,7 +1797,7 @@ message (optional)</p>
|
|
|
1797
1797
|
</div>
|
|
1798
1798
|
|
|
1799
1799
|
<div id="footer">
|
|
1800
|
-
Generated on
|
|
1800
|
+
Generated on Thu Feb 17 13:05:18 2022 by
|
|
1801
1801
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1802
1802
|
0.9.27 (ruby-3.0.1).
|
|
1803
1803
|
</div>
|