doing 2.0.25 → 2.1.0pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +18 -15
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/CHANGELOG.md +28 -0
  6. data/Gemfile.lock +8 -1
  7. data/README.md +1 -1
  8. data/Rakefile +23 -4
  9. data/bin/doing +205 -127
  10. data/doc/Array.html +354 -1
  11. data/doc/Doing/Color.html +104 -92
  12. data/doc/Doing/Completion.html +216 -0
  13. data/doc/Doing/Configuration.html +340 -5
  14. data/doc/Doing/Content.html +229 -0
  15. data/doc/Doing/Errors/DoingNoTraceError.html +1 -1
  16. data/doc/Doing/Errors/DoingRuntimeError.html +1 -1
  17. data/doc/Doing/Errors/DoingStandardError.html +1 -1
  18. data/doc/Doing/Errors/EmptyInput.html +1 -1
  19. data/doc/Doing/Errors/NoResults.html +1 -1
  20. data/doc/Doing/Errors/PluginException.html +1 -1
  21. data/doc/Doing/Errors/UserCancelled.html +1 -1
  22. data/doc/Doing/Errors/WrongCommand.html +1 -1
  23. data/doc/Doing/Errors.html +1 -1
  24. data/doc/Doing/Hooks.html +1 -1
  25. data/doc/Doing/Item.html +337 -49
  26. data/doc/Doing/Items.html +444 -35
  27. data/doc/Doing/LogAdapter.html +139 -51
  28. data/doc/Doing/Note.html +253 -22
  29. data/doc/Doing/Pager.html +74 -36
  30. data/doc/Doing/Plugins.html +1 -1
  31. data/doc/Doing/Prompt.html +674 -0
  32. data/doc/Doing/Section.html +354 -0
  33. data/doc/Doing/Util.html +57 -1
  34. data/doc/Doing/WWID.html +477 -670
  35. data/doc/Doing/WWIDFile.html +398 -0
  36. data/doc/Doing.html +5 -5
  37. data/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
  38. data/doc/GLI/Commands.html +1 -1
  39. data/doc/GLI.html +1 -1
  40. data/doc/Hash.html +97 -1
  41. data/doc/Status.html +37 -3
  42. data/doc/String.html +599 -23
  43. data/doc/Symbol.html +3 -3
  44. data/doc/Time.html +1 -1
  45. data/doc/_index.html +22 -1
  46. data/doc/class_list.html +1 -1
  47. data/doc/file.README.html +8 -2
  48. data/doc/index.html +8 -2
  49. data/doc/method_list.html +453 -173
  50. data/doc/top-level-namespace.html +1 -1
  51. data/doing.gemspec +3 -0
  52. data/doing.rdoc +40 -12
  53. data/example_plugin.rb +3 -3
  54. data/lib/completion/_doing.zsh +1 -1
  55. data/lib/completion/doing.bash +8 -8
  56. data/lib/completion/doing.fish +1 -1
  57. data/lib/doing/array.rb +36 -0
  58. data/lib/doing/colors.rb +70 -66
  59. data/lib/doing/completion.rb +6 -0
  60. data/lib/doing/configuration.rb +69 -28
  61. data/lib/doing/hash.rb +37 -0
  62. data/lib/doing/item.rb +77 -12
  63. data/lib/doing/items.rb +125 -0
  64. data/lib/doing/log_adapter.rb +55 -3
  65. data/lib/doing/note.rb +53 -1
  66. data/lib/doing/pager.rb +49 -38
  67. data/lib/doing/plugins/export/markdown_export.rb +4 -4
  68. data/lib/doing/plugins/export/template_export.rb +2 -2
  69. data/lib/doing/plugins/import/calendar_import.rb +4 -4
  70. data/lib/doing/plugins/import/doing_import.rb +5 -7
  71. data/lib/doing/plugins/import/timing_import.rb +3 -3
  72. data/lib/doing/prompt.rb +206 -0
  73. data/lib/doing/section.rb +30 -0
  74. data/lib/doing/string.rb +103 -27
  75. data/lib/doing/util.rb +14 -6
  76. data/lib/doing/version.rb +1 -1
  77. data/lib/doing/wwid.rb +306 -621
  78. data/lib/doing.rb +6 -2
  79. data/lib/examples/plugins/capture_thing_import.rb +162 -0
  80. metadata +73 -5
  81. data/lib/doing/wwidfile.rb +0 -117
@@ -299,6 +299,51 @@
299
299
 
300
300
 
301
301
 
302
+ <span class="summary_desc"><div class='inline'></div></span>
303
+
304
+ </li>
305
+
306
+
307
+ <li class="public ">
308
+ <span class="summary_signature">
309
+
310
+ <a href="#choose_config-instance_method" title="#choose_config (instance method)">#<strong>choose_config</strong> &#x21d2; String </a>
311
+
312
+
313
+
314
+ </span>
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+ <span class="summary_desc"><div class='inline'><p>Present a menu if there are multiple configs found.</p>
325
+ </div></span>
326
+
327
+ </li>
328
+
329
+
330
+ <li class="public ">
331
+ <span class="summary_signature">
332
+
333
+ <a href="#config_dir-instance_method" title="#config_dir (instance method)">#<strong>config_dir</strong> &#x21d2; Object </a>
334
+
335
+
336
+
337
+ </span>
338
+
339
+
340
+
341
+
342
+
343
+
344
+
345
+
346
+
302
347
  <span class="summary_desc"><div class='inline'></div></span>
303
348
 
304
349
  </li>
@@ -368,6 +413,28 @@
368
413
  <span class="summary_desc"><div class='inline'><p>Read user configuration and merge with defaults.</p>
369
414
  </div></span>
370
415
 
416
+ </li>
417
+
418
+
419
+ <li class="public ">
420
+ <span class="summary_signature">
421
+
422
+ <a href="#default_config_file-instance_method" title="#default_config_file (instance method)">#<strong>default_config_file</strong> &#x21d2; Object </a>
423
+
424
+
425
+
426
+ </span>
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+ <span class="summary_desc"><div class='inline'></div></span>
437
+
371
438
  </li>
372
439
 
373
440
 
@@ -422,7 +489,7 @@
422
489
  <li class="public ">
423
490
  <span class="summary_signature">
424
491
 
425
- <a href="#value_for_key-instance_method" title="#value_for_key (instance method)">#<strong>value_for_key</strong>(keypath = &#39;&#39;) &#x21d2; Object </a>
492
+ <a href="#resolve_key_path-instance_method" title="#resolve_key_path (instance method)">#<strong>resolve_key_path</strong>(keypath) &#x21d2; Array </a>
426
493
 
427
494
 
428
495
 
@@ -436,7 +503,54 @@
436
503
 
437
504
 
438
505
 
439
- <span class="summary_desc"><div class='inline'></div></span>
506
+ <span class="summary_desc"><div class='inline'><p>Resolve a fuzzy-matched key path.</p>
507
+ </div></span>
508
+
509
+ </li>
510
+
511
+
512
+ <li class="public ">
513
+ <span class="summary_signature">
514
+
515
+ <a href="#update_deprecated_config-instance_method" title="#update_deprecated_config (instance method)">#<strong>update_deprecated_config</strong> &#x21d2; Object </a>
516
+
517
+
518
+
519
+ </span>
520
+
521
+
522
+
523
+
524
+
525
+
526
+
527
+
528
+
529
+ <span class="summary_desc"><div class='inline'><p>Method for transitioning from ~/.doingrc to ~/.config/doing/config.yml.</p>
530
+ </div></span>
531
+
532
+ </li>
533
+
534
+
535
+ <li class="public ">
536
+ <span class="summary_signature">
537
+
538
+ <a href="#value_for_key-instance_method" title="#value_for_key (instance method)">#<strong>value_for_key</strong>(keypath = &#39;&#39;) &#x21d2; Hash </a>
539
+
540
+
541
+
542
+ </span>
543
+
544
+
545
+
546
+
547
+
548
+
549
+
550
+
551
+
552
+ <span class="summary_desc"><div class='inline'><p>Get the value for a fuzzy-matched key path.</p>
553
+ </div></span>
440
554
 
441
555
  </li>
442
556
 
@@ -557,6 +671,57 @@
557
671
 
558
672
 
559
673
 
674
+ </h3>
675
+ </div>
676
+
677
+ <div class="method_details ">
678
+ <h3 class="signature " id="choose_config-instance_method">
679
+
680
+ #<strong>choose_config</strong> &#x21d2; <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
681
+
682
+
683
+
684
+
685
+
686
+ </h3><div class="docstring">
687
+ <div class="discussion">
688
+ <p>Present a menu if there are multiple configs found</p>
689
+
690
+
691
+ </div>
692
+ </div>
693
+ <div class="tags">
694
+
695
+ <p class="tag_title">Returns:</p>
696
+ <ul class="return">
697
+
698
+ <li>
699
+
700
+
701
+ <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
702
+
703
+
704
+
705
+ &mdash;
706
+ <div class='inline'><p>file path</p>
707
+ </div>
708
+
709
+ </li>
710
+
711
+ </ul>
712
+
713
+ </div>
714
+ </div>
715
+
716
+ <div class="method_details ">
717
+ <h3 class="signature " id="config_dir-instance_method">
718
+
719
+ #<strong>config_dir</strong> &#x21d2; <tt>Object</tt>
720
+
721
+
722
+
723
+
724
+
560
725
  </h3>
561
726
  </div>
562
727
 
@@ -624,6 +789,40 @@
624
789
  </ul>
625
790
 
626
791
 
792
+ </div>
793
+ </div>
794
+
795
+ <div class="method_details ">
796
+ <h3 class="signature " id="default_config_file-instance_method">
797
+
798
+ #<strong>default_config_file</strong> &#x21d2; <tt>Object</tt>
799
+
800
+
801
+
802
+
803
+
804
+ </h3><div class="docstring">
805
+ <div class="discussion">
806
+
807
+
808
+ </div>
809
+ </div>
810
+ <div class="tags">
811
+
812
+ <p class="tag_title">Raises:</p>
813
+ <ul class="raise">
814
+
815
+ <li>
816
+
817
+
818
+ <span class='type'>(<tt>DoingRuntimeError</tt>)</span>
819
+
820
+
821
+
822
+ </li>
823
+
824
+ </ul>
825
+
627
826
  </div>
628
827
  </div>
629
828
 
@@ -650,19 +849,155 @@
650
849
  <div class="tags">
651
850
 
652
851
 
852
+ </div>
853
+ </div>
854
+
855
+ <div class="method_details ">
856
+ <h3 class="signature " id="resolve_key_path-instance_method">
857
+
858
+ #<strong>resolve_key_path</strong>(keypath) &#x21d2; <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>
859
+
860
+
861
+
862
+
863
+
864
+ </h3><div class="docstring">
865
+ <div class="discussion">
866
+ <p>Resolve a fuzzy-matched key path</p>
867
+
868
+
869
+ </div>
870
+ </div>
871
+ <div class="tags">
872
+ <p class="tag_title">Parameters:</p>
873
+ <ul class="param">
874
+
875
+ <li>
876
+
877
+ <span class='name'>keypath</span>
878
+
879
+
880
+ <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
881
+
882
+
883
+
884
+ &mdash;
885
+ <div class='inline'><p>A dot-separated key
886
+ path, e.g.
887
+ &quot;plugins.plugin_path&quot;. Will also
888
+ work with &quot;plug.path&quot; (fuzzy
889
+ matched, first match wins)</p>
890
+ </div>
891
+
892
+ </li>
893
+
894
+ </ul>
895
+
896
+ <p class="tag_title">Returns:</p>
897
+ <ul class="return">
898
+
899
+ <li>
900
+
901
+
902
+ <span class='type'>(<tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>)</span>
903
+
904
+
905
+
906
+ &mdash;
907
+ <div class='inline'><p>ordered array of resolved keys</p>
908
+ </div>
909
+
910
+ </li>
911
+
912
+ </ul>
913
+
914
+ </div>
915
+ </div>
916
+
917
+ <div class="method_details ">
918
+ <h3 class="signature " id="update_deprecated_config-instance_method">
919
+
920
+ #<strong>update_deprecated_config</strong> &#x21d2; <tt>Object</tt>
921
+
922
+
923
+
924
+
925
+
926
+ </h3><div class="docstring">
927
+ <div class="discussion">
928
+ <p>Method for transitioning from ~/.doingrc to ~/.config/doing/config.yml</p>
929
+
930
+
931
+ </div>
932
+ </div>
933
+ <div class="tags">
934
+
935
+
653
936
  </div>
654
937
  </div>
655
938
 
656
939
  <div class="method_details ">
657
940
  <h3 class="signature " id="value_for_key-instance_method">
658
941
 
659
- #<strong>value_for_key</strong>(keypath = &#39;&#39;) &#x21d2; <tt>Object</tt>
942
+ #<strong>value_for_key</strong>(keypath = &#39;&#39;) &#x21d2; <tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>
660
943
 
661
944
 
662
945
 
663
946
 
664
947
 
665
- </h3>
948
+ </h3><div class="docstring">
949
+ <div class="discussion">
950
+ <p>Get the value for a fuzzy-matched key path</p>
951
+
952
+
953
+ </div>
954
+ </div>
955
+ <div class="tags">
956
+ <p class="tag_title">Parameters:</p>
957
+ <ul class="param">
958
+
959
+ <li>
960
+
961
+ <span class='name'>keypath</span>
962
+
963
+
964
+ <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
965
+
966
+
967
+ <em class="default">(defaults to: <tt>&#39;&#39;</tt>)</em>
968
+
969
+
970
+ &mdash;
971
+ <div class='inline'><p>A dot-separated key
972
+ path, e.g.
973
+ &quot;plugins.plugin_path&quot;. Will also
974
+ work with &quot;plug.path&quot; (fuzzy
975
+ matched, first match wins)</p>
976
+ </div>
977
+
978
+ </li>
979
+
980
+ </ul>
981
+
982
+ <p class="tag_title">Returns:</p>
983
+ <ul class="return">
984
+
985
+ <li>
986
+
987
+
988
+ <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
989
+
990
+
991
+
992
+ &mdash;
993
+ <div class='inline'><p>Config value</p>
994
+ </div>
995
+
996
+ </li>
997
+
998
+ </ul>
999
+
1000
+ </div>
666
1001
  </div>
667
1002
 
668
1003
  </div>
@@ -670,7 +1005,7 @@
670
1005
  </div>
671
1006
 
672
1007
  <div id="footer">
673
- Generated on Thu Nov 18 16:39:12 2021 by
1008
+ Generated on Sat Nov 27 10:06:03 2021 by
674
1009
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
675
1010
  0.9.26 (ruby-3.0.1).
676
1011
  </div>
@@ -0,0 +1,229 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>
7
+ Class: Doing::Content
8
+
9
+ &mdash; Documentation by YARD 0.9.26
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" />
14
+
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" />
16
+
17
+ <script type="text/javascript">
18
+ pathId = "Doing::Content";
19
+ relpath = '../';
20
+ </script>
21
+
22
+
23
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
24
+
25
+ <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
26
+
27
+
28
+ </head>
29
+ <body>
30
+ <div class="nav_wrap">
31
+ <iframe id="nav" src="../class_list.html?1"></iframe>
32
+ <div id="resizer"></div>
33
+ </div>
34
+
35
+ <div id="main" tabindex="-1">
36
+ <div id="header">
37
+ <div id="menu">
38
+
39
+ <a href="../_index.html">Index (C)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../Doing.html" title="Doing (module)">Doing</a></span></span>
41
+ &raquo;
42
+ <span class="title">Content</span>
43
+
44
+ </div>
45
+
46
+ <div id="search">
47
+
48
+ <a class="full_list_link" id="class_list_link"
49
+ href="../class_list.html">
50
+
51
+ <svg width="24" height="24">
52
+ <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
+ <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
+ <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
+ </svg>
56
+ </a>
57
+
58
+ </div>
59
+ <div class="clear"></div>
60
+ </div>
61
+
62
+ <div id="content"><h1>Class: Doing::Content
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+ <dl>
70
+ <dt>Inherits:</dt>
71
+ <dd>
72
+ <span class="inheritName"><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></span>
73
+
74
+ <ul class="fullTree">
75
+ <li>Object</li>
76
+
77
+ <li class="next"><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></li>
78
+
79
+ <li class="next">Doing::Content</li>
80
+
81
+ </ul>
82
+ <a href="#" class="inheritanceTree">show all</a>
83
+
84
+ </dd>
85
+ </dl>
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <dl>
98
+ <dt>Defined in:</dt>
99
+ <dd>lib/doing/content.rb</dd>
100
+ </dl>
101
+
102
+ </div>
103
+
104
+ <h2>Overview</h2><div class="docstring">
105
+ <div class="discussion">
106
+ <p>Content hash</p>
107
+
108
+
109
+ </div>
110
+ </div>
111
+ <div class="tags">
112
+
113
+
114
+ </div>
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+ <h2>
123
+ Instance Method Summary
124
+ <small><a href="#" class="summary_toggle">collapse</a></small>
125
+ </h2>
126
+
127
+ <ul class="summary">
128
+
129
+ <li class="public ">
130
+ <span class="summary_signature">
131
+
132
+ <a href="#inspect-instance_method" title="#inspect (instance method)">#<strong>inspect</strong> &#x21d2; Object </a>
133
+
134
+
135
+
136
+ </span>
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+ <span class="summary_desc"><div class='inline'></div></span>
147
+
148
+ </li>
149
+
150
+
151
+ <li class="public ">
152
+ <span class="summary_signature">
153
+
154
+ <a href="#sections-instance_method" title="#sections (instance method)">#<strong>sections</strong> &#x21d2; Object </a>
155
+
156
+
157
+
158
+ </span>
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+ <span class="summary_desc"><div class='inline'></div></span>
169
+
170
+ </li>
171
+
172
+
173
+ </ul>
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+ <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></h3>
186
+ <p class="inherited"><span class='object_link'><a href="../Hash.html#deep_freeze-instance_method" title="Hash#deep_freeze (method)">#deep_freeze</a></span>, <span class='object_link'><a href="../Hash.html#deep_freeze!-instance_method" title="Hash#deep_freeze! (method)">#deep_freeze!</a></span>, <span class='object_link'><a href="../Hash.html#stringify_keys-instance_method" title="Hash#stringify_keys (method)">#stringify_keys</a></span>, <span class='object_link'><a href="../Hash.html#symbolize_keys-instance_method" title="Hash#symbolize_keys (method)">#symbolize_keys</a></span></p>
187
+
188
+
189
+ <div id="instance_method_details" class="method_details_list">
190
+ <h2>Instance Method Details</h2>
191
+
192
+
193
+ <div class="method_details first">
194
+ <h3 class="signature first" id="inspect-instance_method">
195
+
196
+ #<strong>inspect</strong> &#x21d2; <tt>Object</tt>
197
+
198
+
199
+
200
+
201
+
202
+ </h3>
203
+ </div>
204
+
205
+ <div class="method_details ">
206
+ <h3 class="signature " id="sections-instance_method">
207
+
208
+ #<strong>sections</strong> &#x21d2; <tt>Object</tt>
209
+
210
+
211
+
212
+
213
+
214
+ </h3>
215
+ </div>
216
+
217
+ </div>
218
+
219
+ </div>
220
+
221
+ <div id="footer">
222
+ Generated on Thu Nov 25 08:42:27 2021 by
223
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
224
+ 0.9.26 (ruby-3.0.1).
225
+ </div>
226
+
227
+ </div>
228
+ </body>
229
+ </html>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Thu Nov 18 16:39:12 2021 by
179
+ Generated on Sat Nov 27 10:06:03 2021 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.26 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Thu Nov 18 16:39:12 2021 by
179
+ Generated on Sat Nov 27 10:06:03 2021 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.26 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Thu Nov 18 16:39:12 2021 by
179
+ Generated on Sat Nov 27 10:06:03 2021 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.26 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Thu Nov 18 16:39:12 2021 by
179
+ Generated on Sat Nov 27 10:06:03 2021 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.26 (ruby-3.0.1).
182
182
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Thu Nov 18 16:39:12 2021 by
179
+ Generated on Sat Nov 27 10:06:03 2021 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.26 (ruby-3.0.1).
182
182
  </div>
@@ -238,7 +238,7 @@
238
238
  </div>
239
239
 
240
240
  <div id="footer">
241
- Generated on Thu Nov 18 16:39:12 2021 by
241
+ Generated on Sat Nov 27 10:06:03 2021 by
242
242
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
243
243
  0.9.26 (ruby-3.0.1).
244
244
  </div>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
 
178
178
  <div id="footer">
179
- Generated on Thu Nov 18 16:39:12 2021 by
179
+ Generated on Sat Nov 27 10:06:03 2021 by
180
180
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
181
181
  0.9.26 (ruby-3.0.1).
182
182
  </div>