doing 2.1.21 → 2.1.25
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/.yardoc/checksums +19 -16
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +51 -13
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/Rakefile +6 -3
- data/bin/doing +254 -103
- data/docs/doc/Array.html +74 -34
- data/docs/doc/BooleanTermParser/Clause.html +5 -5
- data/docs/doc/BooleanTermParser/Operator.html +4 -4
- data/docs/doc/BooleanTermParser/Query.html +8 -8
- data/docs/doc/BooleanTermParser/QueryParser.html +2 -2
- data/docs/doc/BooleanTermParser/QueryTransformer.html +2 -2
- data/docs/doc/BooleanTermParser.html +1 -1
- data/docs/doc/Doing/Color.html +4 -4
- data/docs/doc/Doing/Completion.html +2 -2
- data/docs/doc/Doing/Configuration.html +16 -18
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +2 -2
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +2 -2
- data/docs/doc/Doing/Errors/DoingStandardError.html +2 -2
- data/docs/doc/Doing/Errors/EmptyInput.html +2 -2
- data/docs/doc/Doing/Errors/NoResults.html +2 -2
- data/docs/doc/Doing/Errors/PluginException.html +3 -3
- data/docs/doc/Doing/Errors/UserCancelled.html +2 -2
- data/docs/doc/Doing/Errors/WrongCommand.html +2 -2
- data/docs/doc/Doing/Errors.html +1 -1
- data/docs/doc/Doing/Hooks.html +6 -6
- data/docs/doc/Doing/Item.html +50 -16
- data/docs/doc/Doing/Items.html +10 -10
- data/docs/doc/Doing/LogAdapter.html +24 -24
- data/docs/doc/Doing/Note.html +7 -7
- data/docs/doc/Doing/Pager.html +4 -4
- data/docs/doc/Doing/Plugins.html +7 -7
- data/docs/doc/Doing/Prompt.html +16 -16
- data/docs/doc/Doing/Section.html +6 -6
- data/docs/doc/Doing/TemplateString.html +8 -8
- data/docs/doc/Doing/Types.html +206 -0
- data/docs/doc/Doing/Util/Backup.html +10 -10
- data/docs/doc/Doing/Util.html +16 -19
- data/docs/doc/Doing/WWID.html +65 -53
- data/docs/doc/Doing.html +4 -4
- data/docs/doc/GLI/Commands/Help.html +185 -0
- data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +17 -17
- data/docs/doc/GLI/Commands.html +5 -3
- data/docs/doc/GLI.html +4 -2
- data/docs/doc/Hash.html +119 -21
- data/docs/doc/Numeric.html +5 -5
- data/docs/doc/PhraseParser/Operator.html +4 -4
- data/docs/doc/PhraseParser/PhraseClause.html +5 -5
- data/docs/doc/PhraseParser/Query.html +10 -10
- data/docs/doc/PhraseParser/QueryParser.html +2 -2
- data/docs/doc/PhraseParser/QueryTransformer.html +2 -2
- data/docs/doc/PhraseParser/TermClause.html +5 -5
- data/docs/doc/PhraseParser.html +1 -1
- data/docs/doc/Status.html +7 -7
- data/docs/doc/String.html +206 -51
- data/docs/doc/Symbol.html +8 -8
- data/docs/doc/Time.html +6 -6
- data/docs/doc/_index.html +51 -14
- data/docs/doc/class_list.html +1 -1
- data/docs/doc/file.README.html +2 -2
- data/docs/doc/index.html +2 -2
- data/docs/doc/method_list.html +348 -252
- data/docs/doc/top-level-namespace.html +2 -93
- data/docs/index.md +1 -1
- data/doing.rdoc +177 -20
- data/example_plugin.rb +2 -2
- data/lib/completion/_doing.zsh +24 -24
- data/lib/completion/doing.bash +31 -20
- data/lib/completion/doing.fish +32 -10
- data/lib/doing/array.rb +5 -4
- data/lib/doing/array_chronify.rb +4 -3
- data/lib/doing/changelog/change.rb +115 -0
- data/lib/doing/changelog/changes.rb +73 -0
- data/lib/doing/changelog/entry.rb +21 -0
- data/lib/doing/changelog/version.rb +97 -0
- data/lib/doing/changelog.rb +6 -0
- data/lib/doing/completion/fish_completion.rb +2 -1
- data/lib/doing/configuration.rb +20 -14
- data/lib/doing/good.rb +64 -0
- data/lib/doing/hash.rb +28 -5
- data/lib/doing/help_monkey_patch.rb +31 -0
- data/lib/doing/hooks.rb +8 -4
- data/lib/doing/item.rb +24 -35
- data/lib/doing/log_adapter.rb +1 -1
- data/lib/doing/pager.rb +1 -1
- data/lib/doing/plugins/export/template_export.rb +9 -3
- 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/prompt.rb +4 -2
- data/lib/doing/string.rb +30 -12
- data/lib/doing/string_chronify.rb +1 -1
- data/lib/doing/template_string.rb +9 -2
- data/lib/doing/types.rb +23 -16
- data/lib/doing/util.rb +12 -11
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +65 -46
- data/lib/doing.rb +3 -0
- data/lib/helpers/threaded_tests.rb +106 -99
- data/lib/helpers/threaded_tests_string.rb +50 -0
- metadata +12 -2
data/docs/doc/Array.html
CHANGED
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
<dl>
|
|
70
70
|
<dt>Inherits:</dt>
|
|
71
71
|
<dd>
|
|
72
|
-
<span class="inheritName">Object</span>
|
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">Array</li>
|
|
78
78
|
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<dl>
|
|
96
96
|
<dt>Defined in:</dt>
|
|
97
97
|
<dd>lib/doing/array.rb<span class="defines">,<br />
|
|
98
|
-
lib/doing/array_chronify.rb</span>
|
|
98
|
+
lib/doing/good.rb,<br /> lib/doing/array_chronify.rb</span>
|
|
99
99
|
</dd>
|
|
100
100
|
</dl>
|
|
101
101
|
|
|
@@ -133,6 +133,29 @@
|
|
|
133
133
|
<li class="public ">
|
|
134
134
|
<span class="summary_signature">
|
|
135
135
|
|
|
136
|
+
<a href="#good%3F-instance_method" title="#good? (instance method)">#<strong>good?</strong> ⇒ Boolean </a>
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
</span>
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
<span class="summary_desc"><div class='inline'><p>Tests if object is nil or empty.</p>
|
|
151
|
+
</div></span>
|
|
152
|
+
|
|
153
|
+
</li>
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
<li class="public ">
|
|
157
|
+
<span class="summary_signature">
|
|
158
|
+
|
|
136
159
|
<a href="#highlight_tags-instance_method" title="#highlight_tags (instance method)">#<strong>highlight_tags</strong>(color = 'cyan') ⇒ String </a>
|
|
137
160
|
|
|
138
161
|
|
|
@@ -300,7 +323,47 @@
|
|
|
300
323
|
|
|
301
324
|
|
|
302
325
|
<div class="method_details first">
|
|
303
|
-
<h3 class="signature first" id="
|
|
326
|
+
<h3 class="signature first" id="good?-instance_method">
|
|
327
|
+
|
|
328
|
+
#<strong>good?</strong> ⇒ <tt>Boolean</tt>
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
</h3><div class="docstring">
|
|
335
|
+
<div class="discussion">
|
|
336
|
+
<p>Tests if object is nil or empty</p>
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
</div>
|
|
340
|
+
</div>
|
|
341
|
+
<div class="tags">
|
|
342
|
+
|
|
343
|
+
<p class="tag_title">Returns:</p>
|
|
344
|
+
<ul class="return">
|
|
345
|
+
|
|
346
|
+
<li>
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
—
|
|
354
|
+
<div class='inline'><p>true if object is defined and
|
|
355
|
+
has content</p>
|
|
356
|
+
</div>
|
|
357
|
+
|
|
358
|
+
</li>
|
|
359
|
+
|
|
360
|
+
</ul>
|
|
361
|
+
|
|
362
|
+
</div>
|
|
363
|
+
</div>
|
|
364
|
+
|
|
365
|
+
<div class="method_details ">
|
|
366
|
+
<h3 class="signature " id="highlight_tags-instance_method">
|
|
304
367
|
|
|
305
368
|
#<strong>highlight_tags</strong>(color = 'cyan') ⇒ <tt><span class='object_link'><a href="String.html" title="String (class)">String</a></span></tt>
|
|
306
369
|
|
|
@@ -402,7 +465,7 @@ with</p>
|
|
|
402
465
|
<div class="method_details ">
|
|
403
466
|
<h3 class="signature " id="nested_hash-instance_method">
|
|
404
467
|
|
|
405
|
-
#<strong>nested_hash</strong>(value) ⇒ <tt>Object</tt>
|
|
468
|
+
#<strong>nested_hash</strong>(value) ⇒ <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
|
|
406
469
|
|
|
407
470
|
|
|
408
471
|
|
|
@@ -512,22 +575,6 @@ with</p>
|
|
|
512
575
|
<p class="tag_title">Parameters:</p>
|
|
513
576
|
<ul class="param">
|
|
514
577
|
|
|
515
|
-
<li>
|
|
516
|
-
|
|
517
|
-
<span class='name'>time</span>
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
<span class='type'>(<tt><span class='object_link'><a href="" title="Array (class)">Array</a></span></tt>)</span>
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
—
|
|
525
|
-
<div class='inline'><p>Array of [days, hours,
|
|
526
|
-
minutes]</p>
|
|
527
|
-
</div>
|
|
528
|
-
|
|
529
|
-
</li>
|
|
530
|
-
|
|
531
578
|
<li>
|
|
532
579
|
|
|
533
580
|
<span class='name'>format</span>
|
|
@@ -540,7 +587,8 @@ minutes]</p>
|
|
|
540
587
|
|
|
541
588
|
|
|
542
589
|
—
|
|
543
|
-
<div class='inline'><p>The format, :dhm, :hm,
|
|
590
|
+
<div class='inline'><p>The format, :dhm, :hm,
|
|
591
|
+
:m, :clock, :natural</p>
|
|
544
592
|
</div>
|
|
545
593
|
|
|
546
594
|
</li>
|
|
@@ -603,16 +651,8 @@ minutes]</p>
|
|
|
603
651
|
<p class="tag_title">Examples:</p>
|
|
604
652
|
|
|
605
653
|
|
|
606
|
-
|
|
607
|
-
</
|
|
608
|
-
|
|
609
|
-
<pre class="example code"><code></code></pre>
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
<p class="example_title"><div class='inline'><p><code>=> ['@one', '@two', '@three']</code></p>
|
|
613
|
-
</div></p>
|
|
614
|
-
|
|
615
|
-
<pre class="example code"><code></code></pre>
|
|
654
|
+
<pre class="example code"><code><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>one</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>@two</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>three</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_to_tags'>to_tags</span>
|
|
655
|
+
<span class='comment'># => ['@one', '@two', '@three']</span></code></pre>
|
|
616
656
|
|
|
617
657
|
</div>
|
|
618
658
|
|
|
@@ -640,7 +680,7 @@ minutes]</p>
|
|
|
640
680
|
<div class="method_details ">
|
|
641
681
|
<h3 class="signature " id="to_tags!-instance_method">
|
|
642
682
|
|
|
643
|
-
#<strong>to_tags!</strong> ⇒ <tt>Object</tt>
|
|
683
|
+
#<strong>to_tags!</strong> ⇒ <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
|
|
644
684
|
|
|
645
685
|
|
|
646
686
|
|
|
@@ -654,7 +694,7 @@ minutes]</p>
|
|
|
654
694
|
</div>
|
|
655
695
|
|
|
656
696
|
<div id="footer">
|
|
657
|
-
Generated on
|
|
697
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
658
698
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
659
699
|
0.9.27 (ruby-3.0.1).
|
|
660
700
|
</div>
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
<dl>
|
|
70
70
|
<dt>Inherits:</dt>
|
|
71
71
|
<dd>
|
|
72
|
-
<span class="inheritName">Object</span>
|
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">BooleanTermParser::Clause</li>
|
|
78
78
|
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
<div class="method_details first">
|
|
235
235
|
<h3 class="signature first" id="operator-instance_method">
|
|
236
236
|
|
|
237
|
-
#<strong>operator</strong> ⇒ <tt>Object</tt>
|
|
237
|
+
#<strong>operator</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
238
238
|
|
|
239
239
|
|
|
240
240
|
|
|
@@ -258,7 +258,7 @@
|
|
|
258
258
|
<div class="method_details ">
|
|
259
259
|
<h3 class="signature " id="term-instance_method">
|
|
260
260
|
|
|
261
|
-
#<strong>term</strong> ⇒ <tt>Object</tt>
|
|
261
|
+
#<strong>term</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
262
262
|
|
|
263
263
|
|
|
264
264
|
|
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
</div>
|
|
284
284
|
|
|
285
285
|
<div id="footer">
|
|
286
|
-
Generated on
|
|
286
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
287
287
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
288
288
|
0.9.27 (ruby-3.0.1).
|
|
289
289
|
</div>
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
<dl>
|
|
70
70
|
<dt>Inherits:</dt>
|
|
71
71
|
<dd>
|
|
72
|
-
<span class="inheritName">Object</span>
|
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">BooleanTermParser::Operator</li>
|
|
78
78
|
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
<div class="method_details first">
|
|
149
149
|
<h3 class="signature first" id="symbol-class_method">
|
|
150
150
|
|
|
151
|
-
.<strong>symbol</strong>(str) ⇒ <tt>Object</tt>
|
|
151
|
+
.<strong>symbol</strong>(str) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
152
152
|
|
|
153
153
|
|
|
154
154
|
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
</div>
|
|
163
163
|
|
|
164
164
|
<div id="footer">
|
|
165
|
-
Generated on
|
|
165
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
166
166
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
167
167
|
0.9.27 (ruby-3.0.1).
|
|
168
168
|
</div>
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
<dl>
|
|
70
70
|
<dt>Inherits:</dt>
|
|
71
71
|
<dd>
|
|
72
|
-
<span class="inheritName">Object</span>
|
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">BooleanTermParser::Query</li>
|
|
78
78
|
|
|
@@ -304,7 +304,7 @@
|
|
|
304
304
|
<div class="method_details first">
|
|
305
305
|
<h3 class="signature first" id="must_not_terms-instance_method">
|
|
306
306
|
|
|
307
|
-
#<strong>must_not_terms</strong> ⇒ <tt>Object</tt>
|
|
307
|
+
#<strong>must_not_terms</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
308
308
|
|
|
309
309
|
|
|
310
310
|
|
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
<div class="method_details ">
|
|
329
329
|
<h3 class="signature " id="must_terms-instance_method">
|
|
330
330
|
|
|
331
|
-
#<strong>must_terms</strong> ⇒ <tt>Object</tt>
|
|
331
|
+
#<strong>must_terms</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
332
332
|
|
|
333
333
|
|
|
334
334
|
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
<div class="method_details ">
|
|
353
353
|
<h3 class="signature " id="should_terms-instance_method">
|
|
354
354
|
|
|
355
|
-
#<strong>should_terms</strong> ⇒ <tt>Object</tt>
|
|
355
|
+
#<strong>should_terms</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
356
356
|
|
|
357
357
|
|
|
358
358
|
|
|
@@ -381,7 +381,7 @@
|
|
|
381
381
|
<div class="method_details first">
|
|
382
382
|
<h3 class="signature first" id="match-instance_method">
|
|
383
383
|
|
|
384
|
-
#<strong>match</strong>(term) ⇒ <tt>Object</tt>
|
|
384
|
+
#<strong>match</strong>(term) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
385
385
|
|
|
386
386
|
|
|
387
387
|
|
|
@@ -393,7 +393,7 @@
|
|
|
393
393
|
<div class="method_details ">
|
|
394
394
|
<h3 class="signature " id="to_elasticsearch-instance_method">
|
|
395
395
|
|
|
396
|
-
#<strong>to_elasticsearch</strong> ⇒ <tt>Object</tt>
|
|
396
|
+
#<strong>to_elasticsearch</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
|
|
@@ -407,7 +407,7 @@
|
|
|
407
407
|
</div>
|
|
408
408
|
|
|
409
409
|
<div id="footer">
|
|
410
|
-
Generated on
|
|
410
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
411
411
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
412
412
|
0.9.27 (ruby-3.0.1).
|
|
413
413
|
</div>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span class="inheritName">Parslet::Parser</span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">Parslet::Parser</li>
|
|
78
78
|
|
|
@@ -125,7 +125,7 @@ parser. In order to do that, a new "clause" node is added to the parse
|
|
|
125
125
|
</div>
|
|
126
126
|
|
|
127
127
|
<div id="footer">
|
|
128
|
-
Generated on
|
|
128
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
129
129
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
130
130
|
0.9.27 (ruby-3.0.1).
|
|
131
131
|
</div>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span class="inheritName">Parslet::Transform</span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">Parslet::Transform</li>
|
|
78
78
|
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
</div>
|
|
115
115
|
|
|
116
116
|
<div id="footer">
|
|
117
|
-
Generated on
|
|
117
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
118
118
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
119
119
|
0.9.27 (ruby-3.0.1).
|
|
120
120
|
</div>
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
</div>
|
|
106
106
|
|
|
107
107
|
<div id="footer">
|
|
108
|
-
Generated on
|
|
108
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
109
109
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
110
110
|
0.9.27 (ruby-3.0.1).
|
|
111
111
|
</div>
|
data/docs/doc/Doing/Color.html
CHANGED
|
@@ -364,7 +364,7 @@ uncoloring strings.</p>
|
|
|
364
364
|
<div class="method_details first">
|
|
365
365
|
<h3 class="signature first" id="coloring-class_method">
|
|
366
366
|
|
|
367
|
-
.<strong>coloring</strong> ⇒ <tt>Object</tt>
|
|
367
|
+
.<strong>coloring</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
368
368
|
|
|
369
369
|
|
|
370
370
|
|
|
@@ -383,7 +383,7 @@ uncoloring strings.</p>
|
|
|
383
383
|
<div class="method_details first">
|
|
384
384
|
<h3 class="signature first" id="attributes-class_method">
|
|
385
385
|
|
|
386
|
-
.<strong>attributes</strong> ⇒ <tt>Object</tt>
|
|
386
|
+
.<strong>attributes</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
387
387
|
|
|
388
388
|
|
|
389
389
|
|
|
@@ -487,7 +487,7 @@ attribute instead.</p>
|
|
|
487
487
|
<div class="method_details ">
|
|
488
488
|
<h3 class="signature " id="uncolor-instance_method">
|
|
489
489
|
|
|
490
|
-
#<strong>uncolor</strong>(string = nil) ⇒ <tt>Object</tt>
|
|
490
|
+
#<strong>uncolor</strong>(string = nil) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
491
491
|
|
|
492
492
|
|
|
493
493
|
|
|
@@ -512,7 +512,7 @@ ANSI-sequences are stripped from the string.</p>
|
|
|
512
512
|
</div>
|
|
513
513
|
|
|
514
514
|
<div id="footer">
|
|
515
|
-
Generated on
|
|
515
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
516
516
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
517
517
|
0.9.27 (ruby-3.0.1).
|
|
518
518
|
</div>
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
<div class="method_details first">
|
|
144
144
|
<h3 class="signature first" id="generate_completion-class_method">
|
|
145
145
|
|
|
146
|
-
.<strong>generate_completion</strong>(type: 'zsh', file: 'stdout') ⇒ <tt>Object</tt>
|
|
146
|
+
.<strong>generate_completion</strong>(type: 'zsh', file: 'stdout') ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
|
|
@@ -206,7 +206,7 @@ stdout</p>
|
|
|
206
206
|
</div>
|
|
207
207
|
|
|
208
208
|
<div id="footer">
|
|
209
|
-
Generated on
|
|
209
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
210
210
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
211
211
|
0.9.27 (ruby-3.0.1).
|
|
212
212
|
</div>
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
<dl>
|
|
70
70
|
<dt>Inherits:</dt>
|
|
71
71
|
<dd>
|
|
72
|
-
<span class="inheritName">Object</span>
|
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">Doing::Configuration</li>
|
|
78
78
|
|
|
@@ -156,8 +156,7 @@
|
|
|
156
156
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>templates</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='lbrace'>{</span>
|
|
157
157
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>default</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='lbrace'>{</span>
|
|
158
158
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>date_format</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>%Y-%m-%d %H:%M</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
159
|
-
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>template</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>%reset%cyan%shortdate %boldwhite%80║ title %
|
|
160
|
-
%yellow%interval%boldred%duration%dark%white%80_14┃ note</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
159
|
+
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>template</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>%reset%cyan%shortdate %boldwhite%80║ title %boldmagenta[%boldwhite%-10section%boldmagenta]%reset %yellow%interval%boldred%duration%white%80_14┃ note</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
161
160
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>wrap_width</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='int'>0</span><span class='comma'>,</span>
|
|
162
161
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>order</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>asc</span><span class='tstring_end'>'</span></span>
|
|
163
162
|
<span class='rbrace'>}</span><span class='comma'>,</span>
|
|
@@ -174,8 +173,7 @@
|
|
|
174
173
|
<span class='rbrace'>}</span><span class='comma'>,</span>
|
|
175
174
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>recent</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='lbrace'>{</span>
|
|
176
175
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>date_format</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>%_I:%M%P</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
177
|
-
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>template</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>%reset%cyan%shortdate %boldwhite%80║ title %
|
|
178
|
-
%yellow%interval%boldred%duration%dark%white%80_14┃ note</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
176
|
+
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>template</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>%reset%cyan%shortdate %boldwhite%80║ title %boldmagenta[%boldwhite%-10section%boldmagenta]%reset %yellow%interval%boldred%duration%white%80_14┃ note</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
179
177
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>wrap_width</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='int'>88</span><span class='comma'>,</span>
|
|
180
178
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>count</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='int'>10</span><span class='comma'>,</span>
|
|
181
179
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>order</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>asc</span><span class='tstring_end'>'</span></span>
|
|
@@ -534,7 +532,7 @@
|
|
|
534
532
|
<li class="public ">
|
|
535
533
|
<span class="summary_signature">
|
|
536
534
|
|
|
537
|
-
<a href="#resolve_key_path-instance_method" title="#resolve_key_path (instance method)">#<strong>resolve_key_path</strong>(keypath, create: false) ⇒ Array </a>
|
|
535
|
+
<a href="#resolve_key_path-instance_method" title="#resolve_key_path (instance method)">#<strong>resolve_key_path</strong>(keypath, create: false, distance: 2) ⇒ Array </a>
|
|
538
536
|
|
|
539
537
|
|
|
540
538
|
|
|
@@ -638,7 +636,7 @@
|
|
|
638
636
|
<div class="method_details first">
|
|
639
637
|
<h3 class="signature first" id="config_file-instance_method">
|
|
640
638
|
|
|
641
|
-
#<strong>config_file</strong> ⇒ <tt>Object</tt>
|
|
639
|
+
#<strong>config_file</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
642
640
|
|
|
643
641
|
|
|
644
642
|
|
|
@@ -652,7 +650,7 @@
|
|
|
652
650
|
<div class="method_details ">
|
|
653
651
|
<h3 class="signature " id="force_answer-instance_method">
|
|
654
652
|
|
|
655
|
-
#<strong>force_answer</strong> ⇒ <tt>Object</tt>
|
|
653
|
+
#<strong>force_answer</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
656
654
|
|
|
657
655
|
|
|
658
656
|
|
|
@@ -666,7 +664,7 @@
|
|
|
666
664
|
<div class="method_details ">
|
|
667
665
|
<h3 class="signature " id="ignore_local=-instance_method">
|
|
668
666
|
|
|
669
|
-
#<strong>ignore_local=</strong>(value) ⇒ <tt>Object</tt> <span class="extras">(writeonly)</span>
|
|
667
|
+
#<strong>ignore_local=</strong>(value) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt> <span class="extras">(writeonly)</span>
|
|
670
668
|
|
|
671
669
|
|
|
672
670
|
|
|
@@ -709,7 +707,7 @@
|
|
|
709
707
|
<div class="method_details ">
|
|
710
708
|
<h3 class="signature " id="settings-instance_method">
|
|
711
709
|
|
|
712
|
-
#<strong>settings</strong> ⇒ <tt>Object</tt> <span class="extras">(readonly)</span>
|
|
710
|
+
#<strong>settings</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt> <span class="extras">(readonly)</span>
|
|
713
711
|
|
|
714
712
|
|
|
715
713
|
|
|
@@ -738,7 +736,7 @@
|
|
|
738
736
|
<div class="method_details first">
|
|
739
737
|
<h3 class="signature first" id="additional_configs-instance_method">
|
|
740
738
|
|
|
741
|
-
#<strong>additional_configs</strong> ⇒ <tt>Object</tt>
|
|
739
|
+
#<strong>additional_configs</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
742
740
|
|
|
743
741
|
|
|
744
742
|
|
|
@@ -789,7 +787,7 @@
|
|
|
789
787
|
<div class="method_details ">
|
|
790
788
|
<h3 class="signature " id="config_dir-instance_method">
|
|
791
789
|
|
|
792
|
-
#<strong>config_dir</strong> ⇒ <tt>Object</tt>
|
|
790
|
+
#<strong>config_dir</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
793
791
|
|
|
794
792
|
|
|
795
793
|
|
|
@@ -801,7 +799,7 @@
|
|
|
801
799
|
<div class="method_details ">
|
|
802
800
|
<h3 class="signature " id="configure-instance_method">
|
|
803
801
|
|
|
804
|
-
#<strong>configure</strong>(opt = {}) ⇒ <tt>Object</tt>
|
|
802
|
+
#<strong>configure</strong>(opt = {}) ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
805
803
|
|
|
806
804
|
|
|
807
805
|
|
|
@@ -844,7 +842,7 @@
|
|
|
844
842
|
<div class="method_details ">
|
|
845
843
|
<h3 class="signature " id="default_config_file-instance_method">
|
|
846
844
|
|
|
847
|
-
#<strong>default_config_file</strong> ⇒ <tt>Object</tt>
|
|
845
|
+
#<strong>default_config_file</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
848
846
|
|
|
849
847
|
|
|
850
848
|
|
|
@@ -956,7 +954,7 @@ defaults.</p>
|
|
|
956
954
|
<div class="method_details ">
|
|
957
955
|
<h3 class="signature " id="resolve_key_path-instance_method">
|
|
958
956
|
|
|
959
|
-
#<strong>resolve_key_path</strong>(keypath, create: false) ⇒ <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>
|
|
957
|
+
#<strong>resolve_key_path</strong>(keypath, create: false, distance: 2) ⇒ <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>
|
|
960
958
|
|
|
961
959
|
|
|
962
960
|
|
|
@@ -1018,7 +1016,7 @@ matched, first match wins)</p>
|
|
|
1018
1016
|
<div class="method_details ">
|
|
1019
1017
|
<h3 class="signature " id="update_deprecated_config-instance_method">
|
|
1020
1018
|
|
|
1021
|
-
#<strong>update_deprecated_config</strong> ⇒ <tt>Object</tt>
|
|
1019
|
+
#<strong>update_deprecated_config</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
|
1022
1020
|
|
|
1023
1021
|
|
|
1024
1022
|
|
|
@@ -1106,7 +1104,7 @@ matched, first match wins)</p>
|
|
|
1106
1104
|
</div>
|
|
1107
1105
|
|
|
1108
1106
|
<div id="footer">
|
|
1109
|
-
Generated on
|
|
1107
|
+
Generated on Sun Jan 23 09:24:05 2022 by
|
|
1110
1108
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1111
1109
|
0.9.27 (ruby-3.0.1).
|
|
1112
1110
|
</div>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span class="inheritName">StandardError</span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">StandardError</li>
|
|
78
78
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sun Jan 23 09:24:05 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>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span class="inheritName">RuntimeError</span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">RuntimeError</li>
|
|
78
78
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sun Jan 23 09:24:05 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>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span class="inheritName">StandardError</span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">StandardError</li>
|
|
78
78
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sun Jan 23 09:24:05 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>
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
<span class="inheritName">StandardError</span>
|
|
73
73
|
|
|
74
74
|
<ul class="fullTree">
|
|
75
|
-
<li>Object</li>
|
|
75
|
+
<li><span class='object_link'><a href="../../Object.html" title="Object (class)">Object</a></span></li>
|
|
76
76
|
|
|
77
77
|
<li class="next">StandardError</li>
|
|
78
78
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sun Jan 23 09:24:05 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>
|