doing 2.1.37 → 2.1.40
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +61 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/Rakefile +7 -1
- data/bin/commands/config.rb +43 -34
- data/bin/commands/done.rb +1 -18
- data/bin/commands/finish.rb +30 -25
- data/bin/commands/grep.rb +3 -14
- data/bin/commands/last.rb +2 -8
- data/bin/commands/meanwhile.rb +13 -6
- data/bin/commands/now.rb +2 -4
- data/bin/commands/on.rb +4 -15
- data/bin/commands/recent.rb +2 -8
- data/bin/commands/reset.rb +24 -1
- data/bin/commands/select.rb +1 -1
- data/bin/commands/show.rb +8 -16
- data/bin/commands/since.rb +1 -12
- data/bin/commands/today.rb +2 -13
- data/bin/commands/view.rb +1 -1
- data/bin/commands/yesterday.rb +2 -13
- data/bin/doing +41 -36
- 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 +166 -20
- data/docs/doc/Doing/Completion.html +1 -1
- data/docs/doc/Doing/Configuration.html +1 -1
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +7 -3
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +7 -3
- data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
- data/docs/doc/Doing/Errors/EmptyInput.html +10 -2
- data/docs/doc/Doing/Errors/HistoryLimitError.html +194 -0
- data/docs/doc/Doing/Errors/InvalidPlugin.html +194 -0
- data/docs/doc/Doing/Errors/MissingBackupFile.html +194 -0
- data/docs/doc/Doing/Errors/NoResults.html +10 -2
- data/docs/doc/Doing/Errors/PluginException.html +1 -1
- data/docs/doc/Doing/Errors/UserCancelled.html +10 -2
- data/docs/doc/Doing/Errors/WrongCommand.html +10 -2
- data/docs/doc/Doing/Errors.html +9 -9
- data/docs/doc/Doing/Hooks.html +1 -1
- data/docs/doc/Doing/Item.html +114 -1576
- data/docs/doc/Doing/Items.html +121 -5
- data/docs/doc/Doing/Logger.html +1 -1
- data/docs/doc/Doing/Note.html +1 -1
- data/docs/doc/Doing/Pager.html +1 -1
- data/docs/doc/Doing/Plugins.html +1 -1
- data/docs/doc/Doing/Prompt.html +2 -2
- data/docs/doc/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +2 -2
- data/docs/doc/Doing/Types.html +1 -1
- data/docs/doc/Doing/Util/Backup.html +5 -5
- data/docs/doc/Doing/Util.html +1 -1
- data/docs/doc/Doing/WWID.html +197 -4033
- 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 +26 -5
- 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 +237 -709
- data/docs/doc/top-level-namespace.html +3 -3
- data/docs/index.md +1 -1
- data/doing.rdoc +54 -7
- data/lib/completion/_doing.zsh +6 -6
- data/lib/completion/doing.bash +10 -10
- data/lib/completion/doing.fish +8 -2
- data/lib/doing/add_options.rb +31 -1
- data/lib/doing/chronify/array.rb +68 -18
- data/lib/doing/chronify/string.rb +3 -1
- data/lib/doing/colors.rb +77 -30
- data/lib/doing/completion.rb +4 -5
- data/lib/doing/errors.rb +51 -35
- data/lib/doing/hooks.rb +3 -3
- data/lib/doing/item/dates.rb +112 -0
- data/lib/doing/item/query.rb +433 -0
- data/lib/doing/item/state.rb +59 -0
- data/lib/doing/item/tags.rb +87 -0
- data/lib/doing/item.rb +6 -537
- data/lib/doing/items.rb +39 -14
- data/lib/doing/plugin_manager.rb +3 -3
- data/lib/doing/plugins/export/template_export.rb +4 -4
- data/lib/doing/plugins/import/cal_to_json.scpt +0 -0
- data/lib/doing/prompt.rb +6 -8
- data/lib/doing/string/tags.rb +8 -2
- data/lib/doing/util_backup.rb +6 -8
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid/display.rb +399 -0
- data/lib/doing/wwid/editor.rb +214 -0
- data/lib/doing/wwid/filetools.rb +186 -0
- data/lib/doing/wwid/filter.rb +218 -0
- data/lib/doing/wwid/guess.rb +87 -0
- data/lib/doing/wwid/interactive.rb +385 -0
- data/lib/doing/wwid/modify.rb +618 -0
- data/lib/doing/wwid/tags.rb +54 -0
- data/lib/doing/wwid/timers.rb +345 -0
- data/lib/doing/wwid/wwidutil.rb +104 -0
- data/lib/doing/wwid.rb +31 -2308
- metadata +19 -2
data/docs/doc/Doing/Color.html
CHANGED
@@ -95,7 +95,7 @@
|
|
95
95
|
|
96
96
|
<h2>Overview</h2><div class="docstring">
|
97
97
|
<div class="discussion">
|
98
|
-
<p>Terminal color functions
|
98
|
+
<p>Terminal output color functions.</p>
|
99
99
|
|
100
100
|
|
101
101
|
</div>
|
@@ -115,13 +115,36 @@
|
|
115
115
|
<dt id="ATTRIBUTES-constant" class="">ATTRIBUTES =
|
116
116
|
<div class="docstring">
|
117
117
|
<div class="discussion">
|
118
|
-
<p
|
118
|
+
<p>All available color names. Available as methods and string extensions.</p>
|
119
119
|
|
120
120
|
|
121
121
|
</div>
|
122
122
|
</div>
|
123
123
|
<div class="tags">
|
124
124
|
|
125
|
+
<div class="examples">
|
126
|
+
<p class="tag_title">Examples:</p>
|
127
|
+
|
128
|
+
|
129
|
+
<p class="example_title"><div class='inline'><p>Use a color as a method. Color reset will be added to end of string.</p>
|
130
|
+
</div></p>
|
131
|
+
|
132
|
+
<pre class="example code"><code><span class='const'><span class='object_link'><a href="" title="Doing::Color (module)">Color</a></span></span><span class='period'>.</span><span class='id identifier rubyid_yellow'>yellow</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>This text is yellow</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>\e[33mThis text is yellow\e[0m</span><span class='tstring_end'>"</span></span></code></pre>
|
133
|
+
|
134
|
+
|
135
|
+
<p class="example_title"><div class='inline'><p>Use a color as a string extension. Color reset added automatically.</p>
|
136
|
+
</div></p>
|
137
|
+
|
138
|
+
<pre class="example code"><code><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>This text is green</span><span class='tstring_end'>'</span></span><span class='period'>.</span><span class='id identifier rubyid_green'>green</span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>\e[1;32mThis text is green\e[0m</span><span class='tstring_end'>"</span></span></code></pre>
|
139
|
+
|
140
|
+
|
141
|
+
<p class="example_title"><div class='inline'><p>Send a text string as a color</p>
|
142
|
+
</div></p>
|
143
|
+
|
144
|
+
<pre class="example code"><code><span class='const'><span class='object_link'><a href="" title="Doing::Color (module)">Color</a></span></span><span class='period'>.</span><span class='id identifier rubyid_send'>send</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>red</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>\e[31m</span><span class='tstring_end'>"</span></span></code></pre>
|
145
|
+
|
146
|
+
</div>
|
147
|
+
|
125
148
|
|
126
149
|
</div>
|
127
150
|
</dt>
|
@@ -186,7 +209,7 @@
|
|
186
209
|
<span class='lbracket'>[</span><span class='symbol'>:redacted</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>0;30;40</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span>
|
187
210
|
<span class='lbracket'>[</span><span class='symbol'>:alert</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>1;31;43</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span>
|
188
211
|
<span class='lbracket'>[</span><span class='symbol'>:error</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>1;37;41</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span>
|
189
|
-
<span class='lbracket'>[</span><span class='symbol'>:default</span><span class='comma'>,</span>
|
212
|
+
<span class='lbracket'>[</span><span class='symbol'>:default</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>0;39</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span>
|
190
213
|
<span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span><span class='lparen'>(</span><span class='op'>&</span><span class='symbol'>:freeze</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
191
214
|
|
192
215
|
<dt id="ATTRIBUTE_NAMES-constant" class="">ATTRIBUTE_NAMES =
|
@@ -208,7 +231,7 @@ uncoloring strings.</p>
|
|
208
231
|
|
209
232
|
</div>
|
210
233
|
</dt>
|
211
|
-
<dd><pre class="code"><span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>\e\[(?:(?:[349]|10)[0-7]|[0-9])?m</span><span class='regexp_end'>/</span></span></pre></dd>
|
234
|
+
<dd><pre class="code"><span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>\e\[(?:(?:[349]|10)[0-7]|[0-9])?m</span><span class='regexp_end'>/</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
212
235
|
|
213
236
|
</dl>
|
214
237
|
|
@@ -239,7 +262,8 @@ uncoloring strings.</p>
|
|
239
262
|
|
240
263
|
|
241
264
|
|
242
|
-
<span class="summary_desc"><div class='inline'
|
265
|
+
<span class="summary_desc"><div class='inline'><p>Enables colored output.</p>
|
266
|
+
</div></span>
|
243
267
|
|
244
268
|
</li>
|
245
269
|
|
@@ -260,7 +284,7 @@ uncoloring strings.</p>
|
|
260
284
|
<li class="public ">
|
261
285
|
<span class="summary_signature">
|
262
286
|
|
263
|
-
<a href="#
|
287
|
+
<a href="#coloring%3F-class_method" title="coloring? (class method)">.<strong>coloring?</strong> ⇒ Boolean </a>
|
264
288
|
|
265
289
|
|
266
290
|
|
@@ -274,7 +298,7 @@ uncoloring strings.</p>
|
|
274
298
|
|
275
299
|
|
276
300
|
|
277
|
-
<span class="summary_desc"><div class='inline'><p>Returns
|
301
|
+
<span class="summary_desc"><div class='inline'><p>Returns true if the coloring function of this module is switched on, false otherwise.</p>
|
278
302
|
</div></span>
|
279
303
|
|
280
304
|
</li>
|
@@ -283,7 +307,7 @@ uncoloring strings.</p>
|
|
283
307
|
<li class="public ">
|
284
308
|
<span class="summary_signature">
|
285
309
|
|
286
|
-
<a href="#
|
310
|
+
<a href="#template-class_method" title="template (class method)">.<strong>template</strong>(input) ⇒ String </a>
|
287
311
|
|
288
312
|
|
289
313
|
|
@@ -297,7 +321,7 @@ uncoloring strings.</p>
|
|
297
321
|
|
298
322
|
|
299
323
|
|
300
|
-
<span class="summary_desc"><div class='inline'><p>
|
324
|
+
<span class="summary_desc"><div class='inline'><p>Convert a template string to a colored string.</p>
|
301
325
|
</div></span>
|
302
326
|
|
303
327
|
</li>
|
@@ -315,6 +339,29 @@ uncoloring strings.</p>
|
|
315
339
|
<li class="public ">
|
316
340
|
<span class="summary_signature">
|
317
341
|
|
342
|
+
<a href="#attributes-instance_method" title="#attributes (instance method)">#<strong>attributes</strong> ⇒ Object </a>
|
343
|
+
|
344
|
+
|
345
|
+
|
346
|
+
</span>
|
347
|
+
|
348
|
+
|
349
|
+
|
350
|
+
|
351
|
+
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
|
356
|
+
<span class="summary_desc"><div class='inline'><p>Returns an array of all Doing::Color attributes as symbols.</p>
|
357
|
+
</div></span>
|
358
|
+
|
359
|
+
</li>
|
360
|
+
|
361
|
+
|
362
|
+
<li class="public ">
|
363
|
+
<span class="summary_signature">
|
364
|
+
|
318
365
|
<a href="#support%3F-instance_method" title="#support? (instance method)">#<strong>support?</strong>(feature) ⇒ Boolean </a>
|
319
366
|
|
320
367
|
|
@@ -376,7 +423,28 @@ uncoloring strings.</p>
|
|
376
423
|
|
377
424
|
|
378
425
|
|
379
|
-
</h3>
|
426
|
+
</h3><div class="docstring">
|
427
|
+
<div class="discussion">
|
428
|
+
<p>Enables colored output</p>
|
429
|
+
|
430
|
+
|
431
|
+
</div>
|
432
|
+
</div>
|
433
|
+
<div class="tags">
|
434
|
+
|
435
|
+
<div class="examples">
|
436
|
+
<p class="tag_title">Examples:</p>
|
437
|
+
|
438
|
+
|
439
|
+
<p class="example_title"><div class='inline'><p>Turn color on or off based on TTY</p>
|
440
|
+
</div></p>
|
441
|
+
|
442
|
+
<pre class="example code"><code><span class='const'><span class='object_link'><a href="../Doing.html" title="Doing (module)">Doing</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="" title="Doing::Color (module)">Color</a></span></span><span class='period'>.</span><span class='id identifier rubyid_coloring'>coloring</span> <span class='op'>=</span> <span class='const'>STDOUT</span><span class='period'>.</span><span class='id identifier rubyid_isatty'>isatty</span></code></pre>
|
443
|
+
|
444
|
+
</div>
|
445
|
+
|
446
|
+
|
447
|
+
</div>
|
380
448
|
</div>
|
381
449
|
|
382
450
|
</div>
|
@@ -387,9 +455,9 @@ uncoloring strings.</p>
|
|
387
455
|
|
388
456
|
|
389
457
|
<div class="method_details first">
|
390
|
-
<h3 class="signature first" id="
|
458
|
+
<h3 class="signature first" id="coloring?-class_method">
|
391
459
|
|
392
|
-
.<strong>
|
460
|
+
.<strong>coloring?</strong> ⇒ <tt>Boolean</tt>
|
393
461
|
|
394
462
|
|
395
463
|
|
@@ -397,21 +465,35 @@ uncoloring strings.</p>
|
|
397
465
|
|
398
466
|
</h3><div class="docstring">
|
399
467
|
<div class="discussion">
|
400
|
-
<p>Returns
|
468
|
+
<p>Returns true if the coloring function of this module
|
469
|
+
is switched on, false otherwise.</p>
|
401
470
|
|
402
471
|
|
403
472
|
</div>
|
404
473
|
</div>
|
405
474
|
<div class="tags">
|
406
475
|
|
476
|
+
<p class="tag_title">Returns:</p>
|
477
|
+
<ul class="return">
|
478
|
+
|
479
|
+
<li>
|
480
|
+
|
481
|
+
|
482
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
483
|
+
|
484
|
+
|
485
|
+
|
486
|
+
</li>
|
487
|
+
|
488
|
+
</ul>
|
407
489
|
|
408
490
|
</div>
|
409
491
|
</div>
|
410
492
|
|
411
493
|
<div class="method_details ">
|
412
|
-
<h3 class="signature " id="
|
494
|
+
<h3 class="signature " id="template-class_method">
|
413
495
|
|
414
|
-
.<strong>
|
496
|
+
.<strong>template</strong>(input) ⇒ <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
|
415
497
|
|
416
498
|
|
417
499
|
|
@@ -419,23 +501,65 @@ uncoloring strings.</p>
|
|
419
501
|
|
420
502
|
</h3><div class="docstring">
|
421
503
|
<div class="discussion">
|
422
|
-
<p>
|
423
|
-
|
504
|
+
<p>Convert a template string to a colored string.
|
505
|
+
Colors are specified with single letters inside
|
506
|
+
curly braces. Uppercase changes background color.</p>
|
507
|
+
|
508
|
+
<p>w: white, k: black, g: green, l: blue, y: yellow, c: cyan,
|
509
|
+
m: magenta, r: red, b: bold, u: underline, i: italic,
|
510
|
+
x: reset (remove background, color, emphasis)</p>
|
424
511
|
|
425
512
|
|
426
513
|
</div>
|
427
514
|
</div>
|
428
515
|
<div class="tags">
|
429
516
|
|
517
|
+
<div class="examples">
|
518
|
+
<p class="tag_title">Examples:</p>
|
519
|
+
|
520
|
+
|
521
|
+
<p class="example_title"><div class='inline'><p>Convert a templated string</p>
|
522
|
+
</div></p>
|
523
|
+
|
524
|
+
<pre class="example code"><code><span class='const'><span class='object_link'><a href="" title="Doing::Color (module)">Color</a></span></span><span class='period'>.</span><span class='id identifier rubyid_template'>template</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>{Rwb}Warning:{x} {w}you look a little {g}ill{x}</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span></code></pre>
|
525
|
+
|
526
|
+
</div>
|
527
|
+
<p class="tag_title">Parameters:</p>
|
528
|
+
<ul class="param">
|
529
|
+
|
530
|
+
<li>
|
531
|
+
|
532
|
+
<span class='name'>input</span>
|
533
|
+
|
534
|
+
|
535
|
+
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>, <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>)</span>
|
536
|
+
|
537
|
+
|
538
|
+
|
539
|
+
—
|
540
|
+
<div class='inline'><p>The template
|
541
|
+
string. If this is an array, the
|
542
|
+
elements will be joined with a
|
543
|
+
space.</p>
|
544
|
+
</div>
|
545
|
+
|
546
|
+
</li>
|
547
|
+
|
548
|
+
</ul>
|
549
|
+
|
430
550
|
<p class="tag_title">Returns:</p>
|
431
551
|
<ul class="return">
|
432
552
|
|
433
553
|
<li>
|
434
554
|
|
435
555
|
|
436
|
-
<span class='type'>(<tt>
|
556
|
+
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
|
557
|
+
|
437
558
|
|
438
559
|
|
560
|
+
—
|
561
|
+
<div class='inline'><p>Colorized string</p>
|
562
|
+
</div>
|
439
563
|
|
440
564
|
</li>
|
441
565
|
|
@@ -451,7 +575,29 @@ is switched on, false otherwise.</p>
|
|
451
575
|
|
452
576
|
|
453
577
|
<div class="method_details first">
|
454
|
-
<h3 class="signature first" id="
|
578
|
+
<h3 class="signature first" id="attributes-instance_method">
|
579
|
+
|
580
|
+
#<strong>attributes</strong> ⇒ <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
|
581
|
+
|
582
|
+
|
583
|
+
|
584
|
+
|
585
|
+
|
586
|
+
</h3><div class="docstring">
|
587
|
+
<div class="discussion">
|
588
|
+
<p>Returns an array of all Doing::Color attributes as symbols.</p>
|
589
|
+
|
590
|
+
|
591
|
+
</div>
|
592
|
+
</div>
|
593
|
+
<div class="tags">
|
594
|
+
|
595
|
+
|
596
|
+
</div>
|
597
|
+
</div>
|
598
|
+
|
599
|
+
<div class="method_details ">
|
600
|
+
<h3 class="signature " id="support?-instance_method">
|
455
601
|
|
456
602
|
#<strong>support?</strong>(feature) ⇒ <tt>Boolean</tt>
|
457
603
|
|
@@ -518,7 +664,7 @@ ANSI-sequences are stripped from the string.</p>
|
|
518
664
|
</div>
|
519
665
|
|
520
666
|
<div id="footer">
|
521
|
-
Generated on
|
667
|
+
Generated on Tue Mar 15 11:14:29 2022 by
|
522
668
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
523
669
|
0.9.27 (ruby-3.0.1).
|
524
670
|
</div>
|
@@ -526,7 +526,7 @@ stdout</p>
|
|
526
526
|
</div>
|
527
527
|
|
528
528
|
<div id="footer">
|
529
|
-
Generated on
|
529
|
+
Generated on Tue Mar 15 11:14:29 2022 by
|
530
530
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
531
531
|
0.9.27 (ruby-3.0.1).
|
532
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 Tue Mar 15 11:14:30 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>
|
@@ -101,6 +101,10 @@
|
|
101
101
|
|
102
102
|
</div>
|
103
103
|
|
104
|
+
<div id="subclasses">
|
105
|
+
<h2>Direct Known Subclasses</h2>
|
106
|
+
<p class="children"><span class='object_link'><a href="EmptyInput.html" title="Doing::Errors::EmptyInput (class)">EmptyInput</a></span>, <span class='object_link'><a href="HistoryLimitError.html" title="Doing::Errors::HistoryLimitError (class)">HistoryLimitError</a></span>, <span class='object_link'><a href="MissingBackupFile.html" title="Doing::Errors::MissingBackupFile (class)">MissingBackupFile</a></span>, <span class='object_link'><a href="NoResults.html" title="Doing::Errors::NoResults (class)">NoResults</a></span>, <span class='object_link'><a href="UserCancelled.html" title="Doing::Errors::UserCancelled (class)">UserCancelled</a></span>, <span class='object_link'><a href="WrongCommand.html" title="Doing::Errors::WrongCommand (class)">WrongCommand</a></span></p>
|
107
|
+
</div>
|
104
108
|
|
105
109
|
|
106
110
|
|
@@ -119,7 +123,7 @@
|
|
119
123
|
<li class="public ">
|
120
124
|
<span class="summary_signature">
|
121
125
|
|
122
|
-
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(msg = nil, level
|
126
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(msg = nil, level: nil, topic: 'Error:', exit_code: 1) ⇒ DoingNoTraceError </a>
|
123
127
|
|
124
128
|
|
125
129
|
|
@@ -151,7 +155,7 @@
|
|
151
155
|
<div class="method_details first">
|
152
156
|
<h3 class="signature first" id="initialize-instance_method">
|
153
157
|
|
154
|
-
#<strong>initialize</strong>(msg = nil, level
|
158
|
+
#<strong>initialize</strong>(msg = nil, level: nil, topic: 'Error:', exit_code: 1) ⇒ <tt><span class='object_link'><a href="" title="Doing::Errors::DoingNoTraceError (class)">DoingNoTraceError</a></span></tt>
|
155
159
|
|
156
160
|
|
157
161
|
|
@@ -176,7 +180,7 @@
|
|
176
180
|
</div>
|
177
181
|
|
178
182
|
<div id="footer">
|
179
|
-
Generated on
|
183
|
+
Generated on Tue Mar 15 11:14:29 2022 by
|
180
184
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
181
185
|
0.9.27 (ruby-3.0.1).
|
182
186
|
</div>
|
@@ -101,6 +101,10 @@
|
|
101
101
|
|
102
102
|
</div>
|
103
103
|
|
104
|
+
<div id="subclasses">
|
105
|
+
<h2>Direct Known Subclasses</h2>
|
106
|
+
<p class="children"><span class='object_link'><a href="InvalidPlugin.html" title="Doing::Errors::InvalidPlugin (class)">InvalidPlugin</a></span></p>
|
107
|
+
</div>
|
104
108
|
|
105
109
|
|
106
110
|
|
@@ -119,7 +123,7 @@
|
|
119
123
|
<li class="public ">
|
120
124
|
<span class="summary_signature">
|
121
125
|
|
122
|
-
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(msg = 'Runtime Error', topic: 'Error:') ⇒ DoingRuntimeError </a>
|
126
|
+
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(msg = 'Runtime Error', exit_code = nil, topic: 'Error:') ⇒ DoingRuntimeError </a>
|
123
127
|
|
124
128
|
|
125
129
|
|
@@ -151,7 +155,7 @@
|
|
151
155
|
<div class="method_details first">
|
152
156
|
<h3 class="signature first" id="initialize-instance_method">
|
153
157
|
|
154
|
-
#<strong>initialize</strong>(msg = 'Runtime Error', topic: 'Error:') ⇒ <tt><span class='object_link'><a href="" title="Doing::Errors::DoingRuntimeError (class)">DoingRuntimeError</a></span></tt>
|
158
|
+
#<strong>initialize</strong>(msg = 'Runtime Error', exit_code = nil, topic: 'Error:') ⇒ <tt><span class='object_link'><a href="" title="Doing::Errors::DoingRuntimeError (class)">DoingRuntimeError</a></span></tt>
|
155
159
|
|
156
160
|
|
157
161
|
|
@@ -176,7 +180,7 @@
|
|
176
180
|
</div>
|
177
181
|
|
178
182
|
<div id="footer">
|
179
|
-
Generated on
|
183
|
+
Generated on Tue Mar 15 11:14:29 2022 by
|
180
184
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
181
185
|
0.9.27 (ruby-3.0.1).
|
182
186
|
</div>
|
@@ -176,7 +176,7 @@
|
|
176
176
|
</div>
|
177
177
|
|
178
178
|
<div id="footer">
|
179
|
-
Generated on
|
179
|
+
Generated on Tue Mar 15 11:14:29 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>
|
@@ -69,13 +69,15 @@
|
|
69
69
|
<dl>
|
70
70
|
<dt>Inherits:</dt>
|
71
71
|
<dd>
|
72
|
-
<span class="inheritName">
|
72
|
+
<span class="inheritName"><span class='object_link'><a href="DoingNoTraceError.html" title="Doing::Errors::DoingNoTraceError (class)">DoingNoTraceError</a></span></span>
|
73
73
|
|
74
74
|
<ul class="fullTree">
|
75
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
|
|
79
|
+
<li class="next"><span class='object_link'><a href="DoingNoTraceError.html" title="Doing::Errors::DoingNoTraceError (class)">DoingNoTraceError</a></span></li>
|
80
|
+
|
79
81
|
<li class="next">Doing::Errors::EmptyInput</li>
|
80
82
|
|
81
83
|
</ul>
|
@@ -145,6 +147,12 @@
|
|
145
147
|
|
146
148
|
|
147
149
|
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
148
156
|
<div id="constructor_details" class="method_details_list">
|
149
157
|
<h2>Constructor Details</h2>
|
150
158
|
|
@@ -176,7 +184,7 @@
|
|
176
184
|
</div>
|
177
185
|
|
178
186
|
<div id="footer">
|
179
|
-
Generated on
|
187
|
+
Generated on Tue Mar 15 11:14:29 2022 by
|
180
188
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
181
189
|
0.9.27 (ruby-3.0.1).
|
182
190
|
</div>
|