doing 2.1.1pre → 2.1.5pre

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 (92) hide show
  1. checksums.yaml +4 -4
  2. data/.yardoc/checksums +19 -15
  3. data/.yardoc/object_types +0 -0
  4. data/.yardoc/objects/root.dat +0 -0
  5. data/CHANGELOG.md +58 -8
  6. data/Gemfile.lock +25 -1
  7. data/README.md +1 -1
  8. data/Rakefile +2 -0
  9. data/bin/doing +447 -149
  10. data/doc/Array.html +63 -1
  11. data/doc/BooleanTermParser/Clause.html +293 -0
  12. data/doc/BooleanTermParser/Operator.html +172 -0
  13. data/doc/BooleanTermParser/Query.html +417 -0
  14. data/doc/BooleanTermParser/QueryParser.html +135 -0
  15. data/doc/BooleanTermParser/QueryTransformer.html +124 -0
  16. data/doc/BooleanTermParser.html +115 -0
  17. data/doc/Doing/CLIFormat.html +131 -0
  18. data/doc/Doing/Color.html +2 -2
  19. data/doc/Doing/Completion.html +1 -1
  20. data/doc/Doing/Configuration.html +168 -73
  21. data/doc/Doing/Errors/DoingNoTraceError.html +1 -1
  22. data/doc/Doing/Errors/DoingRuntimeError.html +1 -1
  23. data/doc/Doing/Errors/DoingStandardError.html +1 -1
  24. data/doc/Doing/Errors/EmptyInput.html +1 -1
  25. data/doc/Doing/Errors/NoResults.html +1 -1
  26. data/doc/Doing/Errors/PluginException.html +1 -1
  27. data/doc/Doing/Errors/UserCancelled.html +1 -1
  28. data/doc/Doing/Errors/WrongCommand.html +1 -1
  29. data/doc/Doing/Errors.html +1 -1
  30. data/doc/Doing/Hooks.html +1 -1
  31. data/doc/Doing/Item.html +177 -86
  32. data/doc/Doing/Items.html +36 -2
  33. data/doc/Doing/LogAdapter.html +70 -1
  34. data/doc/Doing/Note.html +5 -134
  35. data/doc/Doing/Pager.html +1 -1
  36. data/doc/Doing/Plugins.html +380 -40
  37. data/doc/Doing/Prompt.html +70 -18
  38. data/doc/Doing/Section.html +1 -1
  39. data/doc/Doing/TemplateString.html +713 -0
  40. data/doc/Doing/Util/Backup.html +686 -0
  41. data/doc/Doing/Util.html +16 -4
  42. data/doc/Doing/WWID.html +133 -73
  43. data/doc/Doing.html +4 -4
  44. data/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
  45. data/doc/GLI/Commands.html +1 -1
  46. data/doc/GLI.html +1 -1
  47. data/doc/Hash.html +1 -1
  48. data/doc/PhraseParser/Operator.html +172 -0
  49. data/doc/PhraseParser/PhraseClause.html +303 -0
  50. data/doc/PhraseParser/Query.html +495 -0
  51. data/doc/PhraseParser/QueryParser.html +136 -0
  52. data/doc/PhraseParser/QueryTransformer.html +124 -0
  53. data/doc/PhraseParser/TermClause.html +293 -0
  54. data/doc/PhraseParser.html +115 -0
  55. data/doc/Status.html +1 -1
  56. data/doc/String.html +319 -13
  57. data/doc/Symbol.html +35 -1
  58. data/doc/Time.html +70 -2
  59. data/doc/_index.html +132 -4
  60. data/doc/class_list.html +1 -1
  61. data/doc/file.README.html +2 -2
  62. data/doc/index.html +2 -2
  63. data/doc/method_list.html +648 -160
  64. data/doc/top-level-namespace.html +2 -2
  65. data/doing.gemspec +3 -0
  66. data/doing.rdoc +263 -82
  67. data/lib/completion/doing.bash +18 -18
  68. data/lib/doing/array.rb +9 -0
  69. data/lib/doing/boolean_term_parser.rb +86 -0
  70. data/lib/doing/configuration.rb +63 -24
  71. data/lib/doing/item.rb +112 -10
  72. data/lib/doing/items.rb +6 -0
  73. data/lib/doing/log_adapter.rb +28 -0
  74. data/lib/doing/note.rb +31 -30
  75. data/lib/doing/phrase_parser.rb +124 -0
  76. data/lib/doing/plugin_manager.rb +57 -13
  77. data/lib/doing/plugins/export/dayone_export.rb +209 -0
  78. data/lib/doing/plugins/export/template_export.rb +113 -81
  79. data/lib/doing/prompt.rb +26 -13
  80. data/lib/doing/string.rb +114 -29
  81. data/lib/doing/string_chronify.rb +5 -1
  82. data/lib/doing/symbol.rb +4 -0
  83. data/lib/doing/template_string.rb +197 -0
  84. data/lib/doing/time.rb +32 -0
  85. data/lib/doing/util.rb +6 -7
  86. data/lib/doing/util_backup.rb +287 -0
  87. data/lib/doing/version.rb +1 -1
  88. data/lib/doing/wwid.rb +152 -55
  89. data/lib/doing.rb +9 -0
  90. data/lib/templates/doing-dayone-entry.erb +6 -0
  91. data/lib/templates/doing-dayone.erb +5 -0
  92. metadata +85 -2
data/doc/Doing/Util.html CHANGED
@@ -81,14 +81,16 @@
81
81
 
82
82
  <dl>
83
83
  <dt>Included in:</dt>
84
- <dd><span class='object_link'><a href="" title="Doing::Util (module)">Util</a></span></dd>
84
+ <dd><span class='object_link'><a href="" title="Doing::Util (module)">Util</a></span>, <span class='object_link'><a href="Util/Backup.html" title="Doing::Util::Backup (module)">Backup</a></span></dd>
85
85
  </dl>
86
86
 
87
87
 
88
88
 
89
89
  <dl>
90
90
  <dt>Defined in:</dt>
91
- <dd>lib/doing/util.rb</dd>
91
+ <dd>lib/doing/util.rb<span class="defines">,<br />
92
+ lib/doing/util_backup.rb</span>
93
+ </dd>
92
94
  </dl>
93
95
 
94
96
  </div>
@@ -103,7 +105,17 @@
103
105
  <div class="tags">
104
106
 
105
107
 
106
- </div>
108
+ </div><h2>Defined Under Namespace</h2>
109
+ <p class="children">
110
+
111
+
112
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="Util/Backup.html" title="Doing::Util::Backup (module)">Backup</a></span>
113
+
114
+
115
+
116
+
117
+ </p>
118
+
107
119
 
108
120
 
109
121
 
@@ -916,7 +928,7 @@ other_hash - the other hash whose values will be persisted after the merge</p>
916
928
  </div>
917
929
 
918
930
  <div id="footer">
919
- Generated on Sat Nov 27 13:57:12 2021 by
931
+ Generated on Sun Dec 19 12:35:32 2021 by
920
932
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
921
933
  0.9.26 (ruby-3.0.1).
922
934
  </div>
data/doc/Doing/WWID.html CHANGED
@@ -405,7 +405,7 @@
405
405
  <li class="public ">
406
406
  <span class="summary_signature">
407
407
 
408
- <a href="#all_tags-instance_method" title="#all_tags (instance method)">#<strong>all_tags</strong>(items, opt: {}) &#x21d2; Object </a>
408
+ <a href="#all_tags-instance_method" title="#all_tags (instance method)">#<strong>all_tags</strong>(items, opt: {}, counts: false) &#x21d2; Object </a>
409
409
 
410
410
 
411
411
 
@@ -473,7 +473,7 @@
473
473
  <li class="public ">
474
474
  <span class="summary_signature">
475
475
 
476
- <a href="#choose_section-instance_method" title="#choose_section (instance method)">#<strong>choose_section</strong> &#x21d2; String </a>
476
+ <a href="#choose_section-instance_method" title="#choose_section (instance method)">#<strong>choose_section</strong>(include_all: false) &#x21d2; String </a>
477
477
 
478
478
 
479
479
 
@@ -490,6 +490,52 @@
490
490
  <span class="summary_desc"><div class='inline'><p>Generate a menu of sections and allow user selection.</p>
491
491
  </div></span>
492
492
 
493
+ </li>
494
+
495
+
496
+ <li class="public ">
497
+ <span class="summary_signature">
498
+
499
+ <a href="#choose_section_tag-instance_method" title="#choose_section_tag (instance method)">#<strong>choose_section_tag</strong> &#x21d2; String </a>
500
+
501
+
502
+
503
+ </span>
504
+
505
+
506
+
507
+
508
+
509
+
510
+
511
+
512
+
513
+ <span class="summary_desc"><div class='inline'><p>Generate a menu of sections and tags and allow user selection.</p>
514
+ </div></span>
515
+
516
+ </li>
517
+
518
+
519
+ <li class="public ">
520
+ <span class="summary_signature">
521
+
522
+ <a href="#choose_tag-instance_method" title="#choose_tag (instance method)">#<strong>choose_tag</strong>(section = &#39;All&#39;, items: nil, include_all: false) &#x21d2; String </a>
523
+
524
+
525
+
526
+ </span>
527
+
528
+
529
+
530
+
531
+
532
+
533
+
534
+
535
+
536
+ <span class="summary_desc"><div class='inline'><p>Generate a menu of tags and allow user selection.</p>
537
+ </div></span>
538
+
493
539
  </li>
494
540
 
495
541
 
@@ -980,7 +1026,7 @@
980
1026
  <li class="public ">
981
1027
  <span class="summary_signature">
982
1028
 
983
- <a href="#list_section-instance_method" title="#list_section (instance method)">#<strong>list_section</strong>(opt = {}) &#x21d2; Object </a>
1029
+ <a href="#list_section-instance_method" title="#list_section (instance method)">#<strong>list_section</strong>(opt = {}, items: Items.new) &#x21d2; Object </a>
984
1030
 
985
1031
 
986
1032
 
@@ -1118,7 +1164,7 @@
1118
1164
  <li class="public ">
1119
1165
  <span class="summary_signature">
1120
1166
 
1121
- <a href="#reset_item-instance_method" title="#reset_item (instance method)">#<strong>reset_item</strong>(item, resume: false) &#x21d2; Object </a>
1167
+ <a href="#reset_item-instance_method" title="#reset_item (instance method)">#<strong>reset_item</strong>(item, date: nil, resume: false) &#x21d2; Object </a>
1122
1168
 
1123
1169
 
1124
1170
 
@@ -1135,29 +1181,6 @@
1135
1181
  <span class="summary_desc"><div class='inline'><p>Reset start date to current time, optionally remove done tag (resume).</p>
1136
1182
  </div></span>
1137
1183
 
1138
- </li>
1139
-
1140
-
1141
- <li class="public ">
1142
- <span class="summary_signature">
1143
-
1144
- <a href="#restore_backup-instance_method" title="#restore_backup (instance method)">#<strong>restore_backup</strong>(file) &#x21d2; Object </a>
1145
-
1146
-
1147
-
1148
- </span>
1149
-
1150
-
1151
-
1152
-
1153
-
1154
-
1155
-
1156
-
1157
-
1158
- <span class="summary_desc"><div class='inline'><p>Restore a backed up version of a file.</p>
1159
- </div></span>
1160
-
1161
1184
  </li>
1162
1185
 
1163
1186
 
@@ -1943,7 +1966,7 @@
1943
1966
  <div class="method_details ">
1944
1967
  <h3 class="signature " id="all_tags-instance_method">
1945
1968
 
1946
- #<strong>all_tags</strong>(items, opt: {}) &#x21d2; <tt>Object</tt>
1969
+ #<strong>all_tags</strong>(items, opt: {}, counts: false) &#x21d2; <tt>Object</tt>
1947
1970
 
1948
1971
 
1949
1972
 
@@ -2059,7 +2082,7 @@ untagged keyword</p>
2059
2082
  <div class="method_details ">
2060
2083
  <h3 class="signature " id="choose_section-instance_method">
2061
2084
 
2062
- #<strong>choose_section</strong> &#x21d2; <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
2085
+ #<strong>choose_section</strong>(include_all: false) &#x21d2; <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
2063
2086
 
2064
2087
 
2065
2088
 
@@ -2092,6 +2115,84 @@ untagged keyword</p>
2092
2115
 
2093
2116
  </ul>
2094
2117
 
2118
+ </div>
2119
+ </div>
2120
+
2121
+ <div class="method_details ">
2122
+ <h3 class="signature " id="choose_section_tag-instance_method">
2123
+
2124
+ #<strong>choose_section_tag</strong> &#x21d2; <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
2125
+
2126
+
2127
+
2128
+
2129
+
2130
+ </h3><div class="docstring">
2131
+ <div class="discussion">
2132
+ <p>Generate a menu of sections and tags and allow user selection</p>
2133
+
2134
+
2135
+ </div>
2136
+ </div>
2137
+ <div class="tags">
2138
+
2139
+ <p class="tag_title">Returns:</p>
2140
+ <ul class="return">
2141
+
2142
+ <li>
2143
+
2144
+
2145
+ <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
2146
+
2147
+
2148
+
2149
+ &mdash;
2150
+ <div class='inline'><p>The selected section or tag name</p>
2151
+ </div>
2152
+
2153
+ </li>
2154
+
2155
+ </ul>
2156
+
2157
+ </div>
2158
+ </div>
2159
+
2160
+ <div class="method_details ">
2161
+ <h3 class="signature " id="choose_tag-instance_method">
2162
+
2163
+ #<strong>choose_tag</strong>(section = &#39;All&#39;, items: nil, include_all: false) &#x21d2; <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
2164
+
2165
+
2166
+
2167
+
2168
+
2169
+ </h3><div class="docstring">
2170
+ <div class="discussion">
2171
+ <p>Generate a menu of tags and allow user selection</p>
2172
+
2173
+
2174
+ </div>
2175
+ </div>
2176
+ <div class="tags">
2177
+
2178
+ <p class="tag_title">Returns:</p>
2179
+ <ul class="return">
2180
+
2181
+ <li>
2182
+
2183
+
2184
+ <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
2185
+
2186
+
2187
+
2188
+ &mdash;
2189
+ <div class='inline'><p>The selected tag name</p>
2190
+ </div>
2191
+
2192
+ </li>
2193
+
2194
+ </ul>
2195
+
2095
2196
  </div>
2096
2197
  </div>
2097
2198
 
@@ -3332,7 +3433,7 @@ All</p>
3332
3433
  <div class="method_details ">
3333
3434
  <h3 class="signature " id="list_section-instance_method">
3334
3435
 
3335
- #<strong>list_section</strong>(opt = {}) &#x21d2; <tt>Object</tt>
3436
+ #<strong>list_section</strong>(opt = {}, items: Items.new) &#x21d2; <tt>Object</tt>
3336
3437
 
3337
3438
 
3338
3439
 
@@ -3739,7 +3840,7 @@ All</p>
3739
3840
  <div class="method_details ">
3740
3841
  <h3 class="signature " id="reset_item-instance_method">
3741
3842
 
3742
- #<strong>reset_item</strong>(item, resume: false) &#x21d2; <tt>Object</tt>
3843
+ #<strong>reset_item</strong>(item, date: nil, resume: false) &#x21d2; <tt>Object</tt>
3743
3844
 
3744
3845
 
3745
3846
 
@@ -3792,47 +3893,6 @@ done tag (resume)</p>
3792
3893
  </ul>
3793
3894
 
3794
3895
 
3795
- </div>
3796
- </div>
3797
-
3798
- <div class="method_details ">
3799
- <h3 class="signature " id="restore_backup-instance_method">
3800
-
3801
- #<strong>restore_backup</strong>(file) &#x21d2; <tt>Object</tt>
3802
-
3803
-
3804
-
3805
-
3806
-
3807
- </h3><div class="docstring">
3808
- <div class="discussion">
3809
- <p>Restore a backed up version of a file</p>
3810
-
3811
-
3812
- </div>
3813
- </div>
3814
- <div class="tags">
3815
- <p class="tag_title">Parameters:</p>
3816
- <ul class="param">
3817
-
3818
- <li>
3819
-
3820
- <span class='name'>file</span>
3821
-
3822
-
3823
- <span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
3824
-
3825
-
3826
-
3827
- &mdash;
3828
- <div class='inline'><p>The filepath to restore</p>
3829
- </div>
3830
-
3831
- </li>
3832
-
3833
- </ul>
3834
-
3835
-
3836
3896
  </div>
3837
3897
  </div>
3838
3898
 
@@ -4444,7 +4504,7 @@ json, or text)</p>
4444
4504
  </div>
4445
4505
 
4446
4506
  <div id="footer">
4447
- Generated on Sat Nov 27 13:57:12 2021 by
4507
+ Generated on Sun Dec 19 12:35:33 2021 by
4448
4508
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
4449
4509
  0.9.26 (ruby-3.0.1).
4450
4510
  </div>
data/doc/Doing.html CHANGED
@@ -79,7 +79,7 @@
79
79
  <dl>
80
80
  <dt>Defined in:</dt>
81
81
  <dd>lib/doing/colors.rb<span class="defines">,<br />
82
- lib/doing/hash.rb,<br /> lib/doing/item.rb,<br /> lib/doing/note.rb,<br /> lib/doing/time.rb,<br /> lib/doing/util.rb,<br /> lib/doing/wwid.rb,<br /> lib/doing/array.rb,<br /> lib/doing/hooks.rb,<br /> lib/doing/items.rb,<br /> lib/doing/pager.rb,<br /> lib/doing/errors.rb,<br /> lib/doing/prompt.rb,<br /> lib/doing/string.rb,<br /> lib/doing/symbol.rb,<br /> lib/doing/section.rb,<br /> lib/doing/version.rb,<br /> lib/doing/completion.rb,<br /> lib/doing/log_adapter.rb,<br /> lib/doing/configuration.rb,<br /> lib/doing/plugin_manager.rb,<br /> lib/doing/string_chronify.rb</span>
82
+ lib/doing/hash.rb,<br /> lib/doing/item.rb,<br /> lib/doing/note.rb,<br /> lib/doing/time.rb,<br /> lib/doing/util.rb,<br /> lib/doing/wwid.rb,<br /> lib/doing/array.rb,<br /> lib/doing/hooks.rb,<br /> lib/doing/items.rb,<br /> lib/doing/pager.rb,<br /> lib/doing/errors.rb,<br /> lib/doing/prompt.rb,<br /> lib/doing/string.rb,<br /> lib/doing/symbol.rb,<br /> lib/doing/section.rb,<br /> lib/doing/version.rb,<br /> lib/doing/completion.rb,<br /> lib/doing/log_adapter.rb,<br /> lib/doing/util_backup.rb,<br /> lib/doing/configuration.rb,<br /> lib/doing/plugin_manager.rb,<br /> lib/doing/string_chronify.rb,<br /> lib/doing/template_string.rb</span>
83
83
  </dd>
84
84
  </dl>
85
85
 
@@ -103,7 +103,7 @@
103
103
 
104
104
 
105
105
 
106
- <strong class="classes">Classes:</strong> <span class='object_link'><a href="Doing/Configuration.html" title="Doing::Configuration (class)">Configuration</a></span>, <span class='object_link'><a href="Doing/Item.html" title="Doing::Item (class)">Item</a></span>, <span class='object_link'><a href="Doing/Items.html" title="Doing::Items (class)">Items</a></span>, <span class='object_link'><a href="Doing/LogAdapter.html" title="Doing::LogAdapter (class)">LogAdapter</a></span>, <span class='object_link'><a href="Doing/Note.html" title="Doing::Note (class)">Note</a></span>, <span class='object_link'><a href="Doing/Section.html" title="Doing::Section (class)">Section</a></span>, <span class='object_link'><a href="Doing/WWID.html" title="Doing::WWID (class)">WWID</a></span>
106
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="Doing/Configuration.html" title="Doing::Configuration (class)">Configuration</a></span>, <span class='object_link'><a href="Doing/Item.html" title="Doing::Item (class)">Item</a></span>, <span class='object_link'><a href="Doing/Items.html" title="Doing::Items (class)">Items</a></span>, <span class='object_link'><a href="Doing/LogAdapter.html" title="Doing::LogAdapter (class)">LogAdapter</a></span>, <span class='object_link'><a href="Doing/Note.html" title="Doing::Note (class)">Note</a></span>, <span class='object_link'><a href="Doing/Section.html" title="Doing::Section (class)">Section</a></span>, <span class='object_link'><a href="Doing/TemplateString.html" title="Doing::TemplateString (class)">TemplateString</a></span>, <span class='object_link'><a href="Doing/WWID.html" title="Doing::WWID (class)">WWID</a></span>
107
107
 
108
108
 
109
109
  </p>
@@ -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.1pre</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.5pre</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 Sat Nov 27 13:57:12 2021 by
138
+ Generated on Sun Dec 19 12:35:32 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 Sat Nov 27 13:57:12 2021 by
756
+ Generated on Sun Dec 19 12:35:33 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 Sat Nov 27 13:57:12 2021 by
108
+ Generated on Sun Dec 19 12:35:32 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/doc/GLI.html CHANGED
@@ -105,7 +105,7 @@
105
105
  </div>
106
106
 
107
107
  <div id="footer">
108
- Generated on Sat Nov 27 13:57:12 2021 by
108
+ Generated on Sun Dec 19 12:35:32 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/doc/Hash.html CHANGED
@@ -418,7 +418,7 @@
418
418
  </div>
419
419
 
420
420
  <div id="footer">
421
- Generated on Sat Nov 27 13:57:12 2021 by
421
+ Generated on Sun Dec 19 12:35:32 2021 by
422
422
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
423
423
  0.9.26 (ruby-3.0.1).
424
424
  </div>
@@ -0,0 +1,172 @@
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: PhraseParser::Operator
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 = "PhraseParser::Operator";
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 (O)</a> &raquo;
40
+ <span class='title'><span class='object_link'><a href="../PhraseParser.html" title="PhraseParser (module)">PhraseParser</a></span></span>
41
+ &raquo;
42
+ <span class="title">Operator</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: PhraseParser::Operator
63
+
64
+
65
+
66
+ </h1>
67
+ <div class="box_info">
68
+
69
+ <dl>
70
+ <dt>Inherits:</dt>
71
+ <dd>
72
+ <span class="inheritName">Object</span>
73
+
74
+ <ul class="fullTree">
75
+ <li>Object</li>
76
+
77
+ <li class="next">PhraseParser::Operator</li>
78
+
79
+ </ul>
80
+ <a href="#" class="inheritanceTree">show all</a>
81
+
82
+ </dd>
83
+ </dl>
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+ <dl>
96
+ <dt>Defined in:</dt>
97
+ <dd>lib/doing/phrase_parser.rb</dd>
98
+ </dl>
99
+
100
+ </div>
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+ <h2>
111
+ Class Method Summary
112
+ <small><a href="#" class="summary_toggle">collapse</a></small>
113
+ </h2>
114
+
115
+ <ul class="summary">
116
+
117
+ <li class="public ">
118
+ <span class="summary_signature">
119
+
120
+ <a href="#symbol-class_method" title="symbol (class method)">.<strong>symbol</strong>(str) &#x21d2; Object </a>
121
+
122
+
123
+
124
+ </span>
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+ <span class="summary_desc"><div class='inline'></div></span>
135
+
136
+ </li>
137
+
138
+
139
+ </ul>
140
+
141
+
142
+
143
+
144
+ <div id="class_method_details" class="method_details_list">
145
+ <h2>Class Method Details</h2>
146
+
147
+
148
+ <div class="method_details first">
149
+ <h3 class="signature first" id="symbol-class_method">
150
+
151
+ .<strong>symbol</strong>(str) &#x21d2; <tt>Object</tt>
152
+
153
+
154
+
155
+
156
+
157
+ </h3>
158
+ </div>
159
+
160
+ </div>
161
+
162
+ </div>
163
+
164
+ <div id="footer">
165
+ Generated on Sun Dec 19 12:35:33 2021 by
166
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
167
+ 0.9.26 (ruby-3.0.1).
168
+ </div>
169
+
170
+ </div>
171
+ </body>
172
+ </html>