doing 2.1.2pre → 2.1.6pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +19 -15
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardopts +1 -1
- data/CHANGELOG.md +62 -14
- data/Gemfile.lock +25 -1
- data/README.md +5 -1
- data/Rakefile +2 -0
- data/bin/doing +429 -142
- data/docs/_config.yml +1 -0
- data/{doc → docs/doc}/Array.html +63 -1
- data/docs/doc/BooleanTermParser/Clause.html +293 -0
- data/docs/doc/BooleanTermParser/Operator.html +172 -0
- data/docs/doc/BooleanTermParser/Query.html +417 -0
- data/docs/doc/BooleanTermParser/QueryParser.html +135 -0
- data/docs/doc/BooleanTermParser/QueryTransformer.html +124 -0
- data/docs/doc/BooleanTermParser.html +115 -0
- data/docs/doc/Doing/CLIFormat.html +131 -0
- data/{doc → docs/doc}/Doing/Color.html +2 -2
- data/{doc → docs/doc}/Doing/Completion.html +1 -1
- data/{doc → docs/doc}/Doing/Configuration.html +163 -69
- data/{doc → docs/doc}/Doing/Content.html +0 -0
- data/{doc → docs/doc}/Doing/Errors/DoingNoTraceError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/DoingRuntimeError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/DoingStandardError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/EmptyInput.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/NoResults.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/PluginException.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/UserCancelled.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/WrongCommand.html +1 -1
- data/{doc → docs/doc}/Doing/Errors.html +1 -1
- data/{doc → docs/doc}/Doing/Hooks.html +1 -1
- data/{doc → docs/doc}/Doing/Item.html +135 -89
- data/{doc → docs/doc}/Doing/Items.html +36 -2
- data/{doc → docs/doc}/Doing/LogAdapter.html +70 -1
- data/{doc → docs/doc}/Doing/Note.html +5 -134
- data/{doc → docs/doc}/Doing/Pager.html +1 -1
- data/{doc → docs/doc}/Doing/Plugins.html +431 -35
- data/{doc → docs/doc}/Doing/Prompt.html +70 -18
- data/{doc → docs/doc}/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +713 -0
- data/docs/doc/Doing/Util/Backup.html +686 -0
- data/{doc → docs/doc}/Doing/Util.html +16 -4
- data/{doc → docs/doc}/Doing/WWID.html +133 -73
- data/{doc → docs/doc}/Doing/WWIDFile.html +0 -0
- data/{doc → docs/doc}/Doing.html +4 -4
- data/{doc → docs/doc}/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/{doc → docs/doc}/GLI/Commands.html +1 -1
- data/{doc → docs/doc}/GLI.html +1 -1
- data/{doc → docs/doc}/Hash.html +1 -1
- data/docs/doc/PhraseParser/Operator.html +172 -0
- data/docs/doc/PhraseParser/PhraseClause.html +303 -0
- data/docs/doc/PhraseParser/Query.html +495 -0
- data/docs/doc/PhraseParser/QueryParser.html +136 -0
- data/docs/doc/PhraseParser/QueryTransformer.html +124 -0
- data/docs/doc/PhraseParser/TermClause.html +293 -0
- data/docs/doc/PhraseParser.html +115 -0
- data/{doc → docs/doc}/Status.html +1 -1
- data/{doc → docs/doc}/String.html +319 -13
- data/{doc → docs/doc}/Symbol.html +35 -1
- data/{doc → docs/doc}/Time.html +70 -2
- data/{doc → docs/doc}/_index.html +132 -4
- data/docs/doc/class_list.html +51 -0
- data/{doc → docs/doc}/css/common.css +0 -0
- data/{doc → docs/doc}/css/full_list.css +0 -0
- data/{doc → docs/doc}/css/style.css +0 -0
- data/{doc → docs/doc}/file.README.html +6 -2
- data/{doc → docs/doc}/file_list.html +0 -0
- data/{doc → docs/doc}/frames.html +0 -0
- data/{doc → docs/doc}/index.html +6 -2
- data/{doc → docs/doc}/js/app.js +0 -0
- data/{doc → docs/doc}/js/full_list.js +0 -0
- data/{doc → docs/doc}/js/jquery.js +0 -0
- data/{doc → docs/doc}/method_list.html +684 -196
- data/{doc → docs/doc}/top-level-namespace.html +2 -2
- data/docs/index.md +60 -0
- data/doing.gemspec +3 -0
- data/doing.rdoc +222 -74
- data/example_plugin.rb +3 -1
- data/lib/completion/_doing.zsh +53 -41
- data/lib/completion/doing.bash +17 -6
- data/lib/completion/doing.fish +321 -2
- data/lib/doing/array.rb +9 -0
- data/lib/doing/boolean_term_parser.rb +86 -0
- data/lib/doing/completion/fish_completion.rb +46 -3
- data/lib/doing/completion/zsh_completion.rb +1 -1
- data/lib/doing/configuration.rb +48 -21
- data/lib/doing/item.rb +105 -10
- data/lib/doing/items.rb +6 -0
- data/lib/doing/log_adapter.rb +28 -0
- data/lib/doing/note.rb +31 -30
- data/lib/doing/phrase_parser.rb +124 -0
- data/lib/doing/plugin_manager.rb +84 -21
- data/lib/doing/plugins/export/dayone_export.rb +209 -0
- data/lib/doing/plugins/export/html_export.rb +2 -2
- data/lib/doing/plugins/export/json_export.rb +1 -0
- data/lib/doing/plugins/export/markdown_export.rb +1 -1
- data/lib/doing/plugins/export/template_export.rb +94 -86
- data/lib/doing/prompt.rb +26 -15
- data/lib/doing/string.rb +114 -29
- data/lib/doing/string_chronify.rb +5 -1
- data/lib/doing/symbol.rb +4 -0
- data/lib/doing/template_string.rb +197 -0
- data/lib/doing/time.rb +32 -0
- data/lib/doing/util.rb +6 -7
- data/lib/doing/util_backup.rb +287 -0
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +105 -41
- data/lib/doing.rb +9 -0
- data/lib/examples/plugins/say_export.rb +1 -1
- data/lib/examples/plugins/wiki_export/wiki_export.rb +3 -3
- data/lib/templates/doing-dayone-entry.erb +6 -0
- data/lib/templates/doing-dayone.erb +5 -0
- metadata +136 -51
- data/doc/class_list.html +0 -51
@@ -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
|
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
|
931
|
+
Generated on Mon Dec 20 15:39:45 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>
|
@@ -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: {}) ⇒ Object </a>
|
408
|
+
<a href="#all_tags-instance_method" title="#all_tags (instance method)">#<strong>all_tags</strong>(items, opt: {}, counts: false) ⇒ 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> ⇒ String </a>
|
476
|
+
<a href="#choose_section-instance_method" title="#choose_section (instance method)">#<strong>choose_section</strong>(include_all: false) ⇒ 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> ⇒ 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 = 'All', items: nil, include_all: false) ⇒ 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 = {}) ⇒ Object </a>
|
1029
|
+
<a href="#list_section-instance_method" title="#list_section (instance method)">#<strong>list_section</strong>(opt = {}, items: Items.new) ⇒ 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) ⇒ Object </a>
|
1167
|
+
<a href="#reset_item-instance_method" title="#reset_item (instance method)">#<strong>reset_item</strong>(item, date: nil, resume: false) ⇒ 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) ⇒ 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: {}) ⇒ <tt>Object</tt>
|
1969
|
+
#<strong>all_tags</strong>(items, opt: {}, counts: false) ⇒ <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> ⇒ <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
|
2085
|
+
#<strong>choose_section</strong>(include_all: false) ⇒ <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> ⇒ <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
|
+
—
|
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 = 'All', items: nil, include_all: false) ⇒ <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
|
+
—
|
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 = {}) ⇒ <tt>Object</tt>
|
3436
|
+
#<strong>list_section</strong>(opt = {}, items: Items.new) ⇒ <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) ⇒ <tt>Object</tt>
|
3843
|
+
#<strong>reset_item</strong>(item, date: nil, resume: false) ⇒ <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) ⇒ <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
|
-
—
|
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
|
4507
|
+
Generated on Mon Dec 20 15:39:46 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>
|
File without changes
|
data/{doc → docs/doc}/Doing.html
RENAMED
@@ -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'>'</span><span class='tstring_content'>2.1.
|
122
|
+
<dd><pre class="code"><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>2.1.6pre</span><span class='tstring_end'>'</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
|
138
|
+
Generated on Mon Dec 20 15:39:45 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
|
756
|
+
Generated on Mon Dec 20 15:39:46 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
|
108
|
+
Generated on Mon Dec 20 15:39:45 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 → docs/doc}/GLI.html
RENAMED
@@ -105,7 +105,7 @@
|
|
105
105
|
</div>
|
106
106
|
|
107
107
|
<div id="footer">
|
108
|
-
Generated on
|
108
|
+
Generated on Mon Dec 20 15:39:45 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 → docs/doc}/Hash.html
RENAMED
@@ -418,7 +418,7 @@
|
|
418
418
|
</div>
|
419
419
|
|
420
420
|
<div id="footer">
|
421
|
-
Generated on
|
421
|
+
Generated on Mon Dec 20 15:39:45 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
|
+
— 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> »
|
40
|
+
<span class='title'><span class='object_link'><a href="../PhraseParser.html" title="PhraseParser (module)">PhraseParser</a></span></span>
|
41
|
+
»
|
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) ⇒ 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) ⇒ <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 Mon Dec 20 15:39:46 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>
|