doing 2.1.21 → 2.1.25

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +19 -16
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/CHANGELOG.md +51 -13
  6. data/Gemfile.lock +1 -1
  7. data/README.md +1 -1
  8. data/Rakefile +6 -3
  9. data/bin/doing +254 -103
  10. data/docs/doc/Array.html +74 -34
  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 +16 -18
  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 +16 -16
  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 +206 -0
  40. data/docs/doc/Doing/Util/Backup.html +10 -10
  41. data/docs/doc/Doing/Util.html +16 -19
  42. data/docs/doc/Doing/WWID.html +65 -53
  43. data/docs/doc/Doing.html +4 -4
  44. data/docs/doc/GLI/Commands/Help.html +185 -0
  45. data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +17 -17
  46. data/docs/doc/GLI/Commands.html +5 -3
  47. data/docs/doc/GLI.html +4 -2
  48. data/docs/doc/Hash.html +119 -21
  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 +206 -51
  59. data/docs/doc/Symbol.html +8 -8
  60. data/docs/doc/Time.html +6 -6
  61. data/docs/doc/_index.html +51 -14
  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 +348 -252
  66. data/docs/doc/top-level-namespace.html +2 -93
  67. data/docs/index.md +1 -1
  68. data/doing.rdoc +177 -20
  69. data/example_plugin.rb +2 -2
  70. data/lib/completion/_doing.zsh +24 -24
  71. data/lib/completion/doing.bash +31 -20
  72. data/lib/completion/doing.fish +32 -10
  73. data/lib/doing/array.rb +5 -4
  74. data/lib/doing/array_chronify.rb +4 -3
  75. data/lib/doing/changelog/change.rb +115 -0
  76. data/lib/doing/changelog/changes.rb +73 -0
  77. data/lib/doing/changelog/entry.rb +21 -0
  78. data/lib/doing/changelog/version.rb +97 -0
  79. data/lib/doing/changelog.rb +6 -0
  80. data/lib/doing/completion/fish_completion.rb +2 -1
  81. data/lib/doing/configuration.rb +20 -14
  82. data/lib/doing/good.rb +64 -0
  83. data/lib/doing/hash.rb +28 -5
  84. data/lib/doing/help_monkey_patch.rb +31 -0
  85. data/lib/doing/hooks.rb +8 -4
  86. data/lib/doing/item.rb +24 -35
  87. data/lib/doing/log_adapter.rb +1 -1
  88. data/lib/doing/pager.rb +1 -1
  89. data/lib/doing/plugins/export/template_export.rb +9 -3
  90. data/lib/doing/plugins/import/calendar_import.rb +1 -1
  91. data/lib/doing/plugins/import/doing_import.rb +1 -1
  92. data/lib/doing/plugins/import/timing_import.rb +1 -1
  93. data/lib/doing/prompt.rb +4 -2
  94. data/lib/doing/string.rb +30 -12
  95. data/lib/doing/string_chronify.rb +1 -1
  96. data/lib/doing/template_string.rb +9 -2
  97. data/lib/doing/types.rb +23 -16
  98. data/lib/doing/util.rb +12 -11
  99. data/lib/doing/version.rb +1 -1
  100. data/lib/doing/wwid.rb +65 -46
  101. data/lib/doing.rb +3 -0
  102. data/lib/helpers/threaded_tests.rb +106 -99
  103. data/lib/helpers/threaded_tests_string.rb +50 -0
  104. metadata +12 -2
data/docs/doc/String.html CHANGED
@@ -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">String</li>
78
78
 
@@ -100,7 +100,7 @@
100
100
  <dl>
101
101
  <dt>Defined in:</dt>
102
102
  <dd>lib/doing/string.rb<span class="defines">,<br />
103
- lib/doing/string_chronify.rb,<br /> lib/doing/template_string.rb</span>
103
+ lib/doing/good.rb,<br /> lib/doing/string_chronify.rb,<br /> lib/doing/template_string.rb</span>
104
104
  </dd>
105
105
  </dl>
106
106
 
@@ -411,6 +411,29 @@
411
411
  <span class="summary_desc"><div class='inline'><p>Convert (chronify) natural language dates within configured date tags (tags whose value is expected to be a date).</p>
412
412
  </div></span>
413
413
 
414
+ </li>
415
+
416
+
417
+ <li class="public ">
418
+ <span class="summary_signature">
419
+
420
+ <a href="#good%3F-instance_method" title="#good? (instance method)">#<strong>good?</strong> &#x21d2; Boolean </a>
421
+
422
+
423
+
424
+ </span>
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+ <span class="summary_desc"><div class='inline'><p>Tests if object is nil or empty.</p>
435
+ </div></span>
436
+
414
437
  </li>
415
438
 
416
439
 
@@ -928,6 +951,29 @@
928
951
 
929
952
  <span class="summary_desc"><div class='inline'></div></span>
930
953
 
954
+ </li>
955
+
956
+
957
+ <li class="public ">
958
+ <span class="summary_signature">
959
+
960
+ <a href="#remove_at-instance_method" title="#remove_at (instance method)">#<strong>remove_at</strong> &#x21d2; String </a>
961
+
962
+
963
+
964
+ </span>
965
+
966
+
967
+
968
+
969
+
970
+
971
+
972
+
973
+
974
+ <span class="summary_desc"><div class='inline'><p>Removes @ prefix if needed, maintains +/- prefix.</p>
975
+ </div></span>
976
+
931
977
  </li>
932
978
 
933
979
 
@@ -1162,7 +1208,29 @@
1162
1208
  <li class="public ">
1163
1209
  <span class="summary_signature">
1164
1210
 
1165
- <a href="#to_phrase_query-instance_method" title="#to_phrase_query (instance method)">#<strong>to_phrase_query</strong>(query) &#x21d2; Object </a>
1211
+ <a href="#to_phrase_query-instance_method" title="#to_phrase_query (instance method)">#<strong>to_phrase_query</strong> &#x21d2; Object </a>
1212
+
1213
+
1214
+
1215
+ </span>
1216
+
1217
+
1218
+
1219
+
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+ <span class="summary_desc"><div class='inline'></div></span>
1226
+
1227
+ </li>
1228
+
1229
+
1230
+ <li class="public ">
1231
+ <span class="summary_signature">
1232
+
1233
+ <a href="#to_query-instance_method" title="#to_query (instance method)">#<strong>to_query</strong> &#x21d2; Object </a>
1166
1234
 
1167
1235
 
1168
1236
 
@@ -1614,7 +1682,7 @@
1614
1682
  <div class="method_details ">
1615
1683
  <h3 class="signature " id="add_tags!-instance_method">
1616
1684
 
1617
- #<strong>add_tags!</strong>(tags, remove: false) &#x21d2; <tt>Object</tt>
1685
+ #<strong>add_tags!</strong>(tags, remove: false) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1618
1686
 
1619
1687
 
1620
1688
 
@@ -1642,7 +1710,7 @@
1642
1710
  <div class="method_details ">
1643
1711
  <h3 class="signature " id="cap_first-instance_method">
1644
1712
 
1645
- #<strong>cap_first</strong> &#x21d2; <tt>Object</tt>
1713
+ #<strong>cap_first</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1646
1714
 
1647
1715
 
1648
1716
 
@@ -1837,7 +1905,7 @@ added to a Time object</p>
1837
1905
  <div class="method_details ">
1838
1906
  <h3 class="signature " id="clean_unlinked_urls-instance_method">
1839
1907
 
1840
- #<strong>clean_unlinked_urls</strong> &#x21d2; <tt>Object</tt>
1908
+ #<strong>clean_unlinked_urls</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1841
1909
 
1842
1910
 
1843
1911
 
@@ -1859,7 +1927,7 @@ added to a Time object</p>
1859
1927
  <div class="method_details ">
1860
1928
  <h3 class="signature " id="compress-instance_method">
1861
1929
 
1862
- #<strong>compress</strong> &#x21d2; <tt>Object</tt>
1930
+ #<strong>compress</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1863
1931
 
1864
1932
 
1865
1933
 
@@ -1881,7 +1949,7 @@ added to a Time object</p>
1881
1949
  <div class="method_details ">
1882
1950
  <h3 class="signature " id="compress!-instance_method">
1883
1951
 
1884
- #<strong>compress!</strong> &#x21d2; <tt>Object</tt>
1952
+ #<strong>compress!</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1885
1953
 
1886
1954
 
1887
1955
 
@@ -1893,7 +1961,7 @@ added to a Time object</p>
1893
1961
  <div class="method_details ">
1894
1962
  <h3 class="signature " id="dedup_tags-instance_method">
1895
1963
 
1896
- #<strong>dedup_tags</strong> &#x21d2; <tt>Object</tt>
1964
+ #<strong>dedup_tags</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1897
1965
 
1898
1966
 
1899
1967
 
@@ -1932,7 +2000,7 @@ added to a Time object</p>
1932
2000
  <div class="method_details ">
1933
2001
  <h3 class="signature " id="dedup_tags!-instance_method">
1934
2002
 
1935
- #<strong>dedup_tags!</strong> &#x21d2; <tt>Object</tt>
2003
+ #<strong>dedup_tags!</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1936
2004
 
1937
2005
 
1938
2006
 
@@ -1960,7 +2028,7 @@ added to a Time object</p>
1960
2028
  <div class="method_details ">
1961
2029
  <h3 class="signature " id="expand_date_tags-instance_method">
1962
2030
 
1963
- #<strong>expand_date_tags</strong>(additional_tags = nil) &#x21d2; <tt>Object</tt>
2031
+ #<strong>expand_date_tags</strong>(additional_tags = nil) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
1964
2032
 
1965
2033
 
1966
2034
 
@@ -2001,13 +2069,53 @@ consider date_tags</p>
2001
2069
  </ul>
2002
2070
 
2003
2071
 
2072
+ </div>
2073
+ </div>
2074
+
2075
+ <div class="method_details ">
2076
+ <h3 class="signature " id="good?-instance_method">
2077
+
2078
+ #<strong>good?</strong> &#x21d2; <tt>Boolean</tt>
2079
+
2080
+
2081
+
2082
+
2083
+
2084
+ </h3><div class="docstring">
2085
+ <div class="discussion">
2086
+ <p>Tests if object is nil or empty</p>
2087
+
2088
+
2089
+ </div>
2090
+ </div>
2091
+ <div class="tags">
2092
+
2093
+ <p class="tag_title">Returns:</p>
2094
+ <ul class="return">
2095
+
2096
+ <li>
2097
+
2098
+
2099
+ <span class='type'>(<tt>Boolean</tt>)</span>
2100
+
2101
+
2102
+
2103
+ &mdash;
2104
+ <div class='inline'><p>true if object is defined and
2105
+ has content</p>
2106
+ </div>
2107
+
2108
+ </li>
2109
+
2110
+ </ul>
2111
+
2004
2112
  </div>
2005
2113
  </div>
2006
2114
 
2007
2115
  <div class="method_details ">
2008
2116
  <h3 class="signature " id="highlight_search-instance_method">
2009
2117
 
2010
- #<strong>highlight_search</strong>(search, distance: nil, negate: false, case_type: nil) &#x21d2; <tt>Object</tt>
2118
+ #<strong>highlight_search</strong>(search, distance: nil, negate: false, case_type: nil) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2011
2119
 
2012
2120
 
2013
2121
 
@@ -2019,7 +2127,7 @@ consider date_tags</p>
2019
2127
  <div class="method_details ">
2020
2128
  <h3 class="signature " id="highlight_search!-instance_method">
2021
2129
 
2022
- #<strong>highlight_search!</strong>(search, distance: nil, negate: false, case_type: nil) &#x21d2; <tt>Object</tt>
2130
+ #<strong>highlight_search!</strong>(search, distance: nil, negate: false, case_type: nil) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2023
2131
 
2024
2132
 
2025
2133
 
@@ -2091,7 +2199,7 @@ consider date_tags</p>
2091
2199
  <div class="method_details ">
2092
2200
  <h3 class="signature " id="highlight_tags!-instance_method">
2093
2201
 
2094
- #<strong>highlight_tags!</strong>(color = &#39;yellow&#39;, last_color: nil) &#x21d2; <tt>Object</tt>
2202
+ #<strong>highlight_tags!</strong>(color = &#39;yellow&#39;, last_color: nil) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2095
2203
 
2096
2204
 
2097
2205
 
@@ -2172,7 +2280,7 @@ consider date_tags</p>
2172
2280
  <div class="method_details ">
2173
2281
  <h3 class="signature " id="ignore_case-instance_method">
2174
2282
 
2175
- #<strong>ignore_case</strong>(search, case_type) &#x21d2; <tt>Object</tt>
2283
+ #<strong>ignore_case</strong>(search, case_type) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2176
2284
 
2177
2285
 
2178
2286
 
@@ -2303,7 +2411,7 @@ may not render the same style.</p>
2303
2411
  <div class="method_details ">
2304
2412
  <h3 class="signature " id="link_urls-instance_method">
2305
2413
 
2306
- #<strong>link_urls</strong>(**opt) &#x21d2; <tt>Object</tt>
2414
+ #<strong>link_urls</strong>(**opt) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2307
2415
 
2308
2416
 
2309
2417
 
@@ -2367,7 +2475,7 @@ may not render the same style.</p>
2367
2475
  <div class="method_details ">
2368
2476
  <h3 class="signature " id="link_urls!-instance_method">
2369
2477
 
2370
- #<strong>link_urls!</strong>(**opt) &#x21d2; <tt>Object</tt>
2478
+ #<strong>link_urls!</strong>(**opt) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2371
2479
 
2372
2480
 
2373
2481
 
@@ -2434,7 +2542,7 @@ may not render the same style.</p>
2434
2542
  <div class="method_details ">
2435
2543
  <h3 class="signature " id="normalize_age!-instance_method">
2436
2544
 
2437
- #<strong>normalize_age!</strong>(default = :newest) &#x21d2; <tt>Object</tt>
2545
+ #<strong>normalize_age!</strong>(default = :newest) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2438
2546
 
2439
2547
 
2440
2548
 
@@ -2462,7 +2570,7 @@ may not render the same style.</p>
2462
2570
  <div class="method_details ">
2463
2571
  <h3 class="signature " id="normalize_bool-instance_method">
2464
2572
 
2465
- #<strong>normalize_bool</strong>(default = :and) &#x21d2; <tt>Object</tt>
2573
+ #<strong>normalize_bool</strong>(default = :and) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2466
2574
 
2467
2575
 
2468
2576
 
@@ -2501,7 +2609,7 @@ may not render the same style.</p>
2501
2609
  <div class="method_details ">
2502
2610
  <h3 class="signature " id="normalize_bool!-instance_method">
2503
2611
 
2504
- #<strong>normalize_bool!</strong>(default = :and) &#x21d2; <tt>Object</tt>
2612
+ #<strong>normalize_bool!</strong>(default = :and) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2505
2613
 
2506
2614
 
2507
2615
 
@@ -2529,7 +2637,7 @@ may not render the same style.</p>
2529
2637
  <div class="method_details ">
2530
2638
  <h3 class="signature " id="normalize_case-instance_method">
2531
2639
 
2532
- #<strong>normalize_case</strong>(default = :smart) &#x21d2; <tt>Object</tt>
2640
+ #<strong>normalize_case</strong>(default = :smart) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2533
2641
 
2534
2642
 
2535
2643
 
@@ -2568,7 +2676,7 @@ may not render the same style.</p>
2568
2676
  <div class="method_details ">
2569
2677
  <h3 class="signature " id="normalize_case!-instance_method">
2570
2678
 
2571
- #<strong>normalize_case!</strong> &#x21d2; <tt>Object</tt>
2679
+ #<strong>normalize_case!</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2572
2680
 
2573
2681
 
2574
2682
 
@@ -2596,7 +2704,7 @@ may not render the same style.</p>
2596
2704
  <div class="method_details ">
2597
2705
  <h3 class="signature " id="normalize_matching-instance_method">
2598
2706
 
2599
- #<strong>normalize_matching</strong>(default = :pattern) &#x21d2; <tt>Object</tt>
2707
+ #<strong>normalize_matching</strong>(default = :pattern) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2600
2708
 
2601
2709
 
2602
2710
 
@@ -2658,7 +2766,7 @@ doesn&#39;t match a known symbol</p>
2658
2766
  <div class="method_details ">
2659
2767
  <h3 class="signature " id="normalize_matching!-instance_method">
2660
2768
 
2661
- #<strong>normalize_matching!</strong>(default = :pattern) &#x21d2; <tt>Object</tt>
2769
+ #<strong>normalize_matching!</strong>(default = :pattern) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2662
2770
 
2663
2771
 
2664
2772
 
@@ -2686,7 +2794,7 @@ doesn&#39;t match a known symbol</p>
2686
2794
  <div class="method_details ">
2687
2795
  <h3 class="signature " id="normalize_order-instance_method">
2688
2796
 
2689
- #<strong>normalize_order</strong>(default = &#39;asc&#39;) &#x21d2; <tt>Object</tt>
2797
+ #<strong>normalize_order</strong>(default = &#39;asc&#39;) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2690
2798
 
2691
2799
 
2692
2800
 
@@ -2777,7 +2885,7 @@ to avoid match groups</p>
2777
2885
  <div class="method_details ">
2778
2886
  <h3 class="signature " id="normalize_trigger!-instance_method">
2779
2887
 
2780
- #<strong>normalize_trigger!</strong> &#x21d2; <tt>Object</tt>
2888
+ #<strong>normalize_trigger!</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2781
2889
 
2782
2890
 
2783
2891
 
@@ -2799,13 +2907,52 @@ to avoid match groups</p>
2799
2907
 
2800
2908
  </ul>
2801
2909
 
2910
+ </div>
2911
+ </div>
2912
+
2913
+ <div class="method_details ">
2914
+ <h3 class="signature " id="remove_at-instance_method">
2915
+
2916
+ #<strong>remove_at</strong> &#x21d2; <tt><span class='object_link'><a href="" title="String (class)">String</a></span></tt>
2917
+
2918
+
2919
+
2920
+
2921
+
2922
+ </h3><div class="docstring">
2923
+ <div class="discussion">
2924
+ <p>Removes @ prefix if needed, maintains +/- prefix</p>
2925
+
2926
+
2927
+ </div>
2928
+ </div>
2929
+ <div class="tags">
2930
+
2931
+ <p class="tag_title">Returns:</p>
2932
+ <ul class="return">
2933
+
2934
+ <li>
2935
+
2936
+
2937
+ <span class='type'>(<tt><span class='object_link'><a href="" title="String (class)">String</a></span></tt>)</span>
2938
+
2939
+
2940
+
2941
+ &mdash;
2942
+ <div class='inline'><p>string without @ prefix</p>
2943
+ </div>
2944
+
2945
+ </li>
2946
+
2947
+ </ul>
2948
+
2802
2949
  </div>
2803
2950
  </div>
2804
2951
 
2805
2952
  <div class="method_details ">
2806
2953
  <h3 class="signature " id="remove_self_links-instance_method">
2807
2954
 
2808
- #<strong>remove_self_links</strong> &#x21d2; <tt>Object</tt>
2955
+ #<strong>remove_self_links</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2809
2956
 
2810
2957
 
2811
2958
 
@@ -2827,7 +2974,7 @@ to avoid match groups</p>
2827
2974
  <div class="method_details ">
2828
2975
  <h3 class="signature " id="replace_qualified_urls-instance_method">
2829
2976
 
2830
- #<strong>replace_qualified_urls</strong>(**options) &#x21d2; <tt>Object</tt>
2977
+ #<strong>replace_qualified_urls</strong>(**options) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2831
2978
 
2832
2979
 
2833
2980
 
@@ -2849,7 +2996,7 @@ to avoid match groups</p>
2849
2996
  <div class="method_details ">
2850
2997
  <h3 class="signature " id="set_type-instance_method">
2851
2998
 
2852
- #<strong>set_type</strong>(kind = nil) &#x21d2; <tt>Object</tt>
2999
+ #<strong>set_type</strong>(kind = nil) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2853
3000
 
2854
3001
 
2855
3002
 
@@ -2916,7 +3063,7 @@ not recognized)</p>
2916
3063
  <div class="method_details ">
2917
3064
  <h3 class="signature " id="simple_wrap-instance_method">
2918
3065
 
2919
- #<strong>simple_wrap</strong>(width) &#x21d2; <tt>Object</tt>
3066
+ #<strong>simple_wrap</strong>(width) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
2920
3067
 
2921
3068
 
2922
3069
 
@@ -2940,8 +3087,6 @@ not recognized)</p>
2940
3087
  DateTime objects as [start, end]. If only one date is
2941
3088
  given, end time is nil.</p>
2942
3089
 
2943
- <p>&quot;mon 3pm to mon 5pm&quot;.split_date_range</p>
2944
-
2945
3090
 
2946
3091
  </div>
2947
3092
  </div>
@@ -2954,7 +3099,7 @@ given, end time is nil.</p>
2954
3099
  <p class="example_title"><div class='inline'><p>Process a natural language date range</p>
2955
3100
  </div></p>
2956
3101
 
2957
- <pre class="example code"><code></code></pre>
3102
+ <pre class="example code"><code><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>mon 3pm to mon 5pm</span><span class='tstring_end'>&quot;</span></span><span class='period'>.</span><span class='id identifier rubyid_split_date_range'>split_date_range</span></code></pre>
2958
3103
 
2959
3104
  </div>
2960
3105
 
@@ -3143,7 +3288,7 @@ array</p>
3143
3288
  <div class="method_details ">
3144
3289
  <h3 class="signature " id="tag!-instance_method">
3145
3290
 
3146
- #<strong>tag!</strong>(tag, **options) &#x21d2; <tt>Object</tt>
3291
+ #<strong>tag!</strong>(tag, **options) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3147
3292
 
3148
3293
 
3149
3294
 
@@ -3172,7 +3317,7 @@ array</p>
3172
3317
  <div class="method_details ">
3173
3318
  <h3 class="signature " id="time_string-instance_method">
3174
3319
 
3175
- #<strong>time_string</strong>(format: :dhm) &#x21d2; <tt>Object</tt>
3320
+ #<strong>time_string</strong>(format: :dhm) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3176
3321
 
3177
3322
 
3178
3323
 
@@ -3215,7 +3360,7 @@ array</p>
3215
3360
  <div class="method_details ">
3216
3361
  <h3 class="signature " id="to_bool-instance_method">
3217
3362
 
3218
- #<strong>to_bool</strong> &#x21d2; <tt>Object</tt>
3363
+ #<strong>to_bool</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3219
3364
 
3220
3365
 
3221
3366
 
@@ -3227,7 +3372,7 @@ array</p>
3227
3372
  <div class="method_details ">
3228
3373
  <h3 class="signature " id="to_p-instance_method">
3229
3374
 
3230
- #<strong>to_p</strong>(number) &#x21d2; <tt>Object</tt>
3375
+ #<strong>to_p</strong>(number) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3231
3376
 
3232
3377
 
3233
3378
 
@@ -3269,7 +3414,19 @@ object the string represents</p>
3269
3414
  <div class="method_details ">
3270
3415
  <h3 class="signature " id="to_phrase_query-instance_method">
3271
3416
 
3272
- #<strong>to_phrase_query</strong>(query) &#x21d2; <tt>Object</tt>
3417
+ #<strong>to_phrase_query</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3418
+
3419
+
3420
+
3421
+
3422
+
3423
+ </h3>
3424
+ </div>
3425
+
3426
+ <div class="method_details ">
3427
+ <h3 class="signature " id="to_query-instance_method">
3428
+
3429
+ #<strong>to_query</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3273
3430
 
3274
3431
 
3275
3432
 
@@ -3302,10 +3459,8 @@ haystack, spaces indicate unlimited distance.</p>
3302
3459
  <p class="tag_title">Examples:</p>
3303
3460
 
3304
3461
 
3305
- <p class="example_title"><div class='inline'><p><code>&quot;this word&quot;.to_rx(2) =&gt; /t.{0,3}h.{0,3}i.{0,3}s.{0,3}.*?w.{0,3}o.{0,3}r.{0,3}d/</code></p>
3306
- </div></p>
3307
-
3308
- <pre class="example code"><code></code></pre>
3462
+ <pre class="example code"><code><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>this word</span><span class='tstring_end'>&quot;</span></span><span class='period'>.</span><span class='id identifier rubyid_to_rx'>to_rx</span><span class='lparen'>(</span><span class='int'>3</span><span class='rparen'>)</span>
3463
+ <span class='comment'># =&gt; /t.{0,3}h.{0,3}i.{0,3}s.{0,3}.*?w.{0,3}o.{0,3}r.{0,3}d/</span></code></pre>
3309
3464
 
3310
3465
  </div>
3311
3466
  <p class="tag_title">Parameters:</p>
@@ -3465,7 +3620,7 @@ can include parenthetical values (with spaces)</p>
3465
3620
  <div class="method_details ">
3466
3621
  <h3 class="signature " id="truncate-instance_method">
3467
3622
 
3468
- #<strong>truncate</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt>Object</tt>
3623
+ #<strong>truncate</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3469
3624
 
3470
3625
 
3471
3626
 
@@ -3506,7 +3661,7 @@ can include parenthetical values (with spaces)</p>
3506
3661
  <div class="method_details ">
3507
3662
  <h3 class="signature " id="truncate!-instance_method">
3508
3663
 
3509
- #<strong>truncate!</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt>Object</tt>
3664
+ #<strong>truncate!</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3510
3665
 
3511
3666
 
3512
3667
 
@@ -3518,7 +3673,7 @@ can include parenthetical values (with spaces)</p>
3518
3673
  <div class="method_details ">
3519
3674
  <h3 class="signature " id="truncmiddle-instance_method">
3520
3675
 
3521
- #<strong>truncmiddle</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt>Object</tt>
3676
+ #<strong>truncmiddle</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3522
3677
 
3523
3678
 
3524
3679
 
@@ -3576,7 +3731,7 @@ can include parenthetical values (with spaces)</p>
3576
3731
  <div class="method_details ">
3577
3732
  <h3 class="signature " id="truncmiddle!-instance_method">
3578
3733
 
3579
- #<strong>truncmiddle!</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt>Object</tt>
3734
+ #<strong>truncmiddle!</strong>(len, ellipsis: &#39;...&#39;) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3580
3735
 
3581
3736
 
3582
3737
 
@@ -3627,7 +3782,7 @@ can include parenthetical values (with spaces)</p>
3627
3782
  <div class="method_details ">
3628
3783
  <h3 class="signature " id="uncolor-instance_method">
3629
3784
 
3630
- #<strong>uncolor</strong> &#x21d2; <tt>Object</tt>
3785
+ #<strong>uncolor</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3631
3786
 
3632
3787
 
3633
3788
 
@@ -3666,7 +3821,7 @@ can include parenthetical values (with spaces)</p>
3666
3821
  <div class="method_details ">
3667
3822
  <h3 class="signature " id="uncolor!-instance_method">
3668
3823
 
3669
- #<strong>uncolor!</strong> &#x21d2; <tt>Object</tt>
3824
+ #<strong>uncolor!</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3670
3825
 
3671
3826
 
3672
3827
 
@@ -3765,7 +3920,7 @@ Uses \S (non-whitespace) instead of . (any character)</p>
3765
3920
  <div class="method_details ">
3766
3921
  <h3 class="signature " id="wrap-instance_method">
3767
3922
 
3768
- #<strong>wrap</strong>(len, pad: 0, indent: &#39; &#39;, offset: 0, prefix: &#39;&#39;, color: &#39;&#39;, after: &#39;&#39;, reset: &#39;&#39;, pad_first: false) &#x21d2; <tt>Object</tt>
3923
+ #<strong>wrap</strong>(len, pad: 0, indent: &#39; &#39;, offset: 0, prefix: &#39;&#39;, color: &#39;&#39;, after: &#39;&#39;, reset: &#39;&#39;, pad_first: false) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
3769
3924
 
3770
3925
 
3771
3926
 
@@ -3842,7 +3997,7 @@ Uses \S (non-whitespace) instead of . (any character)</p>
3842
3997
  </div>
3843
3998
 
3844
3999
  <div id="footer">
3845
- Generated on Thu Jan 20 12:10:33 2022 by
4000
+ Generated on Sun Jan 23 09:24:05 2022 by
3846
4001
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
3847
4002
  0.9.27 (ruby-3.0.1).
3848
4003
  </div>
data/docs/doc/Symbol.html CHANGED
@@ -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">Symbol</li>
78
78
 
@@ -246,7 +246,7 @@
246
246
  <div class="method_details first">
247
247
  <h3 class="signature first" id="normalize_age-instance_method">
248
248
 
249
- #<strong>normalize_age</strong>(default = :newest) &#x21d2; <tt>Object</tt>
249
+ #<strong>normalize_age</strong>(default = :newest) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
250
250
 
251
251
 
252
252
 
@@ -258,7 +258,7 @@
258
258
  <div class="method_details ">
259
259
  <h3 class="signature " id="normalize_bool-instance_method">
260
260
 
261
- #<strong>normalize_bool</strong>(default = :and) &#x21d2; <tt>Object</tt>
261
+ #<strong>normalize_bool</strong>(default = :and) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
262
262
 
263
263
 
264
264
 
@@ -270,7 +270,7 @@
270
270
  <div class="method_details ">
271
271
  <h3 class="signature " id="normalize_case-instance_method">
272
272
 
273
- #<strong>normalize_case</strong> &#x21d2; <tt>Object</tt>
273
+ #<strong>normalize_case</strong> &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
274
274
 
275
275
 
276
276
 
@@ -282,7 +282,7 @@
282
282
  <div class="method_details ">
283
283
  <h3 class="signature " id="normalize_matching-instance_method">
284
284
 
285
- #<strong>normalize_matching</strong>(default = :pattern) &#x21d2; <tt>Object</tt>
285
+ #<strong>normalize_matching</strong>(default = :pattern) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
286
286
 
287
287
 
288
288
 
@@ -294,7 +294,7 @@
294
294
  <div class="method_details ">
295
295
  <h3 class="signature " id="normalize_order-instance_method">
296
296
 
297
- #<strong>normalize_order</strong>(default = &#39;asc&#39;) &#x21d2; <tt>Object</tt>
297
+ #<strong>normalize_order</strong>(default = &#39;asc&#39;) &#x21d2; <tt><span class='object_link'><a href="Object.html" title="Object (class)">Object</a></span></tt>
298
298
 
299
299
 
300
300
 
@@ -308,7 +308,7 @@
308
308
  </div>
309
309
 
310
310
  <div id="footer">
311
- Generated on Thu Jan 20 12:10:33 2022 by
311
+ Generated on Sun Jan 23 09:24:05 2022 by
312
312
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
313
313
  0.9.27 (ruby-3.0.1).
314
314
  </div>