doing 2.1.12 → 2.1.16

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.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/.irbrc +1 -0
  3. data/.yardoc/checksums +16 -14
  4. data/.yardoc/object_types +0 -0
  5. data/.yardoc/objects/root.dat +0 -0
  6. data/CHANGELOG.md +67 -0
  7. data/Gemfile.lock +9 -2
  8. data/README.md +56 -19
  9. data/bin/doing +317 -113
  10. data/docs/doc/Array.html +117 -3
  11. data/docs/doc/BooleanTermParser/Clause.html +1 -1
  12. data/docs/doc/BooleanTermParser/Operator.html +1 -1
  13. data/docs/doc/BooleanTermParser/Query.html +1 -1
  14. data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
  15. data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
  16. data/docs/doc/BooleanTermParser.html +1 -1
  17. data/docs/doc/Doing/Color.html +1 -1
  18. data/docs/doc/Doing/Completion.html +1 -1
  19. data/docs/doc/Doing/Configuration.html +7 -4
  20. data/docs/doc/Doing/Errors/DoingNoTraceError.html +1 -1
  21. data/docs/doc/Doing/Errors/DoingRuntimeError.html +1 -1
  22. data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
  23. data/docs/doc/Doing/Errors/EmptyInput.html +1 -1
  24. data/docs/doc/Doing/Errors/NoResults.html +1 -1
  25. data/docs/doc/Doing/Errors/PluginException.html +1 -1
  26. data/docs/doc/Doing/Errors/UserCancelled.html +1 -1
  27. data/docs/doc/Doing/Errors/WrongCommand.html +1 -1
  28. data/docs/doc/Doing/Errors.html +1 -1
  29. data/docs/doc/Doing/Hooks.html +1 -1
  30. data/docs/doc/Doing/Item.html +337 -14
  31. data/docs/doc/Doing/Items.html +66 -2
  32. data/docs/doc/Doing/LogAdapter.html +1 -1
  33. data/docs/doc/Doing/Note.html +2 -2
  34. data/docs/doc/Doing/Pager.html +1 -1
  35. data/docs/doc/Doing/Plugins.html +1 -1
  36. data/docs/doc/Doing/Prompt.html +103 -1
  37. data/docs/doc/Doing/Section.html +1 -1
  38. data/docs/doc/Doing/TemplateString.html +2 -2
  39. data/docs/doc/Doing/Util/Backup.html +84 -1
  40. data/docs/doc/Doing/Util.html +1 -1
  41. data/docs/doc/Doing/WWID.html +214 -35
  42. data/docs/doc/Doing.html +3 -3
  43. data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
  44. data/docs/doc/GLI/Commands.html +1 -1
  45. data/docs/doc/GLI.html +1 -1
  46. data/docs/doc/Hash.html +1 -1
  47. data/docs/doc/Numeric.html +279 -0
  48. data/docs/doc/PhraseParser/Operator.html +1 -1
  49. data/docs/doc/PhraseParser/PhraseClause.html +1 -1
  50. data/docs/doc/PhraseParser/Query.html +1 -1
  51. data/docs/doc/PhraseParser/QueryParser.html +1 -1
  52. data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
  53. data/docs/doc/PhraseParser/TermClause.html +1 -1
  54. data/docs/doc/PhraseParser.html +1 -1
  55. data/docs/doc/Status.html +1 -1
  56. data/docs/doc/String.html +881 -138
  57. data/docs/doc/Symbol.html +1 -1
  58. data/docs/doc/Time.html +1 -1
  59. data/docs/doc/_index.html +14 -9
  60. data/docs/doc/class_list.html +1 -1
  61. data/docs/doc/file.README.html +41 -15
  62. data/docs/doc/index.html +41 -15
  63. data/docs/doc/method_list.html +408 -256
  64. data/docs/doc/top-level-namespace.html +2 -2
  65. data/docs/index.md +56 -19
  66. data/doing.gemspec +2 -0
  67. data/doing.rdoc +257 -48
  68. data/example_plugin.rb +2 -4
  69. data/lib/completion/_doing.zsh +31 -27
  70. data/lib/completion/doing.bash +50 -39
  71. data/lib/completion/doing.fish +37 -7
  72. data/lib/doing/array_chronify.rb +57 -0
  73. data/lib/doing/configuration.rb +4 -1
  74. data/lib/doing/item.rb +176 -0
  75. data/lib/doing/log_adapter.rb +1 -1
  76. data/lib/doing/numeric_chronify.rb +40 -0
  77. data/lib/doing/plugins/export/dayone_export.rb +1 -1
  78. data/lib/doing/plugins/export/json_export.rb +2 -2
  79. data/lib/doing/plugins/export/template_export.rb +47 -90
  80. data/lib/doing/plugins/import/calendar_import.rb +13 -1
  81. data/lib/doing/plugins/import/doing_import.rb +12 -1
  82. data/lib/doing/plugins/import/timing_import.rb +13 -1
  83. data/lib/doing/prompt.rb +54 -1
  84. data/lib/doing/string.rb +97 -33
  85. data/lib/doing/string_chronify.rb +112 -14
  86. data/lib/doing/template_string.rb +1 -1
  87. data/lib/doing/time.rb +6 -6
  88. data/lib/doing/util_backup.rb +1 -1
  89. data/lib/doing/version.rb +1 -1
  90. data/lib/doing/wwid.rb +128 -103
  91. data/lib/doing.rb +36 -31
  92. data/lib/examples/plugins/say_export.rb +1 -4
  93. metadata +46 -2
@@ -236,6 +236,28 @@
236
236
  <li class="public ">
237
237
  <span class="summary_signature">
238
238
 
239
+ <a href="#calculate_end_date-instance_method" title="#calculate_end_date (instance method)">#<strong>calculate_end_date</strong>(opt) &#x21d2; Object </a>
240
+
241
+
242
+
243
+ </span>
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+ <span class="summary_desc"><div class='inline'></div></span>
254
+
255
+ </li>
256
+
257
+
258
+ <li class="public ">
259
+ <span class="summary_signature">
260
+
239
261
  <a href="#duration-instance_method" title="#duration (instance method)">#<strong>duration</strong> &#x21d2; Object </a>
240
262
 
241
263
 
@@ -299,6 +321,29 @@
299
321
  <span class="summary_desc"><div class='inline'><p>Test for equality between items.</p>
300
322
  </div></span>
301
323
 
324
+ </li>
325
+
326
+
327
+ <li class="public ">
328
+ <span class="summary_signature">
329
+
330
+ <a href="#expand_date_tags-instance_method" title="#expand_date_tags (instance method)">#<strong>expand_date_tags</strong>(additional_tags = nil) &#x21d2; Object </a>
331
+
332
+
333
+
334
+ </span>
335
+
336
+
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+ <span class="summary_desc"><div class='inline'><p>Updates the title of the Item by expanding natural language dates within configured date tags (tags whose value is expected to be a date).</p>
345
+ </div></span>
346
+
302
347
  </li>
303
348
 
304
349
 
@@ -328,7 +373,7 @@
328
373
  <li class="public ">
329
374
  <span class="summary_signature">
330
375
 
331
- <a href="#ignore_case-instance_method" title="#ignore_case (instance method)">#<strong>ignore_case</strong>(search, case_type) &#x21d2; Object </a>
376
+ <a href="#ignore_case-instance_method" title="#ignore_case (instance method)">#<strong>ignore_case</strong>(search, case_type) &#x21d2; Boolean </a>
332
377
 
333
378
 
334
379
 
@@ -342,7 +387,8 @@
342
387
 
343
388
 
344
389
 
345
- <span class="summary_desc"><div class='inline'></div></span>
390
+ <span class="summary_desc"><div class='inline'><p>Determine if case should be ignored for searches.</p>
391
+ </div></span>
346
392
 
347
393
  </li>
348
394
 
@@ -504,7 +550,8 @@
504
550
 
505
551
 
506
552
 
507
- <span class="summary_desc"><div class='inline'></div></span>
553
+ <span class="summary_desc"><div class='inline'><p>Test if item is included in never_finish config and thus should not receive a @done tag.</p>
554
+ </div></span>
508
555
 
509
556
  </li>
510
557
 
@@ -526,7 +573,8 @@
526
573
 
527
574
 
528
575
 
529
- <span class="summary_desc"><div class='inline'></div></span>
576
+ <span class="summary_desc"><div class='inline'><p>Test if item is included in never_time config and thus should not receive a date on the @done tag.</p>
577
+ </div></span>
530
578
 
531
579
  </li>
532
580
 
@@ -557,7 +605,7 @@
557
605
  <li class="public ">
558
606
  <span class="summary_signature">
559
607
 
560
- <a href="#tag_array-instance_method" title="#tag_array (instance method)">#<strong>tag_array</strong> &#x21d2; Object </a>
608
+ <a href="#tag_array-instance_method" title="#tag_array (instance method)">#<strong>tag_array</strong> &#x21d2; Array </a>
561
609
 
562
610
 
563
611
 
@@ -571,7 +619,31 @@
571
619
 
572
620
 
573
621
 
574
- <span class="summary_desc"><div class='inline'></div></span>
622
+ <span class="summary_desc"><div class='inline'><p>convert tags on item to an array with @ symbols removed.</p>
623
+ </div></span>
624
+
625
+ </li>
626
+
627
+
628
+ <li class="public ">
629
+ <span class="summary_signature">
630
+
631
+ <a href="#tag_values%3F-instance_method" title="#tag_values? (instance method)">#<strong>tag_values?</strong>(queries, bool = :and, negate: false) &#x21d2; Boolean </a>
632
+
633
+
634
+
635
+ </span>
636
+
637
+
638
+
639
+
640
+
641
+
642
+
643
+
644
+
645
+ <span class="summary_desc"><div class='inline'><p>Test if item matches tag values.</p>
646
+ </div></span>
575
647
 
576
648
  </li>
577
649
 
@@ -851,7 +923,19 @@ the item belongs</p>
851
923
 
852
924
 
853
925
  <div class="method_details first">
854
- <h3 class="signature first" id="duration-instance_method">
926
+ <h3 class="signature first" id="calculate_end_date-instance_method">
927
+
928
+ #<strong>calculate_end_date</strong>(opt) &#x21d2; <tt>Object</tt>
929
+
930
+
931
+
932
+
933
+
934
+ </h3>
935
+ </div>
936
+
937
+ <div class="method_details ">
938
+ <h3 class="signature " id="duration-instance_method">
855
939
 
856
940
  #<strong>duration</strong> &#x21d2; <tt>Object</tt>
857
941
 
@@ -966,6 +1050,53 @@ the item belongs</p>
966
1050
 
967
1051
  </ul>
968
1052
 
1053
+ </div>
1054
+ </div>
1055
+
1056
+ <div class="method_details ">
1057
+ <h3 class="signature " id="expand_date_tags-instance_method">
1058
+
1059
+ #<strong>expand_date_tags</strong>(additional_tags = nil) &#x21d2; <tt>Object</tt>
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+ </h3><div class="docstring">
1066
+ <div class="discussion">
1067
+ <p>Updates the title of the Item by expanding natural
1068
+ language dates within configured date tags (tags
1069
+ whose value is expected to be a date)</p>
1070
+
1071
+
1072
+ </div>
1073
+ </div>
1074
+ <div class="tags">
1075
+ <p class="tag_title">Parameters:</p>
1076
+ <ul class="param">
1077
+
1078
+ <li>
1079
+
1080
+ <span class='name'>additional_tags</span>
1081
+
1082
+
1083
+ <span class='type'></span>
1084
+
1085
+
1086
+ <em class="default">(defaults to: <tt>nil</tt>)</em>
1087
+
1088
+
1089
+ &mdash;
1090
+ <div class='inline'><p>An array of additional
1091
+ tag names to consider
1092
+ dates</p>
1093
+ </div>
1094
+
1095
+ </li>
1096
+
1097
+ </ul>
1098
+
1099
+
969
1100
  </div>
970
1101
  </div>
971
1102
 
@@ -1011,13 +1142,74 @@ the item belongs</p>
1011
1142
  <div class="method_details ">
1012
1143
  <h3 class="signature " id="ignore_case-instance_method">
1013
1144
 
1014
- #<strong>ignore_case</strong>(search, case_type) &#x21d2; <tt>Object</tt>
1145
+ #<strong>ignore_case</strong>(search, case_type) &#x21d2; <tt>Boolean</tt>
1015
1146
 
1016
1147
 
1017
1148
 
1018
1149
 
1019
1150
 
1020
- </h3>
1151
+ </h3><div class="docstring">
1152
+ <div class="discussion">
1153
+ <p>Determine if case should be ignored for searches</p>
1154
+
1155
+
1156
+ </div>
1157
+ </div>
1158
+ <div class="tags">
1159
+ <p class="tag_title">Parameters:</p>
1160
+ <ul class="param">
1161
+
1162
+ <li>
1163
+
1164
+ <span class='name'>search</span>
1165
+
1166
+
1167
+ <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
1168
+
1169
+
1170
+
1171
+ &mdash;
1172
+ <div class='inline'><p>The search string</p>
1173
+ </div>
1174
+
1175
+ </li>
1176
+
1177
+ <li>
1178
+
1179
+ <span class='name'>case_type</span>
1180
+
1181
+
1182
+ <span class='type'>(<tt><span class='object_link'><a href="../Symbol.html" title="Symbol (class)">Symbol</a></span></tt>)</span>
1183
+
1184
+
1185
+
1186
+ &mdash;
1187
+ <div class='inline'><p>The case type</p>
1188
+ </div>
1189
+
1190
+ </li>
1191
+
1192
+ </ul>
1193
+
1194
+ <p class="tag_title">Returns:</p>
1195
+ <ul class="return">
1196
+
1197
+ <li>
1198
+
1199
+
1200
+ <span class='type'>(<tt>Boolean</tt>)</span>
1201
+
1202
+
1203
+
1204
+ &mdash;
1205
+ <div class='inline'><p>case should be ignored</p>
1206
+ </div>
1207
+
1208
+ </li>
1209
+
1210
+ </ul>
1211
+
1212
+ </div>
1021
1213
  </div>
1022
1214
 
1023
1215
  <div class="method_details ">
@@ -1376,7 +1568,9 @@ type (:sensitive,
1376
1568
 
1377
1569
  </h3><div class="docstring">
1378
1570
  <div class="discussion">
1379
-
1571
+ <p>Test if item is included in never_finish config and
1572
+ thus should not receive a @done tag</p>
1573
+
1380
1574
 
1381
1575
  </div>
1382
1576
  </div>
@@ -1392,6 +1586,10 @@ type (:sensitive,
1392
1586
 
1393
1587
 
1394
1588
 
1589
+ &mdash;
1590
+ <div class='inline'><p>item should receive @done tag</p>
1591
+ </div>
1592
+
1395
1593
  </li>
1396
1594
 
1397
1595
  </ul>
@@ -1410,7 +1608,9 @@ type (:sensitive,
1410
1608
 
1411
1609
  </h3><div class="docstring">
1412
1610
  <div class="discussion">
1413
-
1611
+ <p>Test if item is included in never_time config and
1612
+ thus should not receive a date on the @done tag</p>
1613
+
1414
1614
 
1415
1615
  </div>
1416
1616
  </div>
@@ -1426,6 +1626,10 @@ type (:sensitive,
1426
1626
 
1427
1627
 
1428
1628
 
1629
+ &mdash;
1630
+ <div class='inline'><p>item should receive @done date</p>
1631
+ </div>
1632
+
1429
1633
  </li>
1430
1634
 
1431
1635
  </ul>
@@ -1587,13 +1791,132 @@ type (:sensitive,
1587
1791
  <div class="method_details ">
1588
1792
  <h3 class="signature " id="tag_array-instance_method">
1589
1793
 
1590
- #<strong>tag_array</strong> &#x21d2; <tt>Object</tt>
1794
+ #<strong>tag_array</strong> &#x21d2; <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>
1591
1795
 
1592
1796
 
1593
1797
 
1594
1798
 
1595
1799
 
1596
- </h3>
1800
+ </h3><div class="docstring">
1801
+ <div class="discussion">
1802
+ <p>convert tags on item to an array with @ symbols removed</p>
1803
+
1804
+
1805
+ </div>
1806
+ </div>
1807
+ <div class="tags">
1808
+
1809
+ <p class="tag_title">Returns:</p>
1810
+ <ul class="return">
1811
+
1812
+ <li>
1813
+
1814
+
1815
+ <span class='type'>(<tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>)</span>
1816
+
1817
+
1818
+
1819
+ &mdash;
1820
+ <div class='inline'><p>array of tags</p>
1821
+ </div>
1822
+
1823
+ </li>
1824
+
1825
+ </ul>
1826
+
1827
+ </div>
1828
+ </div>
1829
+
1830
+ <div class="method_details ">
1831
+ <h3 class="signature " id="tag_values?-instance_method">
1832
+
1833
+ #<strong>tag_values?</strong>(queries, bool = :and, negate: false) &#x21d2; <tt>Boolean</tt>
1834
+
1835
+
1836
+
1837
+
1838
+
1839
+ </h3><div class="docstring">
1840
+ <div class="discussion">
1841
+ <p>Test if item matches tag values</p>
1842
+
1843
+
1844
+ </div>
1845
+ </div>
1846
+ <div class="tags">
1847
+ <p class="tag_title">Parameters:</p>
1848
+ <ul class="param">
1849
+
1850
+ <li>
1851
+
1852
+ <span class='name'>queries</span>
1853
+
1854
+
1855
+ <span class='type'>(<tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>)</span>
1856
+
1857
+
1858
+
1859
+ &mdash;
1860
+ <div class='inline'><p>The tag value queries to test</p>
1861
+ </div>
1862
+
1863
+ </li>
1864
+
1865
+ <li>
1866
+
1867
+ <span class='name'>bool</span>
1868
+
1869
+
1870
+ <span class='type'>(<tt><span class='object_link'><a href="../Symbol.html" title="Symbol (class)">Symbol</a></span></tt>)</span>
1871
+
1872
+
1873
+ <em class="default">(defaults to: <tt>:and</tt>)</em>
1874
+
1875
+
1876
+ &mdash;
1877
+ <div class='inline'><p>The boolean to use for multiple tags (:and, :or, :not)</p>
1878
+ </div>
1879
+
1880
+ </li>
1881
+
1882
+ <li>
1883
+
1884
+ <span class='name'>negate</span>
1885
+
1886
+
1887
+ <span class='type'>(<tt>Boolean</tt>)</span>
1888
+
1889
+
1890
+ <em class="default">(defaults to: <tt>false</tt>)</em>
1891
+
1892
+
1893
+ &mdash;
1894
+ <div class='inline'><p>negate the result?</p>
1895
+ </div>
1896
+
1897
+ </li>
1898
+
1899
+ </ul>
1900
+
1901
+ <p class="tag_title">Returns:</p>
1902
+ <ul class="return">
1903
+
1904
+ <li>
1905
+
1906
+
1907
+ <span class='type'>(<tt>Boolean</tt>)</span>
1908
+
1909
+
1910
+
1911
+ &mdash;
1912
+ <div class='inline'><p>true if tag/bool combination passes</p>
1913
+ </div>
1914
+
1915
+ </li>
1916
+
1917
+ </ul>
1918
+
1919
+ </div>
1597
1920
  </div>
1598
1921
 
1599
1922
  <div class="method_details ">
@@ -1754,7 +2077,7 @@ type (:sensitive,
1754
2077
  </div>
1755
2078
 
1756
2079
  <div id="footer">
1757
- Generated on Tue Dec 21 14:44:17 2021 by
2080
+ Generated on Tue Jan 18 02:48:57 2022 by
1758
2081
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1759
2082
  0.9.26 (ruby-3.0.1).
1760
2083
  </div>
@@ -222,6 +222,29 @@
222
222
  <span class="summary_desc"><div class='inline'><p>Delete an item from the index.</p>
223
223
  </div></span>
224
224
 
225
+ </li>
226
+
227
+
228
+ <li class="public ">
229
+ <span class="summary_signature">
230
+
231
+ <a href="#diff-instance_method" title="#diff (instance method)">#<strong>diff</strong>(items) &#x21d2; Object </a>
232
+
233
+
234
+
235
+ </span>
236
+
237
+
238
+
239
+
240
+
241
+
242
+
243
+
244
+
245
+ <span class="summary_desc"><div class='inline'><p>Return Items containing items that don&#39;t exist in receiver.</p>
246
+ </div></span>
247
+
225
248
  </li>
226
249
 
227
250
 
@@ -378,7 +401,7 @@
378
401
 
379
402
 
380
403
  <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></h3>
381
- <p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
404
+ <p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>, <span class='object_link'><a href="../Array.html#time_string-instance_method" title="Array#time_string (method)">#time_string</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
382
405
  <div id="constructor_details" class="method_details_list">
383
406
  <h2>Constructor Details</h2>
384
407
 
@@ -571,6 +594,47 @@ creation of the section.</p>
571
594
  </ul>
572
595
 
573
596
 
597
+ </div>
598
+ </div>
599
+
600
+ <div class="method_details ">
601
+ <h3 class="signature " id="diff-instance_method">
602
+
603
+ #<strong>diff</strong>(items) &#x21d2; <tt>Object</tt>
604
+
605
+
606
+
607
+
608
+
609
+ </h3><div class="docstring">
610
+ <div class="discussion">
611
+ <p>Return Items containing items that don&#39;t exist in receiver</p>
612
+
613
+
614
+ </div>
615
+ </div>
616
+ <div class="tags">
617
+ <p class="tag_title">Parameters:</p>
618
+ <ul class="param">
619
+
620
+ <li>
621
+
622
+ <span class='name'>items</span>
623
+
624
+
625
+ <span class='type'>(<tt><span class='object_link'><a href="" title="Doing::Items (class)">Items</a></span></tt>)</span>
626
+
627
+
628
+
629
+ &mdash;
630
+ <div class='inline'><p>Receiver</p>
631
+ </div>
632
+
633
+ </li>
634
+
635
+ </ul>
636
+
637
+
574
638
  </div>
575
639
  </div>
576
640
 
@@ -826,7 +890,7 @@ specified section</p>
826
890
  </div>
827
891
 
828
892
  <div id="footer">
829
- Generated on Tue Dec 21 14:44:17 2021 by
893
+ Generated on Tue Jan 18 02:48:57 2022 by
830
894
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
831
895
  0.9.26 (ruby-3.0.1).
832
896
  </div>
@@ -1797,7 +1797,7 @@ message (optional)</p>
1797
1797
  </div>
1798
1798
 
1799
1799
  <div id="footer">
1800
- Generated on Tue Dec 21 14:44:17 2021 by
1800
+ Generated on Tue Jan 18 02:48:58 2022 by
1801
1801
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1802
1802
  0.9.26 (ruby-3.0.1).
1803
1803
  </div>
@@ -323,7 +323,7 @@
323
323
 
324
324
 
325
325
  <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></h3>
326
- <p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
326
+ <p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>, <span class='object_link'><a href="../Array.html#time_string-instance_method" title="Array#time_string (method)">#time_string</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
327
327
  <div id="constructor_details" class="method_details_list">
328
328
  <h2>Constructor Details</h2>
329
329
 
@@ -627,7 +627,7 @@ content</p>
627
627
  </div>
628
628
 
629
629
  <div id="footer">
630
- Generated on Tue Dec 21 14:44:17 2021 by
630
+ Generated on Tue Jan 18 02:48:57 2022 by
631
631
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
632
632
  0.9.26 (ruby-3.0.1).
633
633
  </div>
@@ -296,7 +296,7 @@ STDOUT</p>
296
296
  </div>
297
297
 
298
298
  <div id="footer">
299
- Generated on Tue Dec 21 14:44:17 2021 by
299
+ Generated on Tue Jan 18 02:48:57 2022 by
300
300
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
301
301
  0.9.26 (ruby-3.0.1).
302
302
  </div>
@@ -1235,7 +1235,7 @@ e.g. :imp =&gt; :import</p>
1235
1235
  </div>
1236
1236
 
1237
1237
  <div id="footer">
1238
- Generated on Tue Dec 21 14:44:17 2021 by
1238
+ Generated on Tue Jan 18 02:48:57 2022 by
1239
1239
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1240
1240
  0.9.26 (ruby-3.0.1).
1241
1241
  </div>