doing 2.1.24 → 2.1.25

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +11 -10
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/CHANGELOG.md +17 -0
  6. data/Gemfile.lock +1 -1
  7. data/README.md +1 -1
  8. data/Rakefile +2 -1
  9. data/bin/doing +81 -37
  10. data/docs/doc/Array.html +70 -7
  11. data/docs/doc/BooleanTermParser/Clause.html +5 -5
  12. data/docs/doc/BooleanTermParser/Operator.html +4 -4
  13. data/docs/doc/BooleanTermParser/Query.html +8 -8
  14. data/docs/doc/BooleanTermParser/QueryParser.html +2 -2
  15. data/docs/doc/BooleanTermParser/QueryTransformer.html +2 -2
  16. data/docs/doc/BooleanTermParser.html +1 -1
  17. data/docs/doc/Doing/Color.html +4 -4
  18. data/docs/doc/Doing/Completion.html +2 -2
  19. data/docs/doc/Doing/Configuration.html +14 -16
  20. data/docs/doc/Doing/Errors/DoingNoTraceError.html +2 -2
  21. data/docs/doc/Doing/Errors/DoingRuntimeError.html +2 -2
  22. data/docs/doc/Doing/Errors/DoingStandardError.html +2 -2
  23. data/docs/doc/Doing/Errors/EmptyInput.html +2 -2
  24. data/docs/doc/Doing/Errors/NoResults.html +2 -2
  25. data/docs/doc/Doing/Errors/PluginException.html +3 -3
  26. data/docs/doc/Doing/Errors/UserCancelled.html +2 -2
  27. data/docs/doc/Doing/Errors/WrongCommand.html +2 -2
  28. data/docs/doc/Doing/Errors.html +1 -1
  29. data/docs/doc/Doing/Hooks.html +6 -6
  30. data/docs/doc/Doing/Item.html +50 -16
  31. data/docs/doc/Doing/Items.html +10 -10
  32. data/docs/doc/Doing/LogAdapter.html +24 -24
  33. data/docs/doc/Doing/Note.html +7 -7
  34. data/docs/doc/Doing/Pager.html +4 -4
  35. data/docs/doc/Doing/Plugins.html +7 -7
  36. data/docs/doc/Doing/Prompt.html +14 -14
  37. data/docs/doc/Doing/Section.html +6 -6
  38. data/docs/doc/Doing/TemplateString.html +8 -8
  39. data/docs/doc/Doing/Types.html +6 -1
  40. data/docs/doc/Doing/Util/Backup.html +10 -10
  41. data/docs/doc/Doing/Util.html +15 -15
  42. data/docs/doc/Doing/WWID.html +65 -53
  43. data/docs/doc/Doing.html +3 -3
  44. data/docs/doc/GLI/Commands/Help.html +3 -3
  45. data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +17 -17
  46. data/docs/doc/GLI/Commands.html +1 -1
  47. data/docs/doc/GLI.html +1 -1
  48. data/docs/doc/Hash.html +45 -11
  49. data/docs/doc/Numeric.html +5 -5
  50. data/docs/doc/PhraseParser/Operator.html +4 -4
  51. data/docs/doc/PhraseParser/PhraseClause.html +5 -5
  52. data/docs/doc/PhraseParser/Query.html +10 -10
  53. data/docs/doc/PhraseParser/QueryParser.html +2 -2
  54. data/docs/doc/PhraseParser/QueryTransformer.html +2 -2
  55. data/docs/doc/PhraseParser/TermClause.html +5 -5
  56. data/docs/doc/PhraseParser.html +1 -1
  57. data/docs/doc/Status.html +7 -7
  58. data/docs/doc/String.html +107 -44
  59. data/docs/doc/Symbol.html +8 -8
  60. data/docs/doc/Time.html +6 -6
  61. data/docs/doc/_index.html +41 -18
  62. data/docs/doc/class_list.html +1 -1
  63. data/docs/doc/file.README.html +2 -2
  64. data/docs/doc/index.html +2 -2
  65. data/docs/doc/method_list.html +369 -313
  66. data/docs/doc/top-level-namespace.html +2 -2
  67. data/doing.rdoc +19 -11
  68. data/example_plugin.rb +2 -2
  69. data/lib/completion/_doing.zsh +12 -12
  70. data/lib/completion/doing.bash +2 -2
  71. data/lib/completion/doing.fish +9 -8
  72. data/lib/doing/changelog/changes.rb +1 -1
  73. data/lib/doing/configuration.rb +4 -6
  74. data/lib/doing/good.rb +64 -0
  75. data/lib/doing/hash.rb +4 -0
  76. data/lib/doing/hooks.rb +3 -3
  77. data/lib/doing/item.rb +14 -10
  78. data/lib/doing/plugins/import/calendar_import.rb +1 -1
  79. data/lib/doing/plugins/import/doing_import.rb +1 -1
  80. data/lib/doing/plugins/import/timing_import.rb +1 -1
  81. data/lib/doing/string.rb +1 -1
  82. data/lib/doing/template_string.rb +2 -2
  83. data/lib/doing/types.rb +1 -0
  84. data/lib/doing/util.rb +10 -10
  85. data/lib/doing/version.rb +1 -1
  86. data/lib/doing/wwid.rb +40 -18
  87. data/lib/doing.rb +1 -0
  88. data/lib/helpers/threaded_tests.rb +35 -64
  89. data/lib/helpers/threaded_tests_string.rb +50 -0
  90. metadata +4 -2
@@ -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> &#x21d2; <tt>Object</tt>
307
+ #<strong>must_not_terms</strong> &#x21d2; <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> &#x21d2; <tt>Object</tt>
331
+ #<strong>must_terms</strong> &#x21d2; <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> &#x21d2; <tt>Object</tt>
355
+ #<strong>should_terms</strong> &#x21d2; <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) &#x21d2; <tt>Object</tt>
384
+ #<strong>match</strong>(term) &#x21d2; <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> &#x21d2; <tt>Object</tt>
396
+ #<strong>to_elasticsearch</strong> &#x21d2; <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 Sat Jan 22 17:30:14 2022 by
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 &quot;clause&quot; node is added to the parse
125
125
  </div>
126
126
 
127
127
  <div id="footer">
128
- Generated on Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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>
@@ -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> &#x21d2; <tt>Object</tt>
367
+ .<strong>coloring</strong> &#x21d2; <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> &#x21d2; <tt>Object</tt>
386
+ .<strong>attributes</strong> &#x21d2; <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) &#x21d2; <tt>Object</tt>
490
+ #<strong>uncolor</strong>(string = nil) &#x21d2; <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 Sat Jan 22 17:30:14 2022 by
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: &#39;zsh&#39;, file: &#39;stdout&#39;) &#x21d2; <tt>Object</tt>
146
+ .<strong>generate_completion</strong>(type: &#39;zsh&#39;, file: &#39;stdout&#39;) &#x21d2; <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 Sat Jan 22 17:30:14 2022 by
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'>&#39;</span><span class='tstring_content'>templates</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='lbrace'>{</span>
157
157
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>default</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='lbrace'>{</span>
158
158
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>date_format</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>%Y-%m-%d %H:%M</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
159
- <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>template</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>%reset%cyan%shortdate %boldwhite%80║ title %dark%boldmagenta[%boldwhite%-10section%boldmagenta]%reset
160
- %yellow%interval%boldred%duration%dark%white%80_14┃ note</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
159
+ <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>template</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</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'>&#39;</span></span><span class='comma'>,</span>
161
160
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>wrap_width</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='int'>0</span><span class='comma'>,</span>
162
161
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>order</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>asc</span><span class='tstring_end'>&#39;</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'>&#39;</span><span class='tstring_content'>recent</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='lbrace'>{</span>
176
175
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>date_format</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>%_I:%M%P</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
177
- <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>template</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>%reset%cyan%shortdate %boldwhite%80║ title %dark%boldmagenta[%boldwhite%-10section%boldmagenta]%reset
178
- %yellow%interval%boldred%duration%dark%white%80_14┃ note</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
176
+ <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>template</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</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'>&#39;</span></span><span class='comma'>,</span>
179
177
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>wrap_width</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='int'>88</span><span class='comma'>,</span>
180
178
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>count</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='int'>10</span><span class='comma'>,</span>
181
179
  <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>order</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>asc</span><span class='tstring_end'>&#39;</span></span>
@@ -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> &#x21d2; <tt>Object</tt>
639
+ #<strong>config_file</strong> &#x21d2; <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> &#x21d2; <tt>Object</tt>
653
+ #<strong>force_answer</strong> &#x21d2; <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) &#x21d2; <tt>Object</tt> <span class="extras">(writeonly)</span>
667
+ #<strong>ignore_local=</strong>(value) &#x21d2; <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> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
710
+ #<strong>settings</strong> &#x21d2; <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> &#x21d2; <tt>Object</tt>
739
+ #<strong>additional_configs</strong> &#x21d2; <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> &#x21d2; <tt>Object</tt>
790
+ #<strong>config_dir</strong> &#x21d2; <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 = {}) &#x21d2; <tt>Object</tt>
802
+ #<strong>configure</strong>(opt = {}) &#x21d2; <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> &#x21d2; <tt>Object</tt>
845
+ #<strong>default_config_file</strong> &#x21d2; <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
848
846
 
849
847
 
850
848
 
@@ -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> &#x21d2; <tt>Object</tt>
1019
+ #<strong>update_deprecated_config</strong> &#x21d2; <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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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
 
@@ -213,7 +213,7 @@
213
213
  <div class="method_details first">
214
214
  <h3 class="signature first" id="plugin-instance_method">
215
215
 
216
- #<strong>plugin</strong> &#x21d2; <tt>Object</tt> <span class="extras">(readonly)</span>
216
+ #<strong>plugin</strong> &#x21d2; <tt><span class='object_link'><a href="../../Object.html" title="Object (class)">Object</a></span></tt> <span class="extras">(readonly)</span>
217
217
 
218
218
 
219
219
 
@@ -238,7 +238,7 @@
238
238
  </div>
239
239
 
240
240
  <div id="footer">
241
- Generated on Sat Jan 22 17:30:14 2022 by
241
+ Generated on Sun Jan 23 09:24:05 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>
@@ -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 Sat Jan 22 17:30:14 2022 by
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 Sat Jan 22 17:30:14 2022 by
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>
@@ -181,7 +181,7 @@
181
181
  </div>
182
182
 
183
183
  <div id="footer">
184
- Generated on Sat Jan 22 17:30:14 2022 by
184
+ Generated on Sun Jan 23 09:24:05 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>
@@ -249,7 +249,7 @@
249
249
  <div class="method_details first">
250
250
  <h3 class="signature first" id="insert_hook-class_method">
251
251
 
252
- .<strong>insert_hook</strong>(event, priority, &amp;block) &#x21d2; <tt>Object</tt>
252
+ .<strong>insert_hook</strong>(event, priority, &amp;block) &#x21d2; <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
253
253
 
254
254
 
255
255
 
@@ -261,7 +261,7 @@
261
261
  <div class="method_details ">
262
262
  <h3 class="signature " id="priority_value-class_method">
263
263
 
264
- .<strong>priority_value</strong>(priority) &#x21d2; <tt>Object</tt>
264
+ .<strong>priority_value</strong>(priority) &#x21d2; <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
265
265
 
266
266
 
267
267
 
@@ -283,7 +283,7 @@
283
283
  <div class="method_details ">
284
284
  <h3 class="signature " id="register-class_method">
285
285
 
286
- .<strong>register</strong>(event, priority: DEFAULT_PRIORITY, &amp;block) &#x21d2; <tt>Object</tt>
286
+ .<strong>register</strong>(event, priority: DEFAULT_PRIORITY, &amp;block) &#x21d2; <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
287
287
 
288
288
 
289
289
 
@@ -305,7 +305,7 @@
305
305
  <div class="method_details ">
306
306
  <h3 class="signature " id="register_one-class_method">
307
307
 
308
- .<strong>register_one</strong>(event, priority, &amp;block) &#x21d2; <tt>Object</tt>
308
+ .<strong>register_one</strong>(event, priority, &amp;block) &#x21d2; <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
309
309
 
310
310
 
311
311
 
@@ -340,7 +340,7 @@
340
340
  <div class="method_details ">
341
341
  <h3 class="signature " id="trigger-class_method">
342
342
 
343
- .<strong>trigger</strong>(event, *args) &#x21d2; <tt>Object</tt>
343
+ .<strong>trigger</strong>(event, *args) &#x21d2; <tt><span class='object_link'><a href="../Object.html" title="Object (class)">Object</a></span></tt>
344
344
 
345
345
 
346
346
 
@@ -354,7 +354,7 @@
354
354
  </div>
355
355
 
356
356
  <div id="footer">
357
- Generated on Sat Jan 22 17:30:14 2022 by
357
+ Generated on Sun Jan 23 09:24:05 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>