doing 2.1.8 → 2.1.12

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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +9 -9
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/CHANGELOG.md +38 -0
  6. data/Dockerfile +9 -0
  7. data/Dockerfile-2.6 +9 -0
  8. data/Dockerfile-2.7 +8 -0
  9. data/Dockerfile-3.0 +8 -0
  10. data/Gemfile.lock +1 -1
  11. data/README.md +1 -1
  12. data/Rakefile +51 -6
  13. data/bin/doing +2098 -1944
  14. data/docs/doc/Array.html +1 -1
  15. data/docs/doc/BooleanTermParser/Clause.html +1 -1
  16. data/docs/doc/BooleanTermParser/Operator.html +1 -1
  17. data/docs/doc/BooleanTermParser/Query.html +1 -1
  18. data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
  19. data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
  20. data/docs/doc/BooleanTermParser.html +1 -1
  21. data/docs/doc/Doing/Color.html +1 -1
  22. data/docs/doc/Doing/Completion.html +1 -1
  23. data/docs/doc/Doing/Configuration.html +2 -2
  24. data/docs/doc/Doing/Errors/DoingNoTraceError.html +1 -1
  25. data/docs/doc/Doing/Errors/DoingRuntimeError.html +1 -1
  26. data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
  27. data/docs/doc/Doing/Errors/EmptyInput.html +1 -1
  28. data/docs/doc/Doing/Errors/NoResults.html +1 -1
  29. data/docs/doc/Doing/Errors/PluginException.html +1 -1
  30. data/docs/doc/Doing/Errors/UserCancelled.html +1 -1
  31. data/docs/doc/Doing/Errors/WrongCommand.html +1 -1
  32. data/docs/doc/Doing/Errors.html +1 -1
  33. data/docs/doc/Doing/Hooks.html +1 -1
  34. data/docs/doc/Doing/Item.html +1 -1
  35. data/docs/doc/Doing/Items.html +1 -1
  36. data/docs/doc/Doing/LogAdapter.html +1 -1
  37. data/docs/doc/Doing/Note.html +1 -1
  38. data/docs/doc/Doing/Pager.html +1 -1
  39. data/docs/doc/Doing/Plugins.html +1 -1
  40. data/docs/doc/Doing/Prompt.html +132 -18
  41. data/docs/doc/Doing/Section.html +1 -1
  42. data/docs/doc/Doing/TemplateString.html +2 -2
  43. data/docs/doc/Doing/Util/Backup.html +79 -2
  44. data/docs/doc/Doing/Util.html +1 -1
  45. data/docs/doc/Doing/WWID.html +88 -73
  46. data/docs/doc/Doing.html +2 -2
  47. data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
  48. data/docs/doc/GLI/Commands.html +1 -1
  49. data/docs/doc/GLI.html +1 -1
  50. data/docs/doc/Hash.html +1 -1
  51. data/docs/doc/PhraseParser/Operator.html +1 -1
  52. data/docs/doc/PhraseParser/PhraseClause.html +1 -1
  53. data/docs/doc/PhraseParser/Query.html +1 -1
  54. data/docs/doc/PhraseParser/QueryParser.html +1 -1
  55. data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
  56. data/docs/doc/PhraseParser/TermClause.html +1 -1
  57. data/docs/doc/PhraseParser.html +1 -1
  58. data/docs/doc/Status.html +1 -1
  59. data/docs/doc/String.html +97 -1
  60. data/docs/doc/Symbol.html +36 -2
  61. data/docs/doc/Time.html +1 -1
  62. data/docs/doc/_index.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 +299 -235
  66. data/docs/doc/top-level-namespace.html +1 -1
  67. data/docs/index.md +1 -1
  68. data/doing.rdoc +9 -2
  69. data/generate_completions.sh +1 -3
  70. data/lib/completion/_doing.zsh +1 -1
  71. data/lib/completion/doing.bash +2 -2
  72. data/lib/completion/doing.fish +2 -1
  73. data/lib/doing/completion/bash_completion.rb +2 -2
  74. data/lib/doing/completion/fish_completion.rb +2 -2
  75. data/lib/doing/completion/zsh_completion.rb +2 -2
  76. data/lib/doing/completion.rb +12 -2
  77. data/lib/doing/configuration.rb +19 -9
  78. data/lib/doing/hooks.rb +10 -5
  79. data/lib/doing/items.rb +16 -1
  80. data/lib/doing/log_adapter.rb +1 -0
  81. data/lib/doing/pager.rb +2 -20
  82. data/lib/doing/plugins/import/calendar_import.rb +5 -0
  83. data/lib/doing/plugins/import/doing_import.rb +2 -0
  84. data/lib/doing/plugins/import/timing_import.rb +5 -0
  85. data/lib/doing/prompt.rb +47 -8
  86. data/lib/doing/string.rb +20 -0
  87. data/lib/doing/symbol.rb +4 -0
  88. data/lib/doing/util_backup.rb +38 -8
  89. data/lib/doing/version.rb +1 -1
  90. data/lib/doing/wwid.rb +210 -105
  91. data/lib/doing.rb +1 -0
  92. data/lib/examples/plugins/hooks.rb +31 -0
  93. data/scripts/generate_bash_completions.rb +2 -2
  94. data/scripts/sort_commands.rb +59 -0
  95. metadata +7 -3
  96. data/lib/helpers/fuzzyfilefinder +0 -0
@@ -928,7 +928,7 @@ other_hash - the other hash whose values will be persisted after the merge</p>
928
928
  </div>
929
929
 
930
930
  <div id="footer">
931
- Generated on Mon Dec 20 16:24:43 2021 by
931
+ Generated on Tue Dec 21 14:44:17 2021 by
932
932
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
933
933
  0.9.26 (ruby-3.0.1).
934
934
  </div>
@@ -359,7 +359,7 @@
359
359
  <li class="public ">
360
360
  <span class="summary_signature">
361
361
 
362
- <a href="#act_on-instance_method" title="#act_on (instance method)">#<strong>act_on</strong>(items, opt = {}) &#x21d2; Object </a>
362
+ <a href="#act_on-instance_method" title="#act_on (instance method)">#<strong>act_on</strong>(items, opt) &#x21d2; Object </a>
363
363
 
364
364
 
365
365
 
@@ -382,7 +382,7 @@
382
382
  <li class="public ">
383
383
  <span class="summary_signature">
384
384
 
385
- <a href="#add_item-instance_method" title="#add_item (instance method)">#<strong>add_item</strong>(title, section = nil, opt = {}) &#x21d2; Object </a>
385
+ <a href="#add_item-instance_method" title="#add_item (instance method)">#<strong>add_item</strong>(title, section = nil, opt) &#x21d2; Object </a>
386
386
 
387
387
 
388
388
 
@@ -427,7 +427,7 @@
427
427
  <li class="public ">
428
428
  <span class="summary_signature">
429
429
 
430
- <a href="#archive-instance_method" title="#archive (instance method)">#<strong>archive</strong>(section = @config[&#39;current_section&#39;], options = {}) &#x21d2; Object </a>
430
+ <a href="#archive-instance_method" title="#archive (instance method)">#<strong>archive</strong>(section = @config[&#39;current_section&#39;], options) &#x21d2; Object </a>
431
431
 
432
432
 
433
433
 
@@ -450,7 +450,7 @@
450
450
  <li class="public ">
451
451
  <span class="summary_signature">
452
452
 
453
- <a href="#autotag-instance_method" title="#autotag (instance method)">#<strong>autotag</strong>(text) &#x21d2; Object </a>
453
+ <a href="#autotag-instance_method" title="#autotag (instance method)">#<strong>autotag</strong>(string) &#x21d2; Object </a>
454
454
 
455
455
 
456
456
 
@@ -840,7 +840,7 @@
840
840
  <li class="public ">
841
841
  <span class="summary_signature">
842
842
 
843
- <a href="#import-instance_method" title="#import (instance method)">#<strong>import</strong>(paths, opt = {}) &#x21d2; Object </a>
843
+ <a href="#import-instance_method" title="#import (instance method)">#<strong>import</strong>(paths, opt) &#x21d2; Object </a>
844
844
 
845
845
 
846
846
 
@@ -911,7 +911,7 @@
911
911
  <li class="public ">
912
912
  <span class="summary_signature">
913
913
 
914
- <a href="#interactive-instance_method" title="#interactive (instance method)">#<strong>interactive</strong>(opt = {}) &#x21d2; Object </a>
914
+ <a href="#interactive-instance_method" title="#interactive (instance method)">#<strong>interactive</strong>(opt) &#x21d2; Object </a>
915
915
 
916
916
 
917
917
 
@@ -957,7 +957,7 @@
957
957
  <li class="public ">
958
958
  <span class="summary_signature">
959
959
 
960
- <a href="#last_entry-instance_method" title="#last_entry (instance method)">#<strong>last_entry</strong>(opt = {}) &#x21d2; Object </a>
960
+ <a href="#last_entry-instance_method" title="#last_entry (instance method)">#<strong>last_entry</strong>(opt) &#x21d2; Object </a>
961
961
 
962
962
 
963
963
 
@@ -1003,7 +1003,7 @@
1003
1003
  <li class="public ">
1004
1004
  <span class="summary_signature">
1005
1005
 
1006
- <a href="#list_date-instance_method" title="#list_date (instance method)">#<strong>list_date</strong>(dates, section, times = nil, output = nil, opt = {}) &#x21d2; Object </a>
1006
+ <a href="#list_date-instance_method" title="#list_date (instance method)">#<strong>list_date</strong>(dates, section, times = nil, output = nil, opt) &#x21d2; Object </a>
1007
1007
 
1008
1008
 
1009
1009
 
@@ -1072,7 +1072,7 @@
1072
1072
  <li class="public ">
1073
1073
  <span class="summary_signature">
1074
1074
 
1075
- <a href="#next_item-instance_method" title="#next_item (instance method)">#<strong>next_item</strong>(item, options = {}) &#x21d2; Item </a>
1075
+ <a href="#next_item-instance_method" title="#next_item (instance method)">#<strong>next_item</strong>(item, options) &#x21d2; Item </a>
1076
1076
 
1077
1077
 
1078
1078
 
@@ -1095,7 +1095,7 @@
1095
1095
  <li class="public ">
1096
1096
  <span class="summary_signature">
1097
1097
 
1098
- <a href="#recent-instance_method" title="#recent (instance method)">#<strong>recent</strong>(count = 10, section = nil, opt = {}) &#x21d2; Object </a>
1098
+ <a href="#recent-instance_method" title="#recent (instance method)">#<strong>recent</strong>(count = 10, section = nil, opt) &#x21d2; Object </a>
1099
1099
 
1100
1100
 
1101
1101
 
@@ -1118,7 +1118,7 @@
1118
1118
  <li class="public ">
1119
1119
  <span class="summary_signature">
1120
1120
 
1121
- <a href="#repeat_item-instance_method" title="#repeat_item (instance method)">#<strong>repeat_item</strong>(item, opt = {}) &#x21d2; Object </a>
1121
+ <a href="#repeat_item-instance_method" title="#repeat_item (instance method)">#<strong>repeat_item</strong>(item, opt) &#x21d2; Object </a>
1122
1122
 
1123
1123
 
1124
1124
 
@@ -1141,7 +1141,7 @@
1141
1141
  <li class="public ">
1142
1142
  <span class="summary_signature">
1143
1143
 
1144
- <a href="#repeat_last-instance_method" title="#repeat_last (instance method)">#<strong>repeat_last</strong>(opt = {}) &#x21d2; Object </a>
1144
+ <a href="#repeat_last-instance_method" title="#repeat_last (instance method)">#<strong>repeat_last</strong>(opt) &#x21d2; Object </a>
1145
1145
 
1146
1146
 
1147
1147
 
@@ -1187,7 +1187,7 @@
1187
1187
  <li class="public ">
1188
1188
  <span class="summary_signature">
1189
1189
 
1190
- <a href="#rotate-instance_method" title="#rotate (instance method)">#<strong>rotate</strong>(opt = {}) &#x21d2; Object </a>
1190
+ <a href="#rotate-instance_method" title="#rotate (instance method)">#<strong>rotate</strong>(opt) &#x21d2; Object </a>
1191
1191
 
1192
1192
 
1193
1193
 
@@ -1233,7 +1233,7 @@
1233
1233
  <li class="public ">
1234
1234
  <span class="summary_signature">
1235
1235
 
1236
- <a href="#stop_start-instance_method" title="#stop_start (instance method)">#<strong>stop_start</strong>(target_tag, opt = {}) &#x21d2; Object </a>
1236
+ <a href="#stop_start-instance_method" title="#stop_start (instance method)">#<strong>stop_start</strong>(target_tag, opt) &#x21d2; Object </a>
1237
1237
 
1238
1238
 
1239
1239
 
@@ -1278,7 +1278,7 @@
1278
1278
  <li class="public ">
1279
1279
  <span class="summary_signature">
1280
1280
 
1281
- <a href="#tag_last-instance_method" title="#tag_last (instance method)">#<strong>tag_last</strong>(opt = {}) &#x21d2; Object </a>
1281
+ <a href="#tag_last-instance_method" title="#tag_last (instance method)">#<strong>tag_last</strong>(opt) &#x21d2; Object </a>
1282
1282
 
1283
1283
 
1284
1284
 
@@ -1324,7 +1324,7 @@
1324
1324
  <li class="public ">
1325
1325
  <span class="summary_signature">
1326
1326
 
1327
- <a href="#today-instance_method" title="#today (instance method)">#<strong>today</strong>(times = true, output = nil, opt = {}) &#x21d2; Object </a>
1327
+ <a href="#today-instance_method" title="#today (instance method)">#<strong>today</strong>(times = true, output = nil, opt) &#x21d2; Object </a>
1328
1328
 
1329
1329
 
1330
1330
 
@@ -1393,7 +1393,7 @@
1393
1393
  <li class="public ">
1394
1394
  <span class="summary_signature">
1395
1395
 
1396
- <a href="#yesterday-instance_method" title="#yesterday (instance method)">#<strong>yesterday</strong>(section, times = nil, output = nil, opt = {}) &#x21d2; Object </a>
1396
+ <a href="#yesterday-instance_method" title="#yesterday (instance method)">#<strong>yesterday</strong>(section, times = nil, output = nil, opt) &#x21d2; Object </a>
1397
1397
 
1398
1398
 
1399
1399
 
@@ -1659,7 +1659,7 @@
1659
1659
  <div class="method_details first">
1660
1660
  <h3 class="signature first" id="act_on-instance_method">
1661
1661
 
1662
- #<strong>act_on</strong>(items, opt = {}) &#x21d2; <tt>Object</tt>
1662
+ #<strong>act_on</strong>(items, opt) &#x21d2; <tt>Object</tt>
1663
1663
 
1664
1664
 
1665
1665
 
@@ -1702,8 +1702,6 @@
1702
1702
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
1703
1703
 
1704
1704
 
1705
- <em class="default">(defaults to: <tt>{}</tt>)</em>
1706
-
1707
1705
 
1708
1706
  &mdash;
1709
1707
  <div class='inline'><p>Options and actions to perform</p>
@@ -1830,7 +1828,7 @@
1830
1828
  <div class="method_details ">
1831
1829
  <h3 class="signature " id="add_item-instance_method">
1832
1830
 
1833
- #<strong>add_item</strong>(title, section = nil, opt = {}) &#x21d2; <tt>Object</tt>
1831
+ #<strong>add_item</strong>(title, section = nil, opt) &#x21d2; <tt>Object</tt>
1834
1832
 
1835
1833
 
1836
1834
 
@@ -1887,8 +1885,6 @@
1887
1885
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
1888
1886
 
1889
1887
 
1890
- <em class="default">(defaults to: <tt>{}</tt>)</em>
1891
-
1892
1888
 
1893
1889
  &mdash;
1894
1890
  <div class='inline'><p>Additional Options</p>
@@ -1978,7 +1974,7 @@
1978
1974
  <div class="method_details ">
1979
1975
  <h3 class="signature " id="archive-instance_method">
1980
1976
 
1981
- #<strong>archive</strong>(section = @config[&#39;current_section&#39;], options = {}) &#x21d2; <tt>Object</tt>
1977
+ #<strong>archive</strong>(section = @config[&#39;current_section&#39;], options) &#x21d2; <tt>Object</tt>
1982
1978
 
1983
1979
 
1984
1980
 
@@ -2021,8 +2017,6 @@
2021
2017
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
2022
2018
 
2023
2019
 
2024
- <em class="default">(defaults to: <tt>{}</tt>)</em>
2025
-
2026
2020
 
2027
2021
  &mdash;
2028
2022
  <div class='inline'><p>Options</p>
@@ -2039,7 +2033,7 @@
2039
2033
  <div class="method_details ">
2040
2034
  <h3 class="signature " id="autotag-instance_method">
2041
2035
 
2042
- #<strong>autotag</strong>(text) &#x21d2; <tt>Object</tt>
2036
+ #<strong>autotag</strong>(string) &#x21d2; <tt>Object</tt>
2043
2037
 
2044
2038
 
2045
2039
 
@@ -2060,7 +2054,7 @@ untagged keyword</p>
2060
2054
 
2061
2055
  <li>
2062
2056
 
2063
- <span class='name'>text</span>
2057
+ <span class='name'>string</span>
2064
2058
 
2065
2059
 
2066
2060
  <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
@@ -2427,6 +2421,9 @@ untagged keyword</p>
2427
2421
  <span class="type">(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
2428
2422
  <span class="default">
2429
2423
 
2424
+ &mdash; default:
2425
+ <tt>&#39;all&#39;</tt>
2426
+
2430
2427
  </span>
2431
2428
 
2432
2429
  </li>
@@ -2436,6 +2433,9 @@ untagged keyword</p>
2436
2433
  <span class="type">(<tt>Boolean</tt>)</span>
2437
2434
  <span class="default">
2438
2435
 
2436
+ &mdash; default:
2437
+ <tt>false</tt>
2438
+
2439
2439
  </span>
2440
2440
 
2441
2441
  </li>
@@ -2446,10 +2446,13 @@ untagged keyword</p>
2446
2446
  <span class="default">
2447
2447
 
2448
2448
  &mdash; default:
2449
- <tt>Array or comma-separated string</tt>
2449
+ <tt>[]</tt>
2450
2450
 
2451
2451
  </span>
2452
2452
 
2453
+ &mdash; <div class='inline'><p>Array or comma-separated string</p>
2454
+ </div>
2455
+
2453
2456
  </li>
2454
2457
 
2455
2458
  <li>
@@ -2458,10 +2461,13 @@ untagged keyword</p>
2458
2461
  <span class="default">
2459
2462
 
2460
2463
  &mdash; default:
2461
- <tt>:and</tt>, <tt>:or</tt>, <tt>:not</tt>
2464
+ <tt>:and</tt>
2462
2465
 
2463
2466
  </span>
2464
2467
 
2468
+ &mdash; <div class='inline'><p>:and, :or, :not</p>
2469
+ </div>
2470
+
2465
2471
  </li>
2466
2472
 
2467
2473
  <li>
@@ -2470,10 +2476,13 @@ untagged keyword</p>
2470
2476
  <span class="default">
2471
2477
 
2472
2478
  &mdash; default:
2473
- <tt>string</tt>, <tt>optional regex with //</tt>
2479
+ <tt>&#39;&#39;</tt>
2474
2480
 
2475
2481
  </span>
2476
2482
 
2483
+ &mdash; <div class='inline'><p>string, optional regex with <code>/string/</code></p>
2484
+ </div>
2485
+
2477
2486
  </li>
2478
2487
 
2479
2488
  <li>
@@ -2481,6 +2490,9 @@ untagged keyword</p>
2481
2490
  <span class="type">(<tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>)</span>
2482
2491
  <span class="default">
2483
2492
 
2493
+ &mdash; default:
2494
+ <tt>nil</tt>
2495
+
2484
2496
  </span>
2485
2497
 
2486
2498
  &mdash; <div class='inline'><p>[[Time]start, [Time]end]</p>
@@ -2493,6 +2505,9 @@ untagged keyword</p>
2493
2505
  <span class="type">(<tt>Boolean</tt>)</span>
2494
2506
  <span class="default">
2495
2507
 
2508
+ &mdash; default:
2509
+ <tt>false</tt>
2510
+
2496
2511
  </span>
2497
2512
 
2498
2513
  </li>
@@ -2503,10 +2518,13 @@ untagged keyword</p>
2503
2518
  <span class="default">
2504
2519
 
2505
2520
  &mdash; default:
2506
- <tt>Date/Time string</tt>, <tt>unparsed</tt>
2521
+ <tt>nil</tt>
2507
2522
 
2508
2523
  </span>
2509
2524
 
2525
+ &mdash; <div class='inline'><p>Date/Time string, unparsed</p>
2526
+ </div>
2527
+
2510
2528
  </li>
2511
2529
 
2512
2530
  <li>
@@ -2515,10 +2533,13 @@ untagged keyword</p>
2515
2533
  <span class="default">
2516
2534
 
2517
2535
  &mdash; default:
2518
- <tt>Date/Time string</tt>, <tt>unparsed</tt>
2536
+ <tt>nil</tt>
2519
2537
 
2520
2538
  </span>
2521
2539
 
2540
+ &mdash; <div class='inline'><p>Date/Time string, unparsed</p>
2541
+ </div>
2542
+
2522
2543
  </li>
2523
2544
 
2524
2545
  <li>
@@ -2526,8 +2547,14 @@ untagged keyword</p>
2526
2547
  <span class="type">(<tt>Boolean</tt>)</span>
2527
2548
  <span class="default">
2528
2549
 
2550
+ &mdash; default:
2551
+ <tt>false</tt>
2552
+
2529
2553
  </span>
2530
2554
 
2555
+ &mdash; <div class='inline'><p>limit to entries from today</p>
2556
+ </div>
2557
+
2531
2558
  </li>
2532
2559
 
2533
2560
  <li>
@@ -2535,8 +2562,14 @@ untagged keyword</p>
2535
2562
  <span class="type">(<tt>Boolean</tt>)</span>
2536
2563
  <span class="default">
2537
2564
 
2565
+ &mdash; default:
2566
+ <tt>false</tt>
2567
+
2538
2568
  </span>
2539
2569
 
2570
+ &mdash; <div class='inline'><p>limit to entries from yesterday</p>
2571
+ </div>
2572
+
2540
2573
  </li>
2541
2574
 
2542
2575
  <li>
@@ -2545,10 +2578,13 @@ untagged keyword</p>
2545
2578
  <span class="default">
2546
2579
 
2547
2580
  &mdash; default:
2548
- <tt>Number to return</tt>
2581
+ <tt>0</tt>
2549
2582
 
2550
2583
  </span>
2551
2584
 
2585
+ &mdash; <div class='inline'><p>max entries to return</p>
2586
+ </div>
2587
+
2552
2588
  </li>
2553
2589
 
2554
2590
  <li>
@@ -2557,10 +2593,13 @@ untagged keyword</p>
2557
2593
  <span class="default">
2558
2594
 
2559
2595
  &mdash; default:
2560
- <tt>&#39;old&#39; or &#39;new&#39;</tt>
2596
+ <tt>new</tt>
2561
2597
 
2562
2598
  </span>
2563
2599
 
2600
+ &mdash; <div class='inline'><p>&#39;old&#39; or &#39;new&#39;</p>
2601
+ </div>
2602
+
2564
2603
  </li>
2565
2604
 
2566
2605
  </ul>
@@ -3007,7 +3046,7 @@ interval is 0</p>
3007
3046
  <div class="method_details ">
3008
3047
  <h3 class="signature " id="import-instance_method">
3009
3048
 
3010
- #<strong>import</strong>(paths, opt = {}) &#x21d2; <tt>Object</tt>
3049
+ #<strong>import</strong>(paths, opt) &#x21d2; <tt>Object</tt>
3011
3050
 
3012
3051
 
3013
3052
 
@@ -3047,8 +3086,6 @@ interval is 0</p>
3047
3086
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3048
3087
 
3049
3088
 
3050
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3051
-
3052
3089
 
3053
3090
  &mdash;
3054
3091
  <div class='inline'><p>Additional Options</p>
@@ -3108,7 +3145,7 @@ interval is 0</p>
3108
3145
  <div class="method_details ">
3109
3146
  <h3 class="signature " id="interactive-instance_method">
3110
3147
 
3111
- #<strong>interactive</strong>(opt = {}) &#x21d2; <tt>Object</tt>
3148
+ #<strong>interactive</strong>(opt) &#x21d2; <tt>Object</tt>
3112
3149
 
3113
3150
 
3114
3151
 
@@ -3135,8 +3172,6 @@ interval is 0</p>
3135
3172
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3136
3173
 
3137
3174
 
3138
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3139
-
3140
3175
 
3141
3176
  &mdash;
3142
3177
  <div class='inline'><p>Additional options</p>
@@ -3226,7 +3261,7 @@ interval is 0</p>
3226
3261
  <div class="method_details ">
3227
3262
  <h3 class="signature " id="last_entry-instance_method">
3228
3263
 
3229
- #<strong>last_entry</strong>(opt = {}) &#x21d2; <tt>Object</tt>
3264
+ #<strong>last_entry</strong>(opt) &#x21d2; <tt>Object</tt>
3230
3265
 
3231
3266
 
3232
3267
 
@@ -3251,8 +3286,6 @@ interval is 0</p>
3251
3286
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3252
3287
 
3253
3288
 
3254
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3255
-
3256
3289
 
3257
3290
  &mdash;
3258
3291
  <div class='inline'><p>Additional Options</p>
@@ -3326,7 +3359,7 @@ All</p>
3326
3359
  <div class="method_details ">
3327
3360
  <h3 class="signature " id="list_date-instance_method">
3328
3361
 
3329
- #<strong>list_date</strong>(dates, section, times = nil, output = nil, opt = {}) &#x21d2; <tt>Object</tt>
3362
+ #<strong>list_date</strong>(dates, section, times = nil, output = nil, opt) &#x21d2; <tt>Object</tt>
3330
3363
 
3331
3364
 
3332
3365
 
@@ -3415,8 +3448,6 @@ All</p>
3415
3448
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3416
3449
 
3417
3450
 
3418
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3419
-
3420
3451
 
3421
3452
  &mdash;
3422
3453
  <div class='inline'><p>Additional Options</p>
@@ -3502,7 +3533,7 @@ All</p>
3502
3533
  <div class="method_details ">
3503
3534
  <h3 class="signature " id="next_item-instance_method">
3504
3535
 
3505
- #<strong>next_item</strong>(item, options = {}) &#x21d2; <tt><span class='object_link'><a href="Item.html" title="Doing::Item (class)">Item</a></span></tt>
3536
+ #<strong>next_item</strong>(item, options) &#x21d2; <tt><span class='object_link'><a href="Item.html" title="Doing::Item (class)">Item</a></span></tt>
3506
3537
 
3507
3538
 
3508
3539
 
@@ -3542,8 +3573,6 @@ All</p>
3542
3573
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3543
3574
 
3544
3575
 
3545
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3546
-
3547
3576
 
3548
3577
  &mdash;
3549
3578
  <div class='inline'><p>additional options</p>
@@ -3584,7 +3613,7 @@ All</p>
3584
3613
  <div class="method_details ">
3585
3614
  <h3 class="signature " id="recent-instance_method">
3586
3615
 
3587
- #<strong>recent</strong>(count = 10, section = nil, opt = {}) &#x21d2; <tt>Object</tt>
3616
+ #<strong>recent</strong>(count = 10, section = nil, opt) &#x21d2; <tt>Object</tt>
3588
3617
 
3589
3618
 
3590
3619
 
@@ -3643,8 +3672,6 @@ All</p>
3643
3672
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3644
3673
 
3645
3674
 
3646
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3647
-
3648
3675
 
3649
3676
  &mdash;
3650
3677
  <div class='inline'><p>Additional Options</p>
@@ -3661,7 +3688,7 @@ All</p>
3661
3688
  <div class="method_details ">
3662
3689
  <h3 class="signature " id="repeat_item-instance_method">
3663
3690
 
3664
- #<strong>repeat_item</strong>(item, opt = {}) &#x21d2; <tt>Object</tt>
3691
+ #<strong>repeat_item</strong>(item, opt) &#x21d2; <tt>Object</tt>
3665
3692
 
3666
3693
 
3667
3694
 
@@ -3701,8 +3728,6 @@ All</p>
3701
3728
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3702
3729
 
3703
3730
 
3704
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3705
-
3706
3731
 
3707
3732
  &mdash;
3708
3733
  <div class='inline'><p>additional options</p>
@@ -3795,7 +3820,7 @@ All</p>
3795
3820
  <div class="method_details ">
3796
3821
  <h3 class="signature " id="repeat_last-instance_method">
3797
3822
 
3798
- #<strong>repeat_last</strong>(opt = {}) &#x21d2; <tt>Object</tt>
3823
+ #<strong>repeat_last</strong>(opt) &#x21d2; <tt>Object</tt>
3799
3824
 
3800
3825
 
3801
3826
 
@@ -3820,8 +3845,6 @@ All</p>
3820
3845
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
3821
3846
 
3822
3847
 
3823
- <em class="default">(defaults to: <tt>{}</tt>)</em>
3824
-
3825
3848
 
3826
3849
  &mdash;
3827
3850
  <div class='inline'><p>Additional Options</p>
@@ -3897,7 +3920,7 @@ done tag (resume)</p>
3897
3920
  <div class="method_details ">
3898
3921
  <h3 class="signature " id="rotate-instance_method">
3899
3922
 
3900
- #<strong>rotate</strong>(opt = {}) &#x21d2; <tt>Object</tt>
3923
+ #<strong>rotate</strong>(opt) &#x21d2; <tt>Object</tt>
3901
3924
 
3902
3925
 
3903
3926
 
@@ -3958,7 +3981,7 @@ done tag (resume)</p>
3958
3981
  <div class="method_details ">
3959
3982
  <h3 class="signature " id="stop_start-instance_method">
3960
3983
 
3961
- #<strong>stop_start</strong>(target_tag, opt = {}) &#x21d2; <tt>Object</tt>
3984
+ #<strong>stop_start</strong>(target_tag, opt) &#x21d2; <tt>Object</tt>
3962
3985
 
3963
3986
 
3964
3987
 
@@ -4002,8 +4025,6 @@ instance of a given tag should exist (@meanwhile)</p>
4002
4025
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
4003
4026
 
4004
4027
 
4005
- <em class="default">(defaults to: <tt>{}</tt>)</em>
4006
-
4007
4028
 
4008
4029
  &mdash;
4009
4030
  <div class='inline'><p>Additional Options</p>
@@ -4103,7 +4124,7 @@ instance of a given tag should exist (@meanwhile)</p>
4103
4124
  <div class="method_details ">
4104
4125
  <h3 class="signature " id="tag_last-instance_method">
4105
4126
 
4106
- #<strong>tag_last</strong>(opt = {}) &#x21d2; <tt>Object</tt>
4127
+ #<strong>tag_last</strong>(opt) &#x21d2; <tt>Object</tt>
4107
4128
 
4108
4129
 
4109
4130
 
@@ -4128,8 +4149,6 @@ instance of a given tag should exist (@meanwhile)</p>
4128
4149
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
4129
4150
 
4130
4151
 
4131
- <em class="default">(defaults to: <tt>{}</tt>)</em>
4132
-
4133
4152
 
4134
4153
  &mdash;
4135
4154
  <div class='inline'><p>Additional Options (see</p>
@@ -4249,7 +4268,7 @@ json, or text)</p>
4249
4268
  <div class="method_details ">
4250
4269
  <h3 class="signature " id="today-instance_method">
4251
4270
 
4252
- #<strong>today</strong>(times = true, output = nil, opt = {}) &#x21d2; <tt>Object</tt>
4271
+ #<strong>today</strong>(times = true, output = nil, opt) &#x21d2; <tt>Object</tt>
4253
4272
 
4254
4273
 
4255
4274
 
@@ -4308,8 +4327,6 @@ json, or text)</p>
4308
4327
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
4309
4328
 
4310
4329
 
4311
- <em class="default">(defaults to: <tt>{}</tt>)</em>
4312
-
4313
4330
 
4314
4331
  &mdash;
4315
4332
  <div class='inline'><p>Options</p>
@@ -4408,7 +4425,7 @@ json, or text)</p>
4408
4425
  <div class="method_details ">
4409
4426
  <h3 class="signature " id="yesterday-instance_method">
4410
4427
 
4411
- #<strong>yesterday</strong>(section, times = nil, output = nil, opt = {}) &#x21d2; <tt>Object</tt>
4428
+ #<strong>yesterday</strong>(section, times = nil, output = nil, opt) &#x21d2; <tt>Object</tt>
4412
4429
 
4413
4430
 
4414
4431
 
@@ -4482,8 +4499,6 @@ json, or text)</p>
4482
4499
  <span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
4483
4500
 
4484
4501
 
4485
- <em class="default">(defaults to: <tt>{}</tt>)</em>
4486
-
4487
4502
 
4488
4503
  &mdash;
4489
4504
  <div class='inline'><p>Additional Options</p>
@@ -4502,7 +4517,7 @@ json, or text)</p>
4502
4517
  </div>
4503
4518
 
4504
4519
  <div id="footer">
4505
- Generated on Mon Dec 20 16:24:43 2021 by
4520
+ Generated on Tue Dec 21 14:44:17 2021 by
4506
4521
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
4507
4522
  0.9.26 (ruby-3.0.1).
4508
4523
  </div>
data/docs/doc/Doing.html CHANGED
@@ -119,7 +119,7 @@
119
119
  <dt id="VERSION-constant" class="">VERSION =
120
120
 
121
121
  </dt>
122
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2.1.8</span><span class='tstring_end'>&#39;</span></span></pre></dd>
122
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>2.1.10</span><span class='tstring_end'>&#39;</span></span></pre></dd>
123
123
 
124
124
  </dl>
125
125
 
@@ -135,7 +135,7 @@
135
135
  </div>
136
136
 
137
137
  <div id="footer">
138
- Generated on Mon Dec 20 16:24:43 2021 by
138
+ Generated on Tue Dec 21 14:44:17 2021 by
139
139
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
140
140
  0.9.26 (ruby-3.0.1).
141
141
  </div>
@@ -753,7 +753,7 @@
753
753
  </div>
754
754
 
755
755
  <div id="footer">
756
- Generated on Mon Dec 20 16:24:44 2021 by
756
+ Generated on Tue Dec 21 14:44:17 2021 by
757
757
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
758
758
  0.9.26 (ruby-3.0.1).
759
759
  </div>
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Mon Dec 20 16:24:43 2021 by
108
+ Generated on Tue Dec 21 14:44:17 2021 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.9.26 (ruby-3.0.1).
111
111
  </div>
data/docs/doc/GLI.html CHANGED
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Mon Dec 20 16:24:43 2021 by
108
+ Generated on Tue Dec 21 14:44:17 2021 by
109
109
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
110
110
  0.9.26 (ruby-3.0.1).
111
111
  </div>