doing 2.1.19 → 2.1.24
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.
- checksums.yaml +4 -4
- data/.yardoc/checksums +19 -16
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +70 -0
- data/Gemfile.lock +11 -11
- data/README.md +1 -1
- data/Rakefile +12 -4
- data/bin/doing +297 -234
- data/docs/doc/Array.html +7 -30
- data/docs/doc/BooleanTermParser/Clause.html +3 -3
- data/docs/doc/BooleanTermParser/Operator.html +3 -3
- data/docs/doc/BooleanTermParser/Query.html +3 -3
- data/docs/doc/BooleanTermParser/QueryParser.html +3 -3
- data/docs/doc/BooleanTermParser/QueryTransformer.html +3 -3
- data/docs/doc/BooleanTermParser.html +3 -3
- data/docs/doc/Doing/Color.html +3 -3
- data/docs/doc/Doing/Completion.html +3 -3
- data/docs/doc/Doing/Configuration.html +6 -5
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +3 -3
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +3 -3
- data/docs/doc/Doing/Errors/DoingStandardError.html +3 -3
- data/docs/doc/Doing/Errors/EmptyInput.html +3 -3
- data/docs/doc/Doing/Errors/NoResults.html +3 -3
- data/docs/doc/Doing/Errors/PluginException.html +3 -3
- data/docs/doc/Doing/Errors/UserCancelled.html +3 -3
- data/docs/doc/Doing/Errors/WrongCommand.html +3 -3
- data/docs/doc/Doing/Errors.html +3 -3
- data/docs/doc/Doing/Hooks.html +3 -3
- data/docs/doc/Doing/Item.html +3 -3
- data/docs/doc/Doing/Items.html +3 -3
- data/docs/doc/Doing/LogAdapter.html +3 -3
- data/docs/doc/Doing/Note.html +3 -3
- data/docs/doc/Doing/Pager.html +3 -3
- data/docs/doc/Doing/Plugins.html +3 -3
- data/docs/doc/Doing/Prompt.html +7 -7
- data/docs/doc/Doing/Section.html +3 -3
- data/docs/doc/Doing/TemplateString.html +4 -4
- data/docs/doc/Doing/Types.html +201 -0
- data/docs/doc/Doing/Util/Backup.html +3 -3
- data/docs/doc/Doing/Util.html +4 -7
- data/docs/doc/Doing/WWID.html +66 -8
- data/docs/doc/Doing.html +6 -6
- data/docs/doc/GLI/Commands/Help.html +185 -0
- data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +3 -3
- data/docs/doc/GLI/Commands.html +7 -5
- data/docs/doc/GLI.html +6 -4
- data/docs/doc/Hash.html +80 -16
- data/docs/doc/Numeric.html +3 -3
- data/docs/doc/PhraseParser/Operator.html +3 -3
- data/docs/doc/PhraseParser/PhraseClause.html +3 -3
- data/docs/doc/PhraseParser/Query.html +3 -3
- data/docs/doc/PhraseParser/QueryParser.html +3 -3
- data/docs/doc/PhraseParser/QueryTransformer.html +3 -3
- data/docs/doc/PhraseParser/TermClause.html +3 -3
- data/docs/doc/PhraseParser.html +3 -3
- data/docs/doc/Status.html +3 -3
- data/docs/doc/String.html +195 -26
- data/docs/doc/Symbol.html +3 -3
- data/docs/doc/Time.html +3 -3
- data/docs/doc/_index.html +22 -8
- data/docs/doc/class_list.html +1 -1
- data/docs/doc/file.README.html +4 -4
- data/docs/doc/frames.html +1 -1
- data/docs/doc/index.html +4 -4
- data/docs/doc/method_list.html +334 -270
- data/docs/doc/top-level-namespace.html +3 -3
- data/docs/index.md +1 -1
- data/doing.gemspec +1 -1
- data/doing.rdoc +173 -15
- data/lib/completion/_doing.zsh +20 -20
- data/lib/completion/doing.bash +37 -26
- data/lib/completion/doing.fish +116 -17
- data/lib/doing/array.rb +5 -4
- data/lib/doing/array_chronify.rb +4 -3
- data/lib/doing/changelog/change.rb +115 -0
- data/lib/doing/changelog/changes.rb +73 -0
- data/lib/doing/changelog/entry.rb +21 -0
- data/lib/doing/changelog/version.rb +97 -0
- data/lib/doing/changelog.rb +6 -0
- data/lib/doing/completion/fish_completion.rb +82 -12
- data/lib/doing/configuration.rb +17 -8
- data/lib/doing/hash.rb +25 -6
- data/lib/doing/help_monkey_patch.rb +31 -0
- data/lib/doing/hooks.rb +5 -1
- data/lib/doing/item.rb +10 -25
- data/lib/doing/items.rb +3 -1
- data/lib/doing/log_adapter.rb +1 -1
- data/lib/doing/pager.rb +2 -2
- data/lib/doing/plugins/export/dayone_export.rb +1 -1
- data/lib/doing/plugins/export/markdown_export.rb +1 -1
- data/lib/doing/plugins/export/template_export.rb +9 -3
- data/lib/doing/prompt.rb +4 -2
- data/lib/doing/string.rb +40 -11
- data/lib/doing/string_chronify.rb +56 -18
- data/lib/doing/template_string.rb +7 -0
- data/lib/doing/types.rb +25 -0
- data/lib/doing/util.rb +2 -1
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +91 -67
- data/lib/doing.rb +2 -0
- data/lib/examples/commands/later.rb +32 -0
- data/lib/helpers/threaded_tests.rb +286 -0
- metadata +17 -6
|
@@ -0,0 +1,185 @@
|
|
|
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: GLI::Commands::Help
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
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 = "GLI::Commands::Help";
|
|
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 (H)</a> »
|
|
40
|
+
<span class='title'><span class='object_link'><a href="../../GLI.html" title="GLI (module)">GLI</a></span></span> » <span class='title'><span class='object_link'><a href="../Commands.html" title="GLI::Commands (module)">Commands</a></span></span>
|
|
41
|
+
»
|
|
42
|
+
<span class="title">Help</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: GLI::Commands::Help
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
</h1>
|
|
67
|
+
<div class="box_info">
|
|
68
|
+
|
|
69
|
+
<dl>
|
|
70
|
+
<dt>Inherits:</dt>
|
|
71
|
+
<dd>
|
|
72
|
+
<span class="inheritName">Command</span>
|
|
73
|
+
|
|
74
|
+
<ul class="fullTree">
|
|
75
|
+
<li>Object</li>
|
|
76
|
+
|
|
77
|
+
<li class="next">Command</li>
|
|
78
|
+
|
|
79
|
+
<li class="next">GLI::Commands::Help</li>
|
|
80
|
+
|
|
81
|
+
</ul>
|
|
82
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
83
|
+
|
|
84
|
+
</dd>
|
|
85
|
+
</dl>
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
<dl>
|
|
98
|
+
<dt>Defined in:</dt>
|
|
99
|
+
<dd>lib/doing/help_monkey_patch.rb</dd>
|
|
100
|
+
</dl>
|
|
101
|
+
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
<h2>Overview</h2><div class="docstring">
|
|
105
|
+
<div class="discussion">
|
|
106
|
+
<p>Help Command Monkeypatch for paginated output</p>
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
<div class="tags">
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
</div>
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
<h2>
|
|
123
|
+
Instance Method Summary
|
|
124
|
+
<small><a href="#" class="summary_toggle">collapse</a></small>
|
|
125
|
+
</h2>
|
|
126
|
+
|
|
127
|
+
<ul class="summary">
|
|
128
|
+
|
|
129
|
+
<li class="public ">
|
|
130
|
+
<span class="summary_signature">
|
|
131
|
+
|
|
132
|
+
<a href="#show_help-instance_method" title="#show_help (instance method)">#<strong>show_help</strong>(global_options, options, arguments, out, error) ⇒ Object </a>
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
</span>
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
147
|
+
|
|
148
|
+
</li>
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
</ul>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
<div id="instance_method_details" class="method_details_list">
|
|
158
|
+
<h2>Instance Method Details</h2>
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
<div class="method_details first">
|
|
162
|
+
<h3 class="signature first" id="show_help-instance_method">
|
|
163
|
+
|
|
164
|
+
#<strong>show_help</strong>(global_options, options, arguments, out, error) ⇒ <tt>Object</tt>
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
</h3>
|
|
171
|
+
</div>
|
|
172
|
+
|
|
173
|
+
</div>
|
|
174
|
+
|
|
175
|
+
</div>
|
|
176
|
+
|
|
177
|
+
<div id="footer">
|
|
178
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
179
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
180
|
+
0.9.27 (ruby-3.0.1).
|
|
181
|
+
</div>
|
|
182
|
+
|
|
183
|
+
</div>
|
|
184
|
+
</body>
|
|
185
|
+
</html>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: GLI::Commands::MarkdownDocumentListener
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -753,9 +753,9 @@
|
|
|
753
753
|
</div>
|
|
754
754
|
|
|
755
755
|
<div id="footer">
|
|
756
|
-
Generated on
|
|
756
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
757
757
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
758
|
-
0.9.
|
|
758
|
+
0.9.27 (ruby-3.0.1).
|
|
759
759
|
</div>
|
|
760
760
|
|
|
761
761
|
</div>
|
data/docs/doc/GLI/Commands.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: GLI::Commands
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -78,7 +78,9 @@
|
|
|
78
78
|
|
|
79
79
|
<dl>
|
|
80
80
|
<dt>Defined in:</dt>
|
|
81
|
-
<dd>lib/doing/
|
|
81
|
+
<dd>lib/doing/help_monkey_patch.rb<span class="defines">,<br />
|
|
82
|
+
lib/doing/markdown_document_listener.rb</span>
|
|
83
|
+
</dd>
|
|
82
84
|
</dl>
|
|
83
85
|
|
|
84
86
|
</div>
|
|
@@ -89,7 +91,7 @@
|
|
|
89
91
|
|
|
90
92
|
|
|
91
93
|
|
|
92
|
-
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Commands/MarkdownDocumentListener.html" title="GLI::Commands::MarkdownDocumentListener (class)">MarkdownDocumentListener</a></span>
|
|
94
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Commands/Help.html" title="GLI::Commands::Help (class)">Help</a></span>, <span class='object_link'><a href="Commands/MarkdownDocumentListener.html" title="GLI::Commands::MarkdownDocumentListener (class)">MarkdownDocumentListener</a></span>
|
|
93
95
|
|
|
94
96
|
|
|
95
97
|
</p>
|
|
@@ -105,9 +107,9 @@
|
|
|
105
107
|
</div>
|
|
106
108
|
|
|
107
109
|
<div id="footer">
|
|
108
|
-
Generated on
|
|
110
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
109
111
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
110
|
-
0.9.
|
|
112
|
+
0.9.27 (ruby-3.0.1).
|
|
111
113
|
</div>
|
|
112
114
|
|
|
113
115
|
</div>
|
data/docs/doc/GLI.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: GLI
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -78,7 +78,9 @@
|
|
|
78
78
|
|
|
79
79
|
<dl>
|
|
80
80
|
<dt>Defined in:</dt>
|
|
81
|
-
<dd>lib/doing/
|
|
81
|
+
<dd>lib/doing/help_monkey_patch.rb<span class="defines">,<br />
|
|
82
|
+
lib/doing/markdown_document_listener.rb</span>
|
|
83
|
+
</dd>
|
|
82
84
|
</dl>
|
|
83
85
|
|
|
84
86
|
</div>
|
|
@@ -105,9 +107,9 @@
|
|
|
105
107
|
</div>
|
|
106
108
|
|
|
107
109
|
<div id="footer">
|
|
108
|
-
Generated on
|
|
110
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
109
111
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
110
|
-
0.9.
|
|
112
|
+
0.9.27 (ruby-3.0.1).
|
|
111
113
|
</div>
|
|
112
114
|
|
|
113
115
|
</div>
|
data/docs/doc/Hash.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Hash
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
<li class="public ">
|
|
128
128
|
<span class="summary_signature">
|
|
129
129
|
|
|
130
|
-
<a href="#deep_freeze-instance_method" title="#deep_freeze (instance method)">#<strong>deep_freeze</strong> ⇒
|
|
130
|
+
<a href="#deep_freeze-instance_method" title="#deep_freeze (instance method)">#<strong>deep_freeze</strong> ⇒ Object </a>
|
|
131
131
|
|
|
132
132
|
|
|
133
133
|
|
|
@@ -189,6 +189,50 @@
|
|
|
189
189
|
<span class="summary_desc"><div class='inline'><p>Set a nested hash value using an array.</p>
|
|
190
190
|
</div></span>
|
|
191
191
|
|
|
192
|
+
</li>
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
<li class="public ">
|
|
196
|
+
<span class="summary_signature">
|
|
197
|
+
|
|
198
|
+
<a href="#deep_thaw-instance_method" title="#deep_thaw (instance method)">#<strong>deep_thaw</strong> ⇒ Object </a>
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
</span>
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
213
|
+
|
|
214
|
+
</li>
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
<li class="public ">
|
|
218
|
+
<span class="summary_signature">
|
|
219
|
+
|
|
220
|
+
<a href="#deep_thaw!-instance_method" title="#deep_thaw! (instance method)">#<strong>deep_thaw!</strong> ⇒ Object </a>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
</span>
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
|
235
|
+
|
|
192
236
|
</li>
|
|
193
237
|
|
|
194
238
|
|
|
@@ -250,7 +294,7 @@
|
|
|
250
294
|
<div class="method_details first">
|
|
251
295
|
<h3 class="signature first" id="deep_freeze-instance_method">
|
|
252
296
|
|
|
253
|
-
#<strong>deep_freeze</strong> ⇒ <tt>
|
|
297
|
+
#<strong>deep_freeze</strong> ⇒ <tt>Object</tt>
|
|
254
298
|
|
|
255
299
|
|
|
256
300
|
|
|
@@ -271,10 +315,14 @@
|
|
|
271
315
|
<li>
|
|
272
316
|
|
|
273
317
|
|
|
274
|
-
<span class='type'
|
|
318
|
+
<span class='type'></span>
|
|
275
319
|
|
|
276
320
|
|
|
277
321
|
|
|
322
|
+
|
|
323
|
+
<div class='inline'><p>Hash with all values frozen</p>
|
|
324
|
+
</div>
|
|
325
|
+
|
|
278
326
|
</li>
|
|
279
327
|
|
|
280
328
|
</ul>
|
|
@@ -316,16 +364,8 @@
|
|
|
316
364
|
<p class="tag_title">Examples:</p>
|
|
317
365
|
|
|
318
366
|
|
|
319
|
-
|
|
320
|
-
</
|
|
321
|
-
|
|
322
|
-
<pre class="example code"><code></code></pre>
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
<p class="example_title"><div class='inline'><p>`=> { 'one' => { 'two' => 'value' } }</p>
|
|
326
|
-
</div></p>
|
|
327
|
-
|
|
328
|
-
<pre class="example code"><code></code></pre>
|
|
367
|
+
<pre class="example code"><code><span class='lbrace'>{</span><span class='rbrace'>}</span><span class='period'>.</span><span class='id identifier rubyid_deep_set'>deep_set</span><span class='lparen'>(</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>one</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>two</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>value</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span>
|
|
368
|
+
<span class='comment'># => { 'one' => { 'two' => 'value' } }</span></code></pre>
|
|
329
369
|
|
|
330
370
|
</div>
|
|
331
371
|
<p class="tag_title">Parameters:</p>
|
|
@@ -365,6 +405,30 @@
|
|
|
365
405
|
|
|
366
406
|
|
|
367
407
|
</div>
|
|
408
|
+
</div>
|
|
409
|
+
|
|
410
|
+
<div class="method_details ">
|
|
411
|
+
<h3 class="signature " id="deep_thaw-instance_method">
|
|
412
|
+
|
|
413
|
+
#<strong>deep_thaw</strong> ⇒ <tt>Object</tt>
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
</h3>
|
|
420
|
+
</div>
|
|
421
|
+
|
|
422
|
+
<div class="method_details ">
|
|
423
|
+
<h3 class="signature " id="deep_thaw!-instance_method">
|
|
424
|
+
|
|
425
|
+
#<strong>deep_thaw!</strong> ⇒ <tt>Object</tt>
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
</h3>
|
|
368
432
|
</div>
|
|
369
433
|
|
|
370
434
|
<div class="method_details ">
|
|
@@ -418,9 +482,9 @@
|
|
|
418
482
|
</div>
|
|
419
483
|
|
|
420
484
|
<div id="footer">
|
|
421
|
-
Generated on
|
|
485
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
422
486
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
423
|
-
0.9.
|
|
487
|
+
0.9.27 (ruby-3.0.1).
|
|
424
488
|
</div>
|
|
425
489
|
|
|
426
490
|
</div>
|
data/docs/doc/Numeric.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Numeric
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -269,9 +269,9 @@
|
|
|
269
269
|
</div>
|
|
270
270
|
|
|
271
271
|
<div id="footer">
|
|
272
|
-
Generated on
|
|
272
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
273
273
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
274
|
-
0.9.
|
|
274
|
+
0.9.27 (ruby-3.0.1).
|
|
275
275
|
</div>
|
|
276
276
|
|
|
277
277
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: PhraseParser::Operator
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -162,9 +162,9 @@
|
|
|
162
162
|
</div>
|
|
163
163
|
|
|
164
164
|
<div id="footer">
|
|
165
|
-
Generated on
|
|
165
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
166
166
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
167
|
-
0.9.
|
|
167
|
+
0.9.27 (ruby-3.0.1).
|
|
168
168
|
</div>
|
|
169
169
|
|
|
170
170
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: PhraseParser::PhraseClause
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -293,9 +293,9 @@
|
|
|
293
293
|
</div>
|
|
294
294
|
|
|
295
295
|
<div id="footer">
|
|
296
|
-
Generated on
|
|
296
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
297
297
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
298
|
-
0.9.
|
|
298
|
+
0.9.27 (ruby-3.0.1).
|
|
299
299
|
</div>
|
|
300
300
|
|
|
301
301
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: PhraseParser::Query
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -485,9 +485,9 @@
|
|
|
485
485
|
</div>
|
|
486
486
|
|
|
487
487
|
<div id="footer">
|
|
488
|
-
Generated on
|
|
488
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
489
489
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
490
|
-
0.9.
|
|
490
|
+
0.9.27 (ruby-3.0.1).
|
|
491
491
|
</div>
|
|
492
492
|
|
|
493
493
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: PhraseParser::QueryParser
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -126,9 +126,9 @@ A phrase clause generates an Elasticsearch match_phrase query.</p>
|
|
|
126
126
|
</div>
|
|
127
127
|
|
|
128
128
|
<div id="footer">
|
|
129
|
-
Generated on
|
|
129
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
130
130
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
131
|
-
0.9.
|
|
131
|
+
0.9.27 (ruby-3.0.1).
|
|
132
132
|
</div>
|
|
133
133
|
|
|
134
134
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: PhraseParser::QueryTransformer
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
</div>
|
|
115
115
|
|
|
116
116
|
<div id="footer">
|
|
117
|
-
Generated on
|
|
117
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
118
118
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
119
|
-
0.9.
|
|
119
|
+
0.9.27 (ruby-3.0.1).
|
|
120
120
|
</div>
|
|
121
121
|
|
|
122
122
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: PhraseParser::TermClause
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -283,9 +283,9 @@
|
|
|
283
283
|
</div>
|
|
284
284
|
|
|
285
285
|
<div id="footer">
|
|
286
|
-
Generated on
|
|
286
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
287
287
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
288
|
-
0.9.
|
|
288
|
+
0.9.27 (ruby-3.0.1).
|
|
289
289
|
</div>
|
|
290
290
|
|
|
291
291
|
</div>
|
data/docs/doc/PhraseParser.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: PhraseParser
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
</div>
|
|
106
106
|
|
|
107
107
|
<div id="footer">
|
|
108
|
-
Generated on
|
|
108
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
109
109
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
110
|
-
0.9.
|
|
110
|
+
0.9.27 (ruby-3.0.1).
|
|
111
111
|
</div>
|
|
112
112
|
|
|
113
113
|
</div>
|
data/docs/doc/Status.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Status
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -316,9 +316,9 @@
|
|
|
316
316
|
</div>
|
|
317
317
|
|
|
318
318
|
<div id="footer">
|
|
319
|
-
Generated on
|
|
319
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
320
320
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
321
|
-
0.9.
|
|
321
|
+
0.9.27 (ruby-3.0.1).
|
|
322
322
|
</div>
|
|
323
323
|
|
|
324
324
|
</div>
|