doing 2.1.37 → 2.1.40
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/CHANGELOG.md +61 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/Rakefile +7 -1
- data/bin/commands/config.rb +43 -34
- data/bin/commands/done.rb +1 -18
- data/bin/commands/finish.rb +30 -25
- data/bin/commands/grep.rb +3 -14
- data/bin/commands/last.rb +2 -8
- data/bin/commands/meanwhile.rb +13 -6
- data/bin/commands/now.rb +2 -4
- data/bin/commands/on.rb +4 -15
- data/bin/commands/recent.rb +2 -8
- data/bin/commands/reset.rb +24 -1
- data/bin/commands/select.rb +1 -1
- data/bin/commands/show.rb +8 -16
- data/bin/commands/since.rb +1 -12
- data/bin/commands/today.rb +2 -13
- data/bin/commands/view.rb +1 -1
- data/bin/commands/yesterday.rb +2 -13
- data/bin/doing +41 -36
- data/docs/doc/Array.html +1 -1
- data/docs/doc/BooleanTermParser/Clause.html +1 -1
- data/docs/doc/BooleanTermParser/Operator.html +1 -1
- data/docs/doc/BooleanTermParser/Query.html +1 -1
- data/docs/doc/BooleanTermParser/QueryParser.html +1 -1
- data/docs/doc/BooleanTermParser/QueryTransformer.html +1 -1
- data/docs/doc/BooleanTermParser.html +1 -1
- data/docs/doc/Doing/Color.html +166 -20
- data/docs/doc/Doing/Completion.html +1 -1
- data/docs/doc/Doing/Configuration.html +1 -1
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +7 -3
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +7 -3
- data/docs/doc/Doing/Errors/DoingStandardError.html +1 -1
- data/docs/doc/Doing/Errors/EmptyInput.html +10 -2
- data/docs/doc/Doing/Errors/HistoryLimitError.html +194 -0
- data/docs/doc/Doing/Errors/InvalidPlugin.html +194 -0
- data/docs/doc/Doing/Errors/MissingBackupFile.html +194 -0
- data/docs/doc/Doing/Errors/NoResults.html +10 -2
- data/docs/doc/Doing/Errors/PluginException.html +1 -1
- data/docs/doc/Doing/Errors/UserCancelled.html +10 -2
- data/docs/doc/Doing/Errors/WrongCommand.html +10 -2
- data/docs/doc/Doing/Errors.html +9 -9
- data/docs/doc/Doing/Hooks.html +1 -1
- data/docs/doc/Doing/Item.html +114 -1576
- data/docs/doc/Doing/Items.html +121 -5
- data/docs/doc/Doing/Logger.html +1 -1
- data/docs/doc/Doing/Note.html +1 -1
- data/docs/doc/Doing/Pager.html +1 -1
- data/docs/doc/Doing/Plugins.html +1 -1
- data/docs/doc/Doing/Prompt.html +2 -2
- data/docs/doc/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +2 -2
- data/docs/doc/Doing/Types.html +1 -1
- data/docs/doc/Doing/Util/Backup.html +5 -5
- data/docs/doc/Doing/Util.html +1 -1
- data/docs/doc/Doing/WWID.html +197 -4033
- data/docs/doc/Doing.html +2 -2
- data/docs/doc/FalseClass.html +1 -1
- data/docs/doc/GLI/Commands/Help.html +1 -1
- data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/docs/doc/GLI/Commands.html +1 -1
- data/docs/doc/GLI.html +1 -1
- data/docs/doc/Hash.html +1 -1
- data/docs/doc/Object.html +1 -1
- data/docs/doc/PhraseParser/Operator.html +1 -1
- data/docs/doc/PhraseParser/PhraseClause.html +1 -1
- data/docs/doc/PhraseParser/Query.html +1 -1
- data/docs/doc/PhraseParser/QueryParser.html +1 -1
- data/docs/doc/PhraseParser/QueryTransformer.html +1 -1
- data/docs/doc/PhraseParser/TermClause.html +1 -1
- data/docs/doc/PhraseParser.html +1 -1
- data/docs/doc/Status.html +1 -1
- data/docs/doc/String.html +1 -1
- data/docs/doc/Symbol.html +1 -1
- data/docs/doc/Time.html +1 -1
- data/docs/doc/TrueClass.html +1 -1
- data/docs/doc/_index.html +26 -5
- data/docs/doc/class_list.html +1 -1
- data/docs/doc/file.README.html +2 -2
- data/docs/doc/index.html +2 -2
- data/docs/doc/method_list.html +237 -709
- data/docs/doc/top-level-namespace.html +3 -3
- data/docs/index.md +1 -1
- data/doing.rdoc +54 -7
- data/lib/completion/_doing.zsh +6 -6
- data/lib/completion/doing.bash +10 -10
- data/lib/completion/doing.fish +8 -2
- data/lib/doing/add_options.rb +31 -1
- data/lib/doing/chronify/array.rb +68 -18
- data/lib/doing/chronify/string.rb +3 -1
- data/lib/doing/colors.rb +77 -30
- data/lib/doing/completion.rb +4 -5
- data/lib/doing/errors.rb +51 -35
- data/lib/doing/hooks.rb +3 -3
- data/lib/doing/item/dates.rb +112 -0
- data/lib/doing/item/query.rb +433 -0
- data/lib/doing/item/state.rb +59 -0
- data/lib/doing/item/tags.rb +87 -0
- data/lib/doing/item.rb +6 -537
- data/lib/doing/items.rb +39 -14
- data/lib/doing/plugin_manager.rb +3 -3
- data/lib/doing/plugins/export/template_export.rb +4 -4
- data/lib/doing/plugins/import/cal_to_json.scpt +0 -0
- data/lib/doing/prompt.rb +6 -8
- data/lib/doing/string/tags.rb +8 -2
- data/lib/doing/util_backup.rb +6 -8
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid/display.rb +399 -0
- data/lib/doing/wwid/editor.rb +214 -0
- data/lib/doing/wwid/filetools.rb +186 -0
- data/lib/doing/wwid/filter.rb +218 -0
- data/lib/doing/wwid/guess.rb +87 -0
- data/lib/doing/wwid/interactive.rb +385 -0
- data/lib/doing/wwid/modify.rb +618 -0
- data/lib/doing/wwid/tags.rb +54 -0
- data/lib/doing/wwid/timers.rb +345 -0
- data/lib/doing/wwid/wwidutil.rb +104 -0
- data/lib/doing/wwid.rb +31 -2308
- metadata +19 -2
data/docs/doc/method_list.html
CHANGED
|
@@ -53,14 +53,6 @@
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
<li class="even ">
|
|
56
|
-
<div class="item">
|
|
57
|
-
<span class='object_link'><a href="Doing/WWID.html#act_on-instance_method" title="Doing::WWID#act_on (method)">#act_on</a></span>
|
|
58
|
-
<small>Doing::WWID</small>
|
|
59
|
-
</div>
|
|
60
|
-
</li>
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
<li class="odd ">
|
|
64
56
|
<div class="item">
|
|
65
57
|
<span class='object_link'><a href="Doing/Note.html#add-instance_method" title="Doing::Note#add (method)">#add</a></span>
|
|
66
58
|
<small>Doing::Note</small>
|
|
@@ -68,14 +60,6 @@
|
|
|
68
60
|
</li>
|
|
69
61
|
|
|
70
62
|
|
|
71
|
-
<li class="even ">
|
|
72
|
-
<div class="item">
|
|
73
|
-
<span class='object_link'><a href="Doing/WWID.html#add_item-instance_method" title="Doing::WWID#add_item (method)">#add_item</a></span>
|
|
74
|
-
<small>Doing::WWID</small>
|
|
75
|
-
</div>
|
|
76
|
-
</li>
|
|
77
|
-
|
|
78
|
-
|
|
79
63
|
<li class="odd ">
|
|
80
64
|
<div class="item">
|
|
81
65
|
<span class='object_link'><a href="top-level-namespace.html#add_options-instance_method" title="#add_options (method)">#add_options</a></span>
|
|
@@ -94,7 +78,7 @@
|
|
|
94
78
|
|
|
95
79
|
<li class="odd ">
|
|
96
80
|
<div class="item">
|
|
97
|
-
<span class='object_link'><a href="Doing/WWID.html#
|
|
81
|
+
<span class='object_link'><a href="Doing/WWID.html#additional_configs-instance_method" title="Doing::WWID#additional_configs (method)">#additional_configs</a></span>
|
|
98
82
|
<small>Doing::WWID</small>
|
|
99
83
|
</div>
|
|
100
84
|
</li>
|
|
@@ -109,14 +93,6 @@
|
|
|
109
93
|
|
|
110
94
|
|
|
111
95
|
<li class="odd ">
|
|
112
|
-
<div class="item">
|
|
113
|
-
<span class='object_link'><a href="Doing/WWID.html#additional_configs-instance_method" title="Doing::WWID#additional_configs (method)">#additional_configs</a></span>
|
|
114
|
-
<small>Doing::WWID</small>
|
|
115
|
-
</div>
|
|
116
|
-
</li>
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
<li class="even ">
|
|
120
96
|
<div class="item">
|
|
121
97
|
<span class='object_link'><a href="Doing/Logger.html#adjust_verbosity-instance_method" title="Doing::Logger#adjust_verbosity (method)">#adjust_verbosity</a></span>
|
|
122
98
|
<small>Doing::Logger</small>
|
|
@@ -124,14 +100,6 @@
|
|
|
124
100
|
</li>
|
|
125
101
|
|
|
126
102
|
|
|
127
|
-
<li class="odd ">
|
|
128
|
-
<div class="item">
|
|
129
|
-
<span class='object_link'><a href="Doing/WWID.html#all_tags-instance_method" title="Doing::WWID#all_tags (method)">#all_tags</a></span>
|
|
130
|
-
<small>Doing::WWID</small>
|
|
131
|
-
</div>
|
|
132
|
-
</li>
|
|
133
|
-
|
|
134
|
-
|
|
135
103
|
<li class="even ">
|
|
136
104
|
<div class="item">
|
|
137
105
|
<span class='object_link'><a href="Doing/Items.html#all_tags-instance_method" title="Doing::Items#all_tags (method)">#all_tags</a></span>
|
|
@@ -149,14 +117,6 @@
|
|
|
149
117
|
|
|
150
118
|
|
|
151
119
|
<li class="even ">
|
|
152
|
-
<div class="item">
|
|
153
|
-
<span class='object_link'><a href="Doing/WWID.html#archive-instance_method" title="Doing::WWID#archive (method)">#archive</a></span>
|
|
154
|
-
<small>Doing::WWID</small>
|
|
155
|
-
</div>
|
|
156
|
-
</li>
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
<li class="odd ">
|
|
160
120
|
<div class="item">
|
|
161
121
|
<span class='object_link'><a href="Doing/Util.html#args_for_editor-instance_method" title="Doing::Util#args_for_editor (method)">#args_for_editor</a></span>
|
|
162
122
|
<small>Doing::Util</small>
|
|
@@ -164,18 +124,10 @@
|
|
|
164
124
|
</li>
|
|
165
125
|
|
|
166
126
|
|
|
167
|
-
<li class="even ">
|
|
168
|
-
<div class="item">
|
|
169
|
-
<span class='object_link'><a href="Doing/Color.html#attributes-class_method" title="Doing::Color.attributes (method)">attributes</a></span>
|
|
170
|
-
<small>Doing::Color</small>
|
|
171
|
-
</div>
|
|
172
|
-
</li>
|
|
173
|
-
|
|
174
|
-
|
|
175
127
|
<li class="odd ">
|
|
176
128
|
<div class="item">
|
|
177
|
-
<span class='object_link'><a href="Doing/
|
|
178
|
-
<small>Doing::
|
|
129
|
+
<span class='object_link'><a href="Doing/Color.html#attributes-instance_method" title="Doing::Color#attributes (method)">#attributes</a></span>
|
|
130
|
+
<small>Doing::Color</small>
|
|
179
131
|
</div>
|
|
180
132
|
</li>
|
|
181
133
|
|
|
@@ -205,14 +157,6 @@
|
|
|
205
157
|
|
|
206
158
|
|
|
207
159
|
<li class="odd ">
|
|
208
|
-
<div class="item">
|
|
209
|
-
<span class='object_link'><a href="Doing/Item.html#calculate_end_date-instance_method" title="Doing::Item#calculate_end_date (method)">#calculate_end_date</a></span>
|
|
210
|
-
<small>Doing::Item</small>
|
|
211
|
-
</div>
|
|
212
|
-
</li>
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
<li class="even ">
|
|
216
160
|
<div class="item">
|
|
217
161
|
<span class='object_link'><a href="Doing/Configuration.html#choose_config-instance_method" title="Doing::Configuration#choose_config (method)">#choose_config</a></span>
|
|
218
162
|
<small>Doing::Configuration</small>
|
|
@@ -220,7 +164,7 @@
|
|
|
220
164
|
</li>
|
|
221
165
|
|
|
222
166
|
|
|
223
|
-
<li class="
|
|
167
|
+
<li class="even ">
|
|
224
168
|
<div class="item">
|
|
225
169
|
<span class='object_link'><a href="Doing/Prompt.html#choose_from-class_method" title="Doing::Prompt.choose_from (method)">choose_from</a></span>
|
|
226
170
|
<small>Doing::Prompt</small>
|
|
@@ -228,7 +172,7 @@
|
|
|
228
172
|
</li>
|
|
229
173
|
|
|
230
174
|
|
|
231
|
-
<li class="
|
|
175
|
+
<li class="odd ">
|
|
232
176
|
<div class="item">
|
|
233
177
|
<span class='object_link'><a href="Doing/Prompt.html#choose_from_items-class_method" title="Doing::Prompt.choose_from_items (method)">choose_from_items</a></span>
|
|
234
178
|
<small>Doing::Prompt</small>
|
|
@@ -236,39 +180,7 @@
|
|
|
236
180
|
</li>
|
|
237
181
|
|
|
238
182
|
|
|
239
|
-
<li class="odd ">
|
|
240
|
-
<div class="item">
|
|
241
|
-
<span class='object_link'><a href="Doing/WWID.html#choose_section-instance_method" title="Doing::WWID#choose_section (method)">#choose_section</a></span>
|
|
242
|
-
<small>Doing::WWID</small>
|
|
243
|
-
</div>
|
|
244
|
-
</li>
|
|
245
|
-
|
|
246
|
-
|
|
247
183
|
<li class="even ">
|
|
248
|
-
<div class="item">
|
|
249
|
-
<span class='object_link'><a href="Doing/WWID.html#choose_section_tag-instance_method" title="Doing::WWID#choose_section_tag (method)">#choose_section_tag</a></span>
|
|
250
|
-
<small>Doing::WWID</small>
|
|
251
|
-
</div>
|
|
252
|
-
</li>
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
<li class="odd ">
|
|
256
|
-
<div class="item">
|
|
257
|
-
<span class='object_link'><a href="Doing/WWID.html#choose_tag-instance_method" title="Doing::WWID#choose_tag (method)">#choose_tag</a></span>
|
|
258
|
-
<small>Doing::WWID</small>
|
|
259
|
-
</div>
|
|
260
|
-
</li>
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
<li class="even ">
|
|
264
|
-
<div class="item">
|
|
265
|
-
<span class='object_link'><a href="Doing/WWID.html#choose_view-instance_method" title="Doing::WWID#choose_view (method)">#choose_view</a></span>
|
|
266
|
-
<small>Doing::WWID</small>
|
|
267
|
-
</div>
|
|
268
|
-
</li>
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
<li class="odd ">
|
|
272
184
|
<div class="item">
|
|
273
185
|
<span class='object_link'><a href="PhraseParser/Query.html#clause_to_query-instance_method" title="PhraseParser::Query#clause_to_query (method)">#clause_to_query</a></span>
|
|
274
186
|
<small>PhraseParser::Query</small>
|
|
@@ -276,7 +188,7 @@
|
|
|
276
188
|
</li>
|
|
277
189
|
|
|
278
190
|
|
|
279
|
-
<li class="
|
|
191
|
+
<li class="odd ">
|
|
280
192
|
<div class="item">
|
|
281
193
|
<span class='object_link'><a href="Status.html#clear-instance_method" title="Status#clear (method)">#clear</a></span>
|
|
282
194
|
<small>Status</small>
|
|
@@ -284,7 +196,7 @@
|
|
|
284
196
|
</li>
|
|
285
197
|
|
|
286
198
|
|
|
287
|
-
<li class="
|
|
199
|
+
<li class="even ">
|
|
288
200
|
<div class="item">
|
|
289
201
|
<span class='object_link'><a href="Doing/Util/Backup.html#clear_redo-instance_method" title="Doing::Util::Backup#clear_redo (method)">#clear_redo</a></span>
|
|
290
202
|
<small>Doing::Util::Backup</small>
|
|
@@ -292,7 +204,7 @@
|
|
|
292
204
|
</li>
|
|
293
205
|
|
|
294
206
|
|
|
295
|
-
<li class="
|
|
207
|
+
<li class="odd ">
|
|
296
208
|
<div class="item">
|
|
297
209
|
<span class='object_link'><a href="Doing/Prompt.html#clear_screen-class_method" title="Doing::Prompt.clear_screen (method)">clear_screen</a></span>
|
|
298
210
|
<small>Doing::Prompt</small>
|
|
@@ -300,7 +212,7 @@
|
|
|
300
212
|
</li>
|
|
301
213
|
|
|
302
214
|
|
|
303
|
-
<li class="
|
|
215
|
+
<li class="even ">
|
|
304
216
|
<div class="item">
|
|
305
217
|
<span class='object_link'><a href="Doing/Util/Backup.html#clear_undone-instance_method" title="Doing::Util::Backup#clear_undone (method)">#clear_undone</a></span>
|
|
306
218
|
<small>Doing::Util::Backup</small>
|
|
@@ -308,23 +220,23 @@
|
|
|
308
220
|
</li>
|
|
309
221
|
|
|
310
222
|
|
|
311
|
-
<li class="
|
|
223
|
+
<li class="odd ">
|
|
312
224
|
<div class="item">
|
|
313
|
-
<span class='object_link'><a href="
|
|
314
|
-
<small>
|
|
225
|
+
<span class='object_link'><a href="Hash.html#clone-instance_method" title="Hash#clone (method)">#clone</a></span>
|
|
226
|
+
<small>Hash</small>
|
|
315
227
|
</div>
|
|
316
228
|
</li>
|
|
317
229
|
|
|
318
230
|
|
|
319
|
-
<li class="
|
|
231
|
+
<li class="even ">
|
|
320
232
|
<div class="item">
|
|
321
|
-
<span class='object_link'><a href="
|
|
322
|
-
<small>
|
|
233
|
+
<span class='object_link'><a href="Doing/Item.html#clone-instance_method" title="Doing::Item#clone (method)">#clone</a></span>
|
|
234
|
+
<small>Doing::Item</small>
|
|
323
235
|
</div>
|
|
324
236
|
</li>
|
|
325
237
|
|
|
326
238
|
|
|
327
|
-
<li class="
|
|
239
|
+
<li class="odd ">
|
|
328
240
|
<div class="item">
|
|
329
241
|
<span class='object_link'><a href="Doing/TemplateString.html#colored-instance_method" title="Doing::TemplateString#colored (method)">#colored</a></span>
|
|
330
242
|
<small>Doing::TemplateString</small>
|
|
@@ -332,7 +244,7 @@
|
|
|
332
244
|
</li>
|
|
333
245
|
|
|
334
246
|
|
|
335
|
-
<li class="
|
|
247
|
+
<li class="even ">
|
|
336
248
|
<div class="item">
|
|
337
249
|
<span class='object_link'><a href="Doing/Color.html#coloring-class_method" title="Doing::Color.coloring (method)">coloring</a></span>
|
|
338
250
|
<small>Doing::Color</small>
|
|
@@ -340,7 +252,7 @@
|
|
|
340
252
|
</li>
|
|
341
253
|
|
|
342
254
|
|
|
343
|
-
<li class="
|
|
255
|
+
<li class="odd ">
|
|
344
256
|
<div class="item">
|
|
345
257
|
<span class='object_link'><a href="Doing/Color.html#coloring%3F-class_method" title="Doing::Color.coloring? (method)">coloring?</a></span>
|
|
346
258
|
<small>Doing::Color</small>
|
|
@@ -348,7 +260,7 @@
|
|
|
348
260
|
</li>
|
|
349
261
|
|
|
350
262
|
|
|
351
|
-
<li class="
|
|
263
|
+
<li class="even ">
|
|
352
264
|
<div class="item">
|
|
353
265
|
<span class='object_link'><a href="Doing/TemplateString.html#colors%3F-instance_method" title="Doing::TemplateString#colors? (method)">#colors?</a></span>
|
|
354
266
|
<small>Doing::TemplateString</small>
|
|
@@ -356,7 +268,7 @@
|
|
|
356
268
|
</li>
|
|
357
269
|
|
|
358
270
|
|
|
359
|
-
<li class="
|
|
271
|
+
<li class="odd ">
|
|
360
272
|
<div class="item">
|
|
361
273
|
<span class='object_link'><a href="Status.html#cols-instance_method" title="Status#cols (method)">#cols</a></span>
|
|
362
274
|
<small>Status</small>
|
|
@@ -364,7 +276,7 @@
|
|
|
364
276
|
</li>
|
|
365
277
|
|
|
366
278
|
|
|
367
|
-
<li class="
|
|
279
|
+
<li class="even ">
|
|
368
280
|
<div class="item">
|
|
369
281
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#command-instance_method" title="GLI::Commands::MarkdownDocumentListener#command (method)">#command</a></span>
|
|
370
282
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -372,7 +284,7 @@
|
|
|
372
284
|
</li>
|
|
373
285
|
|
|
374
286
|
|
|
375
|
-
<li class="
|
|
287
|
+
<li class="odd ">
|
|
376
288
|
<div class="item">
|
|
377
289
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#commands-instance_method" title="GLI::Commands::MarkdownDocumentListener#commands (method)">#commands</a></span>
|
|
378
290
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -380,7 +292,7 @@
|
|
|
380
292
|
</li>
|
|
381
293
|
|
|
382
294
|
|
|
383
|
-
<li class="
|
|
295
|
+
<li class="even ">
|
|
384
296
|
<div class="item">
|
|
385
297
|
<span class='object_link'><a href="Doing/Note.html#compress-instance_method" title="Doing::Note#compress (method)">#compress</a></span>
|
|
386
298
|
<small>Doing::Note</small>
|
|
@@ -388,7 +300,7 @@
|
|
|
388
300
|
</li>
|
|
389
301
|
|
|
390
302
|
|
|
391
|
-
<li class="
|
|
303
|
+
<li class="odd ">
|
|
392
304
|
<div class="item">
|
|
393
305
|
<span class='object_link'><a href="Doing/Note.html#compress!-instance_method" title="Doing::Note#compress! (method)">#compress!</a></span>
|
|
394
306
|
<small>Doing::Note</small>
|
|
@@ -396,7 +308,7 @@
|
|
|
396
308
|
</li>
|
|
397
309
|
|
|
398
310
|
|
|
399
|
-
<li class="
|
|
311
|
+
<li class="even ">
|
|
400
312
|
<div class="item">
|
|
401
313
|
<span class='object_link'><a href="Doing/WWID.html#config-instance_method" title="Doing::WWID#config (method)">#config</a></span>
|
|
402
314
|
<small>Doing::WWID</small>
|
|
@@ -404,7 +316,7 @@
|
|
|
404
316
|
</li>
|
|
405
317
|
|
|
406
318
|
|
|
407
|
-
<li class="
|
|
319
|
+
<li class="odd ">
|
|
408
320
|
<div class="item">
|
|
409
321
|
<span class='object_link'><a href="Doing/Configuration.html#config_dir-instance_method" title="Doing::Configuration#config_dir (method)">#config_dir</a></span>
|
|
410
322
|
<small>Doing::Configuration</small>
|
|
@@ -412,7 +324,7 @@
|
|
|
412
324
|
</li>
|
|
413
325
|
|
|
414
326
|
|
|
415
|
-
<li class="
|
|
327
|
+
<li class="even ">
|
|
416
328
|
<div class="item">
|
|
417
329
|
<span class='object_link'><a href="Doing/Configuration.html#config_file-instance_method" title="Doing::Configuration#config_file (method)">#config_file</a></span>
|
|
418
330
|
<small>Doing::Configuration</small>
|
|
@@ -420,7 +332,7 @@
|
|
|
420
332
|
</li>
|
|
421
333
|
|
|
422
334
|
|
|
423
|
-
<li class="
|
|
335
|
+
<li class="odd ">
|
|
424
336
|
<div class="item">
|
|
425
337
|
<span class='object_link'><a href="Doing/WWID.html#config_file-instance_method" title="Doing::WWID#config_file (method)">#config_file</a></span>
|
|
426
338
|
<small>Doing::WWID</small>
|
|
@@ -428,7 +340,7 @@
|
|
|
428
340
|
</li>
|
|
429
341
|
|
|
430
342
|
|
|
431
|
-
<li class="
|
|
343
|
+
<li class="even ">
|
|
432
344
|
<div class="item">
|
|
433
345
|
<span class='object_link'><a href="Doing/Configuration.html#configure-instance_method" title="Doing::Configuration#configure (method)">#configure</a></span>
|
|
434
346
|
<small>Doing::Configuration</small>
|
|
@@ -436,14 +348,6 @@
|
|
|
436
348
|
</li>
|
|
437
349
|
|
|
438
350
|
|
|
439
|
-
<li class="even ">
|
|
440
|
-
<div class="item">
|
|
441
|
-
<span class='object_link'><a href="Doing/WWID.html#configure-instance_method" title="Doing::WWID#configure (method)">#configure</a></span>
|
|
442
|
-
<small>Doing::WWID</small>
|
|
443
|
-
</div>
|
|
444
|
-
</li>
|
|
445
|
-
|
|
446
|
-
|
|
447
351
|
<li class="odd ">
|
|
448
352
|
<div class="item">
|
|
449
353
|
<span class='object_link'><a href="Doing/WWID.html#content-instance_method" title="Doing::WWID#content (method)">#content</a></span>
|
|
@@ -461,14 +365,6 @@
|
|
|
461
365
|
|
|
462
366
|
|
|
463
367
|
<li class="odd ">
|
|
464
|
-
<div class="item">
|
|
465
|
-
<span class='object_link'><a href="Doing/WWID.html#create-instance_method" title="Doing::WWID#create (method)">#create</a></span>
|
|
466
|
-
<small>Doing::WWID</small>
|
|
467
|
-
</div>
|
|
468
|
-
</li>
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
<li class="even ">
|
|
472
368
|
<div class="item">
|
|
473
369
|
<span class='object_link'><a href="Doing/WWID.html#current_section-instance_method" title="Doing::WWID#current_section (method)">#current_section</a></span>
|
|
474
370
|
<small>Doing::WWID</small>
|
|
@@ -476,7 +372,7 @@
|
|
|
476
372
|
</li>
|
|
477
373
|
|
|
478
374
|
|
|
479
|
-
<li class="
|
|
375
|
+
<li class="even ">
|
|
480
376
|
<div class="item">
|
|
481
377
|
<span class='object_link'><a href="Doing/Item.html#date-instance_method" title="Doing::Item#date (method)">#date</a></span>
|
|
482
378
|
<small>Doing::Item</small>
|
|
@@ -484,7 +380,7 @@
|
|
|
484
380
|
</li>
|
|
485
381
|
|
|
486
382
|
|
|
487
|
-
<li class="
|
|
383
|
+
<li class="odd ">
|
|
488
384
|
<div class="item">
|
|
489
385
|
<span class='object_link'><a href="Doing/Logger.html#debug-instance_method" title="Doing::Logger#debug (method)">#debug</a></span>
|
|
490
386
|
<small>Doing::Logger</small>
|
|
@@ -492,7 +388,7 @@
|
|
|
492
388
|
</li>
|
|
493
389
|
|
|
494
390
|
|
|
495
|
-
<li class="
|
|
391
|
+
<li class="even ">
|
|
496
392
|
<div class="item">
|
|
497
393
|
<span class='object_link'><a href="Doing/Items.html#dedup-instance_method" title="Doing::Items#dedup (method)">#dedup</a></span>
|
|
498
394
|
<small>Doing::Items</small>
|
|
@@ -500,14 +396,6 @@
|
|
|
500
396
|
</li>
|
|
501
397
|
|
|
502
398
|
|
|
503
|
-
<li class="even ">
|
|
504
|
-
<div class="item">
|
|
505
|
-
<span class='object_link'><a href="Doing/WWID.html#dedup-instance_method" title="Doing::WWID#dedup (method)">#dedup</a></span>
|
|
506
|
-
<small>Doing::WWID</small>
|
|
507
|
-
</div>
|
|
508
|
-
</li>
|
|
509
|
-
|
|
510
|
-
|
|
511
399
|
<li class="odd ">
|
|
512
400
|
<div class="item">
|
|
513
401
|
<span class='object_link'><a href="Doing/Items.html#dedup!-instance_method" title="Doing::Items#dedup! (method)">#dedup!</a></span>
|
|
@@ -621,14 +509,6 @@
|
|
|
621
509
|
|
|
622
510
|
|
|
623
511
|
<li class="odd ">
|
|
624
|
-
<div class="item">
|
|
625
|
-
<span class='object_link'><a href="Doing/WWID.html#delete_items-instance_method" title="Doing::WWID#delete_items (method)">#delete_items</a></span>
|
|
626
|
-
<small>Doing::WWID</small>
|
|
627
|
-
</div>
|
|
628
|
-
</li>
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
<li class="even ">
|
|
632
512
|
<div class="item">
|
|
633
513
|
<span class='object_link'><a href="Doing/Items.html#delete_section-instance_method" title="Doing::Items#delete_section (method)">#delete_section</a></span>
|
|
634
514
|
<small>Doing::Items</small>
|
|
@@ -636,7 +516,7 @@
|
|
|
636
516
|
</li>
|
|
637
517
|
|
|
638
518
|
|
|
639
|
-
<li class="
|
|
519
|
+
<li class="even ">
|
|
640
520
|
<div class="item">
|
|
641
521
|
<span class='object_link'><a href="Doing/Items.html#diff-instance_method" title="Doing::Items#diff (method)">#diff</a></span>
|
|
642
522
|
<small>Doing::Items</small>
|
|
@@ -644,7 +524,7 @@
|
|
|
644
524
|
</li>
|
|
645
525
|
|
|
646
526
|
|
|
647
|
-
<li class="
|
|
527
|
+
<li class="odd ">
|
|
648
528
|
<div class="item">
|
|
649
529
|
<span class='object_link'><a href="Doing/WWID.html#doing_file-instance_method" title="Doing::WWID#doing_file (method)">#doing_file</a></span>
|
|
650
530
|
<small>Doing::WWID</small>
|
|
@@ -652,7 +532,7 @@
|
|
|
652
532
|
</li>
|
|
653
533
|
|
|
654
534
|
|
|
655
|
-
<li class="
|
|
535
|
+
<li class="even ">
|
|
656
536
|
<div class="item">
|
|
657
537
|
<span class='object_link'><a href="Doing/Util.html#duplicable%3F-instance_method" title="Doing::Util#duplicable? (method)">#duplicable?</a></span>
|
|
658
538
|
<small>Doing::Util</small>
|
|
@@ -660,7 +540,7 @@
|
|
|
660
540
|
</li>
|
|
661
541
|
|
|
662
542
|
|
|
663
|
-
<li class="
|
|
543
|
+
<li class="odd ">
|
|
664
544
|
<div class="item">
|
|
665
545
|
<span class='object_link'><a href="Doing/Util.html#duplicate_frozen_values-instance_method" title="Doing::Util#duplicate_frozen_values (method)">#duplicate_frozen_values</a></span>
|
|
666
546
|
<small>Doing::Util</small>
|
|
@@ -668,30 +548,6 @@
|
|
|
668
548
|
</li>
|
|
669
549
|
|
|
670
550
|
|
|
671
|
-
<li class="odd ">
|
|
672
|
-
<div class="item">
|
|
673
|
-
<span class='object_link'><a href="Doing/Item.html#duration-instance_method" title="Doing::Item#duration (method)">#duration</a></span>
|
|
674
|
-
<small>Doing::Item</small>
|
|
675
|
-
</div>
|
|
676
|
-
</li>
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
<li class="even ">
|
|
680
|
-
<div class="item">
|
|
681
|
-
<span class='object_link'><a href="Doing/WWID.html#edit_items-instance_method" title="Doing::WWID#edit_items (method)">#edit_items</a></span>
|
|
682
|
-
<small>Doing::WWID</small>
|
|
683
|
-
</div>
|
|
684
|
-
</li>
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
<li class="odd ">
|
|
688
|
-
<div class="item">
|
|
689
|
-
<span class='object_link'><a href="Doing/WWID.html#edit_last-instance_method" title="Doing::WWID#edit_last (method)">#edit_last</a></span>
|
|
690
|
-
<small>Doing::WWID</small>
|
|
691
|
-
</div>
|
|
692
|
-
</li>
|
|
693
|
-
|
|
694
|
-
|
|
695
551
|
<li class="even ">
|
|
696
552
|
<div class="item">
|
|
697
553
|
<span class='object_link'><a href="Doing/Util.html#editor_with_args-instance_method" title="Doing::Util#editor_with_args (method)">#editor_with_args</a></span>
|
|
@@ -717,14 +573,6 @@
|
|
|
717
573
|
|
|
718
574
|
|
|
719
575
|
<li class="odd ">
|
|
720
|
-
<div class="item">
|
|
721
|
-
<span class='object_link'><a href="Doing/Item.html#end_date-instance_method" title="Doing::Item#end_date (method)">#end_date</a></span>
|
|
722
|
-
<small>Doing::Item</small>
|
|
723
|
-
</div>
|
|
724
|
-
</li>
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
<li class="even ">
|
|
728
576
|
<div class="item">
|
|
729
577
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#end_options-instance_method" title="GLI::Commands::MarkdownDocumentListener#end_options (method)">#end_options</a></span>
|
|
730
578
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -732,7 +580,7 @@
|
|
|
732
580
|
</li>
|
|
733
581
|
|
|
734
582
|
|
|
735
|
-
<li class="
|
|
583
|
+
<li class="even ">
|
|
736
584
|
<div class="item">
|
|
737
585
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#ending-instance_method" title="GLI::Commands::MarkdownDocumentListener#ending (method)">#ending</a></span>
|
|
738
586
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -740,7 +588,7 @@
|
|
|
740
588
|
</li>
|
|
741
589
|
|
|
742
590
|
|
|
743
|
-
<li class="
|
|
591
|
+
<li class="odd ">
|
|
744
592
|
<div class="item">
|
|
745
593
|
<span class='object_link'><a href="Doing/Prompt.html#enter_text-class_method" title="Doing::Prompt.enter_text (method)">enter_text</a></span>
|
|
746
594
|
<small>Doing::Prompt</small>
|
|
@@ -748,7 +596,7 @@
|
|
|
748
596
|
</li>
|
|
749
597
|
|
|
750
598
|
|
|
751
|
-
<li class="
|
|
599
|
+
<li class="even ">
|
|
752
600
|
<div class="item">
|
|
753
601
|
<span class='object_link'><a href="Doing/Item.html#equal%3F-instance_method" title="Doing::Item#equal? (method)">#equal?</a></span>
|
|
754
602
|
<small>Doing::Item</small>
|
|
@@ -756,7 +604,7 @@
|
|
|
756
604
|
</li>
|
|
757
605
|
|
|
758
606
|
|
|
759
|
-
<li class="
|
|
607
|
+
<li class="odd ">
|
|
760
608
|
<div class="item">
|
|
761
609
|
<span class='object_link'><a href="Doing/Note.html#equal%3F-instance_method" title="Doing::Note#equal? (method)">#equal?</a></span>
|
|
762
610
|
<small>Doing::Note</small>
|
|
@@ -764,7 +612,7 @@
|
|
|
764
612
|
</li>
|
|
765
613
|
|
|
766
614
|
|
|
767
|
-
<li class="
|
|
615
|
+
<li class="even ">
|
|
768
616
|
<div class="item">
|
|
769
617
|
<span class='object_link'><a href="Doing/Logger.html#error-instance_method" title="Doing::Logger#error (method)">#error</a></span>
|
|
770
618
|
<small>Doing::Logger</small>
|
|
@@ -772,7 +620,7 @@
|
|
|
772
620
|
</li>
|
|
773
621
|
|
|
774
622
|
|
|
775
|
-
<li class="
|
|
623
|
+
<li class="odd ">
|
|
776
624
|
<div class="item">
|
|
777
625
|
<span class='object_link'><a href="Status.html#esc-instance_method" title="Status#esc (method)">#esc</a></span>
|
|
778
626
|
<small>Status</small>
|
|
@@ -780,7 +628,7 @@
|
|
|
780
628
|
</li>
|
|
781
629
|
|
|
782
630
|
|
|
783
|
-
<li class="
|
|
631
|
+
<li class="even ">
|
|
784
632
|
<div class="item">
|
|
785
633
|
<span class='object_link'><a href="Doing/Configuration.html#exact_match%3F-instance_method" title="Doing::Configuration#exact_match? (method)">#exact_match?</a></span>
|
|
786
634
|
<small>Doing::Configuration</small>
|
|
@@ -788,7 +636,7 @@
|
|
|
788
636
|
</li>
|
|
789
637
|
|
|
790
638
|
|
|
791
|
-
<li class="
|
|
639
|
+
<li class="odd ">
|
|
792
640
|
<div class="item">
|
|
793
641
|
<span class='object_link'><a href="Doing/Util.html#exec_available-instance_method" title="Doing::Util#exec_available (method)">#exec_available</a></span>
|
|
794
642
|
<small>Doing::Util</small>
|
|
@@ -796,14 +644,6 @@
|
|
|
796
644
|
</li>
|
|
797
645
|
|
|
798
646
|
|
|
799
|
-
<li class="odd ">
|
|
800
|
-
<div class="item">
|
|
801
|
-
<span class='object_link'><a href="Doing/Item.html#expand_date_tags-instance_method" title="Doing::Item#expand_date_tags (method)">#expand_date_tags</a></span>
|
|
802
|
-
<small>Doing::Item</small>
|
|
803
|
-
</div>
|
|
804
|
-
</li>
|
|
805
|
-
|
|
806
|
-
|
|
807
647
|
<li class="even ">
|
|
808
648
|
<div class="item">
|
|
809
649
|
<span class='object_link'><a href="Doing/Configuration.html#fetch-instance_method" title="Doing::Configuration#fetch (method)">#fetch</a></span>
|
|
@@ -821,14 +661,6 @@
|
|
|
821
661
|
|
|
822
662
|
|
|
823
663
|
<li class="even ">
|
|
824
|
-
<div class="item">
|
|
825
|
-
<span class='object_link'><a href="Doing/WWID.html#filter_items-instance_method" title="Doing::WWID#filter_items (method)">#filter_items</a></span>
|
|
826
|
-
<small>Doing::WWID</small>
|
|
827
|
-
</div>
|
|
828
|
-
</li>
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
<li class="odd ">
|
|
832
664
|
<div class="item">
|
|
833
665
|
<span class='object_link'><a href="Doing/Util.html#find_default_editor-instance_method" title="Doing::Util#find_default_editor (method)">#find_default_editor</a></span>
|
|
834
666
|
<small>Doing::Util</small>
|
|
@@ -836,14 +668,6 @@
|
|
|
836
668
|
</li>
|
|
837
669
|
|
|
838
670
|
|
|
839
|
-
<li class="even ">
|
|
840
|
-
<div class="item">
|
|
841
|
-
<span class='object_link'><a href="Doing/Item.html#finished%3F-instance_method" title="Doing::Item#finished? (method)">#finished?</a></span>
|
|
842
|
-
<small>Doing::Item</small>
|
|
843
|
-
</div>
|
|
844
|
-
</li>
|
|
845
|
-
|
|
846
|
-
|
|
847
671
|
<li class="odd ">
|
|
848
672
|
<div class="item">
|
|
849
673
|
<span class='object_link'><a href="Doing/Util.html#first_available_exec-instance_method" title="Doing::Util#first_available_exec (method)">#first_available_exec</a></span>
|
|
@@ -861,14 +685,6 @@
|
|
|
861
685
|
|
|
862
686
|
|
|
863
687
|
<li class="odd ">
|
|
864
|
-
<div class="item">
|
|
865
|
-
<span class='object_link'><a href="Doing/Configuration.html#force_answer-instance_method" title="Doing::Configuration#force_answer (method)">#force_answer</a></span>
|
|
866
|
-
<small>Doing::Configuration</small>
|
|
867
|
-
</div>
|
|
868
|
-
</li>
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
<li class="even ">
|
|
872
688
|
<div class="item">
|
|
873
689
|
<span class='object_link'><a href="Doing/Prompt.html#force_answer-class_method" title="Doing::Prompt.force_answer (method)">force_answer</a></span>
|
|
874
690
|
<small>Doing::Prompt</small>
|
|
@@ -876,18 +692,10 @@
|
|
|
876
692
|
</li>
|
|
877
693
|
|
|
878
694
|
|
|
879
|
-
<li class="odd ">
|
|
880
|
-
<div class="item">
|
|
881
|
-
<span class='object_link'><a href="Doing/WWID.html#fork_editor-instance_method" title="Doing::WWID#fork_editor (method)">#fork_editor</a></span>
|
|
882
|
-
<small>Doing::WWID</small>
|
|
883
|
-
</div>
|
|
884
|
-
</li>
|
|
885
|
-
|
|
886
|
-
|
|
887
695
|
<li class="even ">
|
|
888
696
|
<div class="item">
|
|
889
|
-
<span class='object_link'><a href="Doing/
|
|
890
|
-
<small>Doing::
|
|
697
|
+
<span class='object_link'><a href="Doing/Configuration.html#force_answer-instance_method" title="Doing::Configuration#force_answer (method)">#force_answer</a></span>
|
|
698
|
+
<small>Doing::Configuration</small>
|
|
891
699
|
</div>
|
|
892
700
|
</li>
|
|
893
701
|
|
|
@@ -909,14 +717,6 @@
|
|
|
909
717
|
|
|
910
718
|
|
|
911
719
|
<li class="odd ">
|
|
912
|
-
<div class="item">
|
|
913
|
-
<span class='object_link'><a href="Doing/WWID.html#fuzzy_filter_items-instance_method" title="Doing::WWID#fuzzy_filter_items (method)">#fuzzy_filter_items</a></span>
|
|
914
|
-
<small>Doing::WWID</small>
|
|
915
|
-
</div>
|
|
916
|
-
</li>
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
<li class="even ">
|
|
920
720
|
<div class="item">
|
|
921
721
|
<span class='object_link'><a href="Doing/Prompt.html#fzf-class_method" title="Doing::Prompt.fzf (method)">fzf</a></span>
|
|
922
722
|
<small>Doing::Prompt</small>
|
|
@@ -924,7 +724,7 @@
|
|
|
924
724
|
</li>
|
|
925
725
|
|
|
926
726
|
|
|
927
|
-
<li class="
|
|
727
|
+
<li class="even ">
|
|
928
728
|
<div class="item">
|
|
929
729
|
<span class='object_link'><a href="Doing/Completion.html#generate_completion-class_method" title="Doing::Completion.generate_completion (method)">generate_completion</a></span>
|
|
930
730
|
<small>Doing::Completion</small>
|
|
@@ -932,14 +732,6 @@
|
|
|
932
732
|
</li>
|
|
933
733
|
|
|
934
734
|
|
|
935
|
-
<li class="even ">
|
|
936
|
-
<div class="item">
|
|
937
|
-
<span class='object_link'><a href="Doing/WWID.html#get_diff-instance_method" title="Doing::WWID#get_diff (method)">#get_diff</a></span>
|
|
938
|
-
<small>Doing::WWID</small>
|
|
939
|
-
</div>
|
|
940
|
-
</li>
|
|
941
|
-
|
|
942
|
-
|
|
943
735
|
<li class="odd ">
|
|
944
736
|
<div class="item">
|
|
945
737
|
<span class='object_link'><a href="Doing/Completion.html#get_help_sections-class_method" title="Doing::Completion.get_help_sections (method)">get_help_sections</a></span>
|
|
@@ -949,14 +741,6 @@
|
|
|
949
741
|
|
|
950
742
|
|
|
951
743
|
<li class="even ">
|
|
952
|
-
<div class="item">
|
|
953
|
-
<span class='object_link'><a href="Doing/WWID.html#get_interval-instance_method" title="Doing::WWID#get_interval (method)">#get_interval</a></span>
|
|
954
|
-
<small>Doing::WWID</small>
|
|
955
|
-
</div>
|
|
956
|
-
</li>
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
<li class="odd ">
|
|
960
744
|
<div class="item">
|
|
961
745
|
<span class='object_link'><a href="Doing/WWID.html#get_view-instance_method" title="Doing::WWID#get_view (method)">#get_view</a></span>
|
|
962
746
|
<small>Doing::WWID</small>
|
|
@@ -964,7 +748,7 @@
|
|
|
964
748
|
</li>
|
|
965
749
|
|
|
966
750
|
|
|
967
|
-
<li class="
|
|
751
|
+
<li class="odd ">
|
|
968
752
|
<div class="item">
|
|
969
753
|
<span class='object_link'><a href="Object.html#good%3F-instance_method" title="Object#good? (method)">#good?</a></span>
|
|
970
754
|
<small>Object</small>
|
|
@@ -972,7 +756,7 @@
|
|
|
972
756
|
</li>
|
|
973
757
|
|
|
974
758
|
|
|
975
|
-
<li class="
|
|
759
|
+
<li class="even ">
|
|
976
760
|
<div class="item">
|
|
977
761
|
<span class='object_link'><a href="String.html#good%3F-instance_method" title="String#good? (method)">#good?</a></span>
|
|
978
762
|
<small>String</small>
|
|
@@ -980,7 +764,7 @@
|
|
|
980
764
|
</li>
|
|
981
765
|
|
|
982
766
|
|
|
983
|
-
<li class="
|
|
767
|
+
<li class="odd ">
|
|
984
768
|
<div class="item">
|
|
985
769
|
<span class='object_link'><a href="Array.html#good%3F-instance_method" title="Array#good? (method)">#good?</a></span>
|
|
986
770
|
<small>Array</small>
|
|
@@ -988,7 +772,7 @@
|
|
|
988
772
|
</li>
|
|
989
773
|
|
|
990
774
|
|
|
991
|
-
<li class="
|
|
775
|
+
<li class="even ">
|
|
992
776
|
<div class="item">
|
|
993
777
|
<span class='object_link'><a href="FalseClass.html#good%3F-instance_method" title="FalseClass#good? (method)">#good?</a></span>
|
|
994
778
|
<small>FalseClass</small>
|
|
@@ -996,250 +780,178 @@
|
|
|
996
780
|
</li>
|
|
997
781
|
|
|
998
782
|
|
|
999
|
-
<li class="even ">
|
|
1000
|
-
<div class="item">
|
|
1001
|
-
<span class='object_link'><a href="TrueClass.html#good%3F-instance_method" title="TrueClass#good? (method)">#good?</a></span>
|
|
1002
|
-
<small>TrueClass</small>
|
|
1003
|
-
</div>
|
|
1004
|
-
</li>
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
<li class="odd ">
|
|
1008
|
-
<div class="item">
|
|
1009
|
-
<span class='object_link'><a href="Doing/WWID.html#guess_section-instance_method" title="Doing::WWID#guess_section (method)">#guess_section</a></span>
|
|
1010
|
-
<small>Doing::WWID</small>
|
|
1011
|
-
</div>
|
|
1012
|
-
</li>
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
<li class="even ">
|
|
1016
|
-
<div class="item">
|
|
1017
|
-
<span class='object_link'><a href="Doing/WWID.html#guess_view-instance_method" title="Doing::WWID#guess_view (method)">#guess_view</a></span>
|
|
1018
|
-
<small>Doing::WWID</small>
|
|
1019
|
-
</div>
|
|
1020
|
-
</li>
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
783
|
<li class="odd ">
|
|
1024
784
|
<div class="item">
|
|
1025
|
-
<span class='object_link'><a href="
|
|
1026
|
-
<small>
|
|
1027
|
-
</div>
|
|
1028
|
-
</li>
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
<li class="even ">
|
|
1032
|
-
<div class="item">
|
|
1033
|
-
<span class='object_link'><a href="Time.html#humanize-instance_method" title="Time#humanize (method)">#humanize</a></span>
|
|
1034
|
-
<small>Time</small>
|
|
1035
|
-
</div>
|
|
1036
|
-
</li>
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
<li class="odd ">
|
|
1040
|
-
<div class="item">
|
|
1041
|
-
<span class='object_link'><a href="Doing/Item.html#id-instance_method" title="Doing::Item#id (method)">#id</a></span>
|
|
1042
|
-
<small>Doing::Item</small>
|
|
1043
|
-
</div>
|
|
1044
|
-
</li>
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
<li class="even ">
|
|
1048
|
-
<div class="item">
|
|
1049
|
-
<span class='object_link'><a href="Doing/Item.html#ignore_case-instance_method" title="Doing::Item#ignore_case (method)">#ignore_case</a></span>
|
|
1050
|
-
<small>Doing::Item</small>
|
|
1051
|
-
</div>
|
|
1052
|
-
</li>
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
<li class="odd ">
|
|
1056
|
-
<div class="item">
|
|
1057
|
-
<span class='object_link'><a href="Doing/WWID.html#import-instance_method" title="Doing::WWID#import (method)">#import</a></span>
|
|
1058
|
-
<small>Doing::WWID</small>
|
|
1059
|
-
</div>
|
|
1060
|
-
</li>
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
<li class="even ">
|
|
1064
|
-
<div class="item">
|
|
1065
|
-
<span class='object_link'><a href="Doing/Items.html#in_section-instance_method" title="Doing::Items#in_section (method)">#in_section</a></span>
|
|
1066
|
-
<small>Doing::Items</small>
|
|
1067
|
-
</div>
|
|
1068
|
-
</li>
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
<li class="odd ">
|
|
1072
|
-
<div class="item">
|
|
1073
|
-
<span class='object_link'><a href="Doing/Items.html#include%3F-instance_method" title="Doing::Items#include? (method)">#include?</a></span>
|
|
1074
|
-
<small>Doing::Items</small>
|
|
785
|
+
<span class='object_link'><a href="TrueClass.html#good%3F-instance_method" title="TrueClass#good? (method)">#good?</a></span>
|
|
786
|
+
<small>TrueClass</small>
|
|
1075
787
|
</div>
|
|
1076
788
|
</li>
|
|
1077
789
|
|
|
1078
790
|
|
|
1079
791
|
<li class="even ">
|
|
1080
792
|
<div class="item">
|
|
1081
|
-
<span class='object_link'><a href="Doing/
|
|
1082
|
-
<small>Doing::
|
|
793
|
+
<span class='object_link'><a href="Doing/Items.html#guess_section-instance_method" title="Doing::Items#guess_section (method)">#guess_section</a></span>
|
|
794
|
+
<small>Doing::Items</small>
|
|
1083
795
|
</div>
|
|
1084
796
|
</li>
|
|
1085
797
|
|
|
1086
798
|
|
|
1087
799
|
<li class="odd ">
|
|
1088
800
|
<div class="item">
|
|
1089
|
-
<span class='object_link'><a href="
|
|
1090
|
-
<small>
|
|
801
|
+
<span class='object_link'><a href="Time.html#humanize-instance_method" title="Time#humanize (method)">#humanize</a></span>
|
|
802
|
+
<small>Time</small>
|
|
1091
803
|
</div>
|
|
1092
804
|
</li>
|
|
1093
805
|
|
|
1094
806
|
|
|
1095
807
|
<li class="even ">
|
|
1096
808
|
<div class="item">
|
|
1097
|
-
<span class='object_link'><a href="
|
|
1098
|
-
<small>
|
|
809
|
+
<span class='object_link'><a href="Doing/Item.html#id-instance_method" title="Doing::Item#id (method)">#id</a></span>
|
|
810
|
+
<small>Doing::Item</small>
|
|
1099
811
|
</div>
|
|
1100
812
|
</li>
|
|
1101
813
|
|
|
1102
814
|
|
|
1103
815
|
<li class="odd ">
|
|
1104
816
|
<div class="item">
|
|
1105
|
-
<span class='object_link'><a href="
|
|
1106
|
-
<small>
|
|
817
|
+
<span class='object_link'><a href="Doing/Items.html#in_section-instance_method" title="Doing::Items#in_section (method)">#in_section</a></span>
|
|
818
|
+
<small>Doing::Items</small>
|
|
1107
819
|
</div>
|
|
1108
820
|
</li>
|
|
1109
821
|
|
|
1110
822
|
|
|
1111
823
|
<li class="even ">
|
|
1112
824
|
<div class="item">
|
|
1113
|
-
<span class='object_link'><a href="Doing/
|
|
1114
|
-
<small>Doing::
|
|
825
|
+
<span class='object_link'><a href="Doing/Items.html#include%3F-instance_method" title="Doing::Items#include? (method)">#include?</a></span>
|
|
826
|
+
<small>Doing::Items</small>
|
|
1115
827
|
</div>
|
|
1116
828
|
</li>
|
|
1117
829
|
|
|
1118
830
|
|
|
1119
831
|
<li class="odd ">
|
|
1120
832
|
<div class="item">
|
|
1121
|
-
<span class='object_link'><a href="Doing/
|
|
1122
|
-
<small>Doing::
|
|
833
|
+
<span class='object_link'><a href="Doing/Logger.html#info-instance_method" title="Doing::Logger#info (method)">#info</a></span>
|
|
834
|
+
<small>Doing::Logger</small>
|
|
1123
835
|
</div>
|
|
1124
836
|
</li>
|
|
1125
837
|
|
|
1126
838
|
|
|
1127
839
|
<li class="even ">
|
|
1128
840
|
<div class="item">
|
|
1129
|
-
<span class='object_link'><a href="Doing/
|
|
1130
|
-
<small>Doing::
|
|
841
|
+
<span class='object_link'><a href="Doing/WWID.html#initial_content-instance_method" title="Doing::WWID#initial_content (method)">#initial_content</a></span>
|
|
842
|
+
<small>Doing::WWID</small>
|
|
1131
843
|
</div>
|
|
1132
844
|
</li>
|
|
1133
845
|
|
|
1134
846
|
|
|
1135
847
|
<li class="odd ">
|
|
1136
848
|
<div class="item">
|
|
1137
|
-
<span class='object_link'><a href="
|
|
1138
|
-
<small>
|
|
849
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#initialize-instance_method" title="PhraseParser::PhraseClause#initialize (method)">#initialize</a></span>
|
|
850
|
+
<small>PhraseParser::PhraseClause</small>
|
|
1139
851
|
</div>
|
|
1140
852
|
</li>
|
|
1141
853
|
|
|
1142
854
|
|
|
1143
855
|
<li class="even ">
|
|
1144
856
|
<div class="item">
|
|
1145
|
-
<span class='object_link'><a href="Doing/Errors/
|
|
1146
|
-
<small>Doing::Errors::
|
|
857
|
+
<span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html#initialize-instance_method" title="Doing::Errors::DoingRuntimeError#initialize (method)">#initialize</a></span>
|
|
858
|
+
<small>Doing::Errors::DoingRuntimeError</small>
|
|
1147
859
|
</div>
|
|
1148
860
|
</li>
|
|
1149
861
|
|
|
1150
862
|
|
|
1151
863
|
<li class="odd ">
|
|
1152
864
|
<div class="item">
|
|
1153
|
-
<span class='object_link'><a href="Doing/Errors/
|
|
1154
|
-
<small>Doing::Errors::
|
|
865
|
+
<span class='object_link'><a href="Doing/Errors/NoResults.html#initialize-instance_method" title="Doing::Errors::NoResults#initialize (method)">#initialize</a></span>
|
|
866
|
+
<small>Doing::Errors::NoResults</small>
|
|
1155
867
|
</div>
|
|
1156
868
|
</li>
|
|
1157
869
|
|
|
1158
870
|
|
|
1159
871
|
<li class="even ">
|
|
1160
872
|
<div class="item">
|
|
1161
|
-
<span class='object_link'><a href="Doing/Errors/
|
|
1162
|
-
<small>Doing::Errors::
|
|
873
|
+
<span class='object_link'><a href="Doing/Errors/HistoryLimitError.html#initialize-instance_method" title="Doing::Errors::HistoryLimitError#initialize (method)">#initialize</a></span>
|
|
874
|
+
<small>Doing::Errors::HistoryLimitError</small>
|
|
1163
875
|
</div>
|
|
1164
876
|
</li>
|
|
1165
877
|
|
|
1166
878
|
|
|
1167
879
|
<li class="odd ">
|
|
1168
880
|
<div class="item">
|
|
1169
|
-
<span class='object_link'><a href="Doing/Errors/
|
|
1170
|
-
<small>Doing::Errors::
|
|
881
|
+
<span class='object_link'><a href="Doing/Errors/MissingBackupFile.html#initialize-instance_method" title="Doing::Errors::MissingBackupFile#initialize (method)">#initialize</a></span>
|
|
882
|
+
<small>Doing::Errors::MissingBackupFile</small>
|
|
1171
883
|
</div>
|
|
1172
884
|
</li>
|
|
1173
885
|
|
|
1174
886
|
|
|
1175
887
|
<li class="even ">
|
|
1176
888
|
<div class="item">
|
|
1177
|
-
<span class='object_link'><a href="Doing/Errors/
|
|
1178
|
-
<small>Doing::Errors::
|
|
889
|
+
<span class='object_link'><a href="Doing/Errors/InvalidPlugin.html#initialize-instance_method" title="Doing::Errors::InvalidPlugin#initialize (method)">#initialize</a></span>
|
|
890
|
+
<small>Doing::Errors::InvalidPlugin</small>
|
|
1179
891
|
</div>
|
|
1180
892
|
</li>
|
|
1181
893
|
|
|
1182
894
|
|
|
1183
895
|
<li class="odd ">
|
|
1184
896
|
<div class="item">
|
|
1185
|
-
<span class='object_link'><a href="
|
|
1186
|
-
<small>
|
|
897
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#initialize-instance_method" title="GLI::Commands::MarkdownDocumentListener#initialize (method)">#initialize</a></span>
|
|
898
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
1187
899
|
</div>
|
|
1188
900
|
</li>
|
|
1189
901
|
|
|
1190
902
|
|
|
1191
903
|
<li class="even ">
|
|
1192
904
|
<div class="item">
|
|
1193
|
-
<span class='object_link'><a href="Doing/
|
|
1194
|
-
<small>Doing::
|
|
905
|
+
<span class='object_link'><a href="Doing/Errors/PluginException.html#initialize-instance_method" title="Doing::Errors::PluginException#initialize (method)">#initialize</a></span>
|
|
906
|
+
<small>Doing::Errors::PluginException</small>
|
|
1195
907
|
</div>
|
|
1196
908
|
</li>
|
|
1197
909
|
|
|
1198
910
|
|
|
1199
911
|
<li class="odd ">
|
|
1200
912
|
<div class="item">
|
|
1201
|
-
<span class='object_link'><a href="
|
|
1202
|
-
<small>
|
|
913
|
+
<span class='object_link'><a href="Doing/Section.html#initialize-instance_method" title="Doing::Section#initialize (method)">#initialize</a></span>
|
|
914
|
+
<small>Doing::Section</small>
|
|
1203
915
|
</div>
|
|
1204
916
|
</li>
|
|
1205
917
|
|
|
1206
918
|
|
|
1207
919
|
<li class="even ">
|
|
1208
920
|
<div class="item">
|
|
1209
|
-
<span class='object_link'><a href="
|
|
1210
|
-
<small>
|
|
921
|
+
<span class='object_link'><a href="Doing/Logger.html#initialize-instance_method" title="Doing::Logger#initialize (method)">#initialize</a></span>
|
|
922
|
+
<small>Doing::Logger</small>
|
|
1211
923
|
</div>
|
|
1212
924
|
</li>
|
|
1213
925
|
|
|
1214
926
|
|
|
1215
927
|
<li class="odd ">
|
|
1216
928
|
<div class="item">
|
|
1217
|
-
<span class='object_link'><a href="
|
|
1218
|
-
<small>
|
|
929
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#initialize-instance_method" title="BooleanTermParser::Query#initialize (method)">#initialize</a></span>
|
|
930
|
+
<small>BooleanTermParser::Query</small>
|
|
1219
931
|
</div>
|
|
1220
932
|
</li>
|
|
1221
933
|
|
|
1222
934
|
|
|
1223
935
|
<li class="even ">
|
|
1224
936
|
<div class="item">
|
|
1225
|
-
<span class='object_link'><a href="
|
|
1226
|
-
<small>
|
|
937
|
+
<span class='object_link'><a href="Doing/Configuration.html#initialize-instance_method" title="Doing::Configuration#initialize (method)">#initialize</a></span>
|
|
938
|
+
<small>Doing::Configuration</small>
|
|
1227
939
|
</div>
|
|
1228
940
|
</li>
|
|
1229
941
|
|
|
1230
942
|
|
|
1231
943
|
<li class="odd ">
|
|
1232
944
|
<div class="item">
|
|
1233
|
-
<span class='object_link'><a href="
|
|
1234
|
-
<small>
|
|
945
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#initialize-instance_method" title="BooleanTermParser::Clause#initialize (method)">#initialize</a></span>
|
|
946
|
+
<small>BooleanTermParser::Clause</small>
|
|
1235
947
|
</div>
|
|
1236
948
|
</li>
|
|
1237
949
|
|
|
1238
950
|
|
|
1239
951
|
<li class="even ">
|
|
1240
952
|
<div class="item">
|
|
1241
|
-
<span class='object_link'><a href="Doing/
|
|
1242
|
-
<small>Doing::
|
|
953
|
+
<span class='object_link'><a href="Doing/Errors/WrongCommand.html#initialize-instance_method" title="Doing::Errors::WrongCommand#initialize (method)">#initialize</a></span>
|
|
954
|
+
<small>Doing::Errors::WrongCommand</small>
|
|
1243
955
|
</div>
|
|
1244
956
|
</li>
|
|
1245
957
|
|
|
@@ -1262,133 +974,141 @@
|
|
|
1262
974
|
|
|
1263
975
|
<li class="odd ">
|
|
1264
976
|
<div class="item">
|
|
1265
|
-
<span class='object_link'><a href="Doing/
|
|
1266
|
-
<small>Doing::
|
|
977
|
+
<span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html#initialize-instance_method" title="Doing::Errors::DoingNoTraceError#initialize (method)">#initialize</a></span>
|
|
978
|
+
<small>Doing::Errors::DoingNoTraceError</small>
|
|
1267
979
|
</div>
|
|
1268
980
|
</li>
|
|
1269
981
|
|
|
1270
982
|
|
|
1271
983
|
<li class="even ">
|
|
1272
984
|
<div class="item">
|
|
1273
|
-
<span class='object_link'><a href="Doing/
|
|
1274
|
-
<small>Doing::
|
|
985
|
+
<span class='object_link'><a href="Doing/Errors/UserCancelled.html#initialize-instance_method" title="Doing::Errors::UserCancelled#initialize (method)">#initialize</a></span>
|
|
986
|
+
<small>Doing::Errors::UserCancelled</small>
|
|
1275
987
|
</div>
|
|
1276
988
|
</li>
|
|
1277
989
|
|
|
1278
990
|
|
|
1279
991
|
<li class="odd ">
|
|
1280
992
|
<div class="item">
|
|
1281
|
-
<span class='object_link'><a href="Doing/
|
|
1282
|
-
<small>Doing::
|
|
993
|
+
<span class='object_link'><a href="Doing/Errors/EmptyInput.html#initialize-instance_method" title="Doing::Errors::EmptyInput#initialize (method)">#initialize</a></span>
|
|
994
|
+
<small>Doing::Errors::EmptyInput</small>
|
|
1283
995
|
</div>
|
|
1284
996
|
</li>
|
|
1285
997
|
|
|
1286
998
|
|
|
1287
999
|
<li class="even ">
|
|
1288
1000
|
<div class="item">
|
|
1289
|
-
<span class='object_link'><a href="Doing/
|
|
1290
|
-
<small>Doing::
|
|
1001
|
+
<span class='object_link'><a href="Doing/Errors/DoingStandardError.html#initialize-instance_method" title="Doing::Errors::DoingStandardError#initialize (method)">#initialize</a></span>
|
|
1002
|
+
<small>Doing::Errors::DoingStandardError</small>
|
|
1291
1003
|
</div>
|
|
1292
1004
|
</li>
|
|
1293
1005
|
|
|
1294
1006
|
|
|
1295
1007
|
<li class="odd ">
|
|
1296
1008
|
<div class="item">
|
|
1297
|
-
<span class='object_link'><a href="Doing/
|
|
1298
|
-
<small>Doing::
|
|
1009
|
+
<span class='object_link'><a href="Doing/Note.html#initialize-instance_method" title="Doing::Note#initialize (method)">#initialize</a></span>
|
|
1010
|
+
<small>Doing::Note</small>
|
|
1299
1011
|
</div>
|
|
1300
1012
|
</li>
|
|
1301
1013
|
|
|
1302
1014
|
|
|
1303
1015
|
<li class="even ">
|
|
1304
1016
|
<div class="item">
|
|
1305
|
-
<span class='object_link'><a href="Doing/
|
|
1306
|
-
<small>Doing::
|
|
1017
|
+
<span class='object_link'><a href="Doing/TemplateString.html#initialize-instance_method" title="Doing::TemplateString#initialize (method)">#initialize</a></span>
|
|
1018
|
+
<small>Doing::TemplateString</small>
|
|
1307
1019
|
</div>
|
|
1308
1020
|
</li>
|
|
1309
1021
|
|
|
1310
1022
|
|
|
1311
1023
|
<li class="odd ">
|
|
1312
1024
|
<div class="item">
|
|
1313
|
-
<span class='object_link'><a href="Doing/
|
|
1314
|
-
<small>Doing::
|
|
1025
|
+
<span class='object_link'><a href="Doing/Items.html#initialize-instance_method" title="Doing::Items#initialize (method)">#initialize</a></span>
|
|
1026
|
+
<small>Doing::Items</small>
|
|
1315
1027
|
</div>
|
|
1316
1028
|
</li>
|
|
1317
1029
|
|
|
1318
1030
|
|
|
1319
1031
|
<li class="even ">
|
|
1320
1032
|
<div class="item">
|
|
1321
|
-
<span class='object_link'><a href="
|
|
1322
|
-
<small>
|
|
1033
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#initialize-instance_method" title="PhraseParser::TermClause#initialize (method)">#initialize</a></span>
|
|
1034
|
+
<small>PhraseParser::TermClause</small>
|
|
1323
1035
|
</div>
|
|
1324
1036
|
</li>
|
|
1325
1037
|
|
|
1326
1038
|
|
|
1327
1039
|
<li class="odd ">
|
|
1328
1040
|
<div class="item">
|
|
1329
|
-
<span class='object_link'><a href="
|
|
1330
|
-
<small>
|
|
1041
|
+
<span class='object_link'><a href="PhraseParser/Query.html#initialize-instance_method" title="PhraseParser::Query#initialize (method)">#initialize</a></span>
|
|
1042
|
+
<small>PhraseParser::Query</small>
|
|
1331
1043
|
</div>
|
|
1332
1044
|
</li>
|
|
1333
1045
|
|
|
1334
1046
|
|
|
1335
1047
|
<li class="even ">
|
|
1336
1048
|
<div class="item">
|
|
1337
|
-
<span class='object_link'><a href="Doing/
|
|
1338
|
-
<small>Doing::
|
|
1049
|
+
<span class='object_link'><a href="Doing/Hooks.html#insert_hook-class_method" title="Doing::Hooks.insert_hook (method)">insert_hook</a></span>
|
|
1050
|
+
<small>Doing::Hooks</small>
|
|
1339
1051
|
</div>
|
|
1340
1052
|
</li>
|
|
1341
1053
|
|
|
1342
1054
|
|
|
1343
1055
|
<li class="odd ">
|
|
1344
1056
|
<div class="item">
|
|
1345
|
-
<span class='object_link'><a href="Doing/
|
|
1346
|
-
<small>Doing::
|
|
1057
|
+
<span class='object_link'><a href="Doing/Completion.html#install_builtin-class_method" title="Doing::Completion.install_builtin (method)">install_builtin</a></span>
|
|
1058
|
+
<small>Doing::Completion</small>
|
|
1347
1059
|
</div>
|
|
1348
1060
|
</li>
|
|
1349
1061
|
|
|
1350
1062
|
|
|
1351
1063
|
<li class="even ">
|
|
1352
1064
|
<div class="item">
|
|
1353
|
-
<span class='object_link'><a href="Doing/
|
|
1354
|
-
<small>Doing::
|
|
1065
|
+
<span class='object_link'><a href="Doing/Prompt.html#install_fzf-class_method" title="Doing::Prompt.install_fzf (method)">install_fzf</a></span>
|
|
1066
|
+
<small>Doing::Prompt</small>
|
|
1355
1067
|
</div>
|
|
1356
1068
|
</li>
|
|
1357
1069
|
|
|
1358
1070
|
|
|
1359
1071
|
<li class="odd ">
|
|
1360
1072
|
<div class="item">
|
|
1361
|
-
<span class='object_link'><a href="Doing/
|
|
1362
|
-
<small>Doing::
|
|
1073
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#last_backup-instance_method" title="Doing::Util::Backup#last_backup (method)">#last_backup</a></span>
|
|
1074
|
+
<small>Doing::Util::Backup</small>
|
|
1363
1075
|
</div>
|
|
1364
1076
|
</li>
|
|
1365
1077
|
|
|
1366
1078
|
|
|
1367
1079
|
<li class="even ">
|
|
1368
1080
|
<div class="item">
|
|
1369
|
-
<span class='object_link'><a href="Doing/
|
|
1370
|
-
<small>Doing::
|
|
1081
|
+
<span class='object_link'><a href="Doing/Logger.html#level-instance_method" title="Doing::Logger#level (method)">#level</a></span>
|
|
1082
|
+
<small>Doing::Logger</small>
|
|
1371
1083
|
</div>
|
|
1372
1084
|
</li>
|
|
1373
1085
|
|
|
1374
1086
|
|
|
1375
1087
|
<li class="odd ">
|
|
1376
1088
|
<div class="item">
|
|
1377
|
-
<span class='object_link'><a href="Doing/
|
|
1378
|
-
<small>Doing::
|
|
1089
|
+
<span class='object_link'><a href="Doing/Completion.html#link_default-class_method" title="Doing::Completion.link_default (method)">link_default</a></span>
|
|
1090
|
+
<small>Doing::Completion</small>
|
|
1379
1091
|
</div>
|
|
1380
1092
|
</li>
|
|
1381
1093
|
|
|
1382
1094
|
|
|
1383
1095
|
<li class="even ">
|
|
1384
1096
|
<div class="item">
|
|
1385
|
-
<span class='object_link'><a href="Doing/Plugins.html#
|
|
1097
|
+
<span class='object_link'><a href="Doing/Plugins.html#list_plugins-class_method" title="Doing::Plugins.list_plugins (method)">list_plugins</a></span>
|
|
1386
1098
|
<small>Doing::Plugins</small>
|
|
1387
1099
|
</div>
|
|
1388
1100
|
</li>
|
|
1389
1101
|
|
|
1390
1102
|
|
|
1391
1103
|
<li class="odd ">
|
|
1104
|
+
<div class="item">
|
|
1105
|
+
<span class='object_link'><a href="Doing/Plugins.html#load_plugins-class_method" title="Doing::Plugins.load_plugins (method)">load_plugins</a></span>
|
|
1106
|
+
<small>Doing::Plugins</small>
|
|
1107
|
+
</div>
|
|
1108
|
+
</li>
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
<li class="even ">
|
|
1392
1112
|
<div class="item">
|
|
1393
1113
|
<span class='object_link'><a href="Doing/Logger.html#log_benchmarks-instance_method" title="Doing::Logger#log_benchmarks (method)">#log_benchmarks</a></span>
|
|
1394
1114
|
<small>Doing::Logger</small>
|
|
@@ -1396,7 +1116,7 @@
|
|
|
1396
1116
|
</li>
|
|
1397
1117
|
|
|
1398
1118
|
|
|
1399
|
-
<li class="
|
|
1119
|
+
<li class="odd ">
|
|
1400
1120
|
<div class="item">
|
|
1401
1121
|
<span class='object_link'><a href="Doing/Logger.html#log_change-instance_method" title="Doing::Logger#log_change (method)">#log_change</a></span>
|
|
1402
1122
|
<small>Doing::Logger</small>
|
|
@@ -1404,7 +1124,7 @@
|
|
|
1404
1124
|
</li>
|
|
1405
1125
|
|
|
1406
1126
|
|
|
1407
|
-
<li class="
|
|
1127
|
+
<li class="even ">
|
|
1408
1128
|
<div class="item">
|
|
1409
1129
|
<span class='object_link'><a href="Doing/Logger.html#log_level=-instance_method" title="Doing::Logger#log_level= (method)">#log_level=</a></span>
|
|
1410
1130
|
<small>Doing::Logger</small>
|
|
@@ -1412,7 +1132,7 @@
|
|
|
1412
1132
|
</li>
|
|
1413
1133
|
|
|
1414
1134
|
|
|
1415
|
-
<li class="
|
|
1135
|
+
<li class="odd ">
|
|
1416
1136
|
<div class="item">
|
|
1417
1137
|
<span class='object_link'><a href="Doing/Logger.html#log_now-instance_method" title="Doing::Logger#log_now (method)">#log_now</a></span>
|
|
1418
1138
|
<small>Doing::Logger</small>
|
|
@@ -1420,7 +1140,7 @@
|
|
|
1420
1140
|
</li>
|
|
1421
1141
|
|
|
1422
1142
|
|
|
1423
|
-
<li class="
|
|
1143
|
+
<li class="even ">
|
|
1424
1144
|
<div class="item">
|
|
1425
1145
|
<span class='object_link'><a href="Doing/WWID.html#logger-instance_method" title="Doing::WWID#logger (method)">#logger</a></span>
|
|
1426
1146
|
<small>Doing::WWID</small>
|
|
@@ -1428,7 +1148,7 @@
|
|
|
1428
1148
|
</li>
|
|
1429
1149
|
|
|
1430
1150
|
|
|
1431
|
-
<li class="
|
|
1151
|
+
<li class="odd ">
|
|
1432
1152
|
<div class="item">
|
|
1433
1153
|
<span class='object_link'><a href="BooleanTermParser/Query.html#match-instance_method" title="BooleanTermParser::Query#match (method)">#match</a></span>
|
|
1434
1154
|
<small>BooleanTermParser::Query</small>
|
|
@@ -1436,7 +1156,7 @@
|
|
|
1436
1156
|
</li>
|
|
1437
1157
|
|
|
1438
1158
|
|
|
1439
|
-
<li class="
|
|
1159
|
+
<li class="even ">
|
|
1440
1160
|
<div class="item">
|
|
1441
1161
|
<span class='object_link'><a href="PhraseParser/Query.html#match-instance_method" title="PhraseParser::Query#match (method)">#match</a></span>
|
|
1442
1162
|
<small>PhraseParser::Query</small>
|
|
@@ -1444,7 +1164,7 @@
|
|
|
1444
1164
|
</li>
|
|
1445
1165
|
|
|
1446
1166
|
|
|
1447
|
-
<li class="
|
|
1167
|
+
<li class="odd ">
|
|
1448
1168
|
<div class="item">
|
|
1449
1169
|
<span class='object_link'><a href="PhraseParser/Query.html#match_phrase-instance_method" title="PhraseParser::Query#match_phrase (method)">#match_phrase</a></span>
|
|
1450
1170
|
<small>PhraseParser::Query</small>
|
|
@@ -1452,7 +1172,7 @@
|
|
|
1452
1172
|
</li>
|
|
1453
1173
|
|
|
1454
1174
|
|
|
1455
|
-
<li class="
|
|
1175
|
+
<li class="even ">
|
|
1456
1176
|
<div class="item">
|
|
1457
1177
|
<span class='object_link'><a href="Doing/Util.html#mergable%3F-instance_method" title="Doing::Util#mergable? (method)">#mergable?</a></span>
|
|
1458
1178
|
<small>Doing::Util</small>
|
|
@@ -1460,7 +1180,7 @@
|
|
|
1460
1180
|
</li>
|
|
1461
1181
|
|
|
1462
1182
|
|
|
1463
|
-
<li class="
|
|
1183
|
+
<li class="odd ">
|
|
1464
1184
|
<div class="item">
|
|
1465
1185
|
<span class='object_link'><a href="Doing/Util.html#merge_default_proc-instance_method" title="Doing::Util#merge_default_proc (method)">#merge_default_proc</a></span>
|
|
1466
1186
|
<small>Doing::Util</small>
|
|
@@ -1468,7 +1188,7 @@
|
|
|
1468
1188
|
</li>
|
|
1469
1189
|
|
|
1470
1190
|
|
|
1471
|
-
<li class="
|
|
1191
|
+
<li class="even ">
|
|
1472
1192
|
<div class="item">
|
|
1473
1193
|
<span class='object_link'><a href="Doing/Util.html#merge_values-instance_method" title="Doing::Util#merge_values (method)">#merge_values</a></span>
|
|
1474
1194
|
<small>Doing::Util</small>
|
|
@@ -1476,7 +1196,7 @@
|
|
|
1476
1196
|
</li>
|
|
1477
1197
|
|
|
1478
1198
|
|
|
1479
|
-
<li class="
|
|
1199
|
+
<li class="odd ">
|
|
1480
1200
|
<div class="item">
|
|
1481
1201
|
<span class='object_link'><a href="Doing/Logger.html#messages-instance_method" title="Doing::Logger#messages (method)">#messages</a></span>
|
|
1482
1202
|
<small>Doing::Logger</small>
|
|
@@ -1484,7 +1204,7 @@
|
|
|
1484
1204
|
</li>
|
|
1485
1205
|
|
|
1486
1206
|
|
|
1487
|
-
<li class="
|
|
1207
|
+
<li class="even ">
|
|
1488
1208
|
<div class="item">
|
|
1489
1209
|
<span class='object_link'><a href="Doing/Item.html#move_to-instance_method" title="Doing::Item#move_to (method)">#move_to</a></span>
|
|
1490
1210
|
<small>Doing::Item</small>
|
|
@@ -1492,7 +1212,7 @@
|
|
|
1492
1212
|
</li>
|
|
1493
1213
|
|
|
1494
1214
|
|
|
1495
|
-
<li class="
|
|
1215
|
+
<li class="odd ">
|
|
1496
1216
|
<div class="item">
|
|
1497
1217
|
<span class='object_link'><a href="Status.html#msg-instance_method" title="Status#msg (method)">#msg</a></span>
|
|
1498
1218
|
<small>Status</small>
|
|
@@ -1500,7 +1220,7 @@
|
|
|
1500
1220
|
</li>
|
|
1501
1221
|
|
|
1502
1222
|
|
|
1503
|
-
<li class="
|
|
1223
|
+
<li class="even ">
|
|
1504
1224
|
<div class="item">
|
|
1505
1225
|
<span class='object_link'><a href="PhraseParser/Query.html#must_clauses-instance_method" title="PhraseParser::Query#must_clauses (method)">#must_clauses</a></span>
|
|
1506
1226
|
<small>PhraseParser::Query</small>
|
|
@@ -1508,7 +1228,7 @@
|
|
|
1508
1228
|
</li>
|
|
1509
1229
|
|
|
1510
1230
|
|
|
1511
|
-
<li class="
|
|
1231
|
+
<li class="odd ">
|
|
1512
1232
|
<div class="item">
|
|
1513
1233
|
<span class='object_link'><a href="PhraseParser/Query.html#must_not_clauses-instance_method" title="PhraseParser::Query#must_not_clauses (method)">#must_not_clauses</a></span>
|
|
1514
1234
|
<small>PhraseParser::Query</small>
|
|
@@ -1516,7 +1236,7 @@
|
|
|
1516
1236
|
</li>
|
|
1517
1237
|
|
|
1518
1238
|
|
|
1519
|
-
<li class="
|
|
1239
|
+
<li class="even ">
|
|
1520
1240
|
<div class="item">
|
|
1521
1241
|
<span class='object_link'><a href="BooleanTermParser/Query.html#must_not_terms-instance_method" title="BooleanTermParser::Query#must_not_terms (method)">#must_not_terms</a></span>
|
|
1522
1242
|
<small>BooleanTermParser::Query</small>
|
|
@@ -1524,7 +1244,7 @@
|
|
|
1524
1244
|
</li>
|
|
1525
1245
|
|
|
1526
1246
|
|
|
1527
|
-
<li class="
|
|
1247
|
+
<li class="odd ">
|
|
1528
1248
|
<div class="item">
|
|
1529
1249
|
<span class='object_link'><a href="BooleanTermParser/Query.html#must_terms-instance_method" title="BooleanTermParser::Query#must_terms (method)">#must_terms</a></span>
|
|
1530
1250
|
<small>BooleanTermParser::Query</small>
|
|
@@ -1532,26 +1252,18 @@
|
|
|
1532
1252
|
</li>
|
|
1533
1253
|
|
|
1534
1254
|
|
|
1535
|
-
<li class="odd ">
|
|
1536
|
-
<div class="item">
|
|
1537
|
-
<span class='object_link'><a href="Doing/WWID.html#next_item-instance_method" title="Doing::WWID#next_item (method)">#next_item</a></span>
|
|
1538
|
-
<small>Doing::WWID</small>
|
|
1539
|
-
</div>
|
|
1540
|
-
</li>
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
1255
|
<li class="even ">
|
|
1544
1256
|
<div class="item">
|
|
1545
|
-
<span class='object_link'><a href="
|
|
1546
|
-
<small>
|
|
1257
|
+
<span class='object_link'><a href="String.html#normalize_age-instance_method" title="String#normalize_age (method)">#normalize_age</a></span>
|
|
1258
|
+
<small>String</small>
|
|
1547
1259
|
</div>
|
|
1548
1260
|
</li>
|
|
1549
1261
|
|
|
1550
1262
|
|
|
1551
1263
|
<li class="odd ">
|
|
1552
1264
|
<div class="item">
|
|
1553
|
-
<span class='object_link'><a href="
|
|
1554
|
-
<small>
|
|
1265
|
+
<span class='object_link'><a href="Symbol.html#normalize_age-instance_method" title="Symbol#normalize_age (method)">#normalize_age</a></span>
|
|
1266
|
+
<small>Symbol</small>
|
|
1555
1267
|
</div>
|
|
1556
1268
|
</li>
|
|
1557
1269
|
|
|
@@ -1566,16 +1278,16 @@
|
|
|
1566
1278
|
|
|
1567
1279
|
<li class="odd ">
|
|
1568
1280
|
<div class="item">
|
|
1569
|
-
<span class='object_link'><a href="
|
|
1570
|
-
<small>
|
|
1281
|
+
<span class='object_link'><a href="String.html#normalize_bool-instance_method" title="String#normalize_bool (method)">#normalize_bool</a></span>
|
|
1282
|
+
<small>String</small>
|
|
1571
1283
|
</div>
|
|
1572
1284
|
</li>
|
|
1573
1285
|
|
|
1574
1286
|
|
|
1575
1287
|
<li class="even ">
|
|
1576
1288
|
<div class="item">
|
|
1577
|
-
<span class='object_link'><a href="
|
|
1578
|
-
<small>
|
|
1289
|
+
<span class='object_link'><a href="Symbol.html#normalize_bool-instance_method" title="Symbol#normalize_bool (method)">#normalize_bool</a></span>
|
|
1290
|
+
<small>Symbol</small>
|
|
1579
1291
|
</div>
|
|
1580
1292
|
</li>
|
|
1581
1293
|
|
|
@@ -1670,24 +1382,24 @@
|
|
|
1670
1382
|
|
|
1671
1383
|
<li class="even ">
|
|
1672
1384
|
<div class="item">
|
|
1673
|
-
<span class='object_link'><a href="
|
|
1674
|
-
<small>
|
|
1385
|
+
<span class='object_link'><a href="String.html#normalize_tag_sort-instance_method" title="String#normalize_tag_sort (method)">#normalize_tag_sort</a></span>
|
|
1386
|
+
<small>String</small>
|
|
1675
1387
|
</div>
|
|
1676
1388
|
</li>
|
|
1677
1389
|
|
|
1678
1390
|
|
|
1679
1391
|
<li class="odd ">
|
|
1680
1392
|
<div class="item">
|
|
1681
|
-
<span class='object_link'><a href="
|
|
1682
|
-
<small>
|
|
1393
|
+
<span class='object_link'><a href="FalseClass.html#normalize_tag_sort-instance_method" title="FalseClass#normalize_tag_sort (method)">#normalize_tag_sort</a></span>
|
|
1394
|
+
<small>FalseClass</small>
|
|
1683
1395
|
</div>
|
|
1684
1396
|
</li>
|
|
1685
1397
|
|
|
1686
1398
|
|
|
1687
1399
|
<li class="even ">
|
|
1688
1400
|
<div class="item">
|
|
1689
|
-
<span class='object_link'><a href="
|
|
1690
|
-
<small>
|
|
1401
|
+
<span class='object_link'><a href="TrueClass.html#normalize_tag_sort-instance_method" title="TrueClass#normalize_tag_sort (method)">#normalize_tag_sort</a></span>
|
|
1402
|
+
<small>TrueClass</small>
|
|
1691
1403
|
</div>
|
|
1692
1404
|
</li>
|
|
1693
1405
|
|
|
@@ -1742,24 +1454,24 @@
|
|
|
1742
1454
|
|
|
1743
1455
|
<li class="odd ">
|
|
1744
1456
|
<div class="item">
|
|
1745
|
-
<span class='object_link'><a href="
|
|
1746
|
-
<small>
|
|
1457
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#operator-instance_method" title="BooleanTermParser::Clause#operator (method)">#operator</a></span>
|
|
1458
|
+
<small>BooleanTermParser::Clause</small>
|
|
1747
1459
|
</div>
|
|
1748
1460
|
</li>
|
|
1749
1461
|
|
|
1750
1462
|
|
|
1751
1463
|
<li class="even ">
|
|
1752
1464
|
<div class="item">
|
|
1753
|
-
<span class='object_link'><a href="
|
|
1754
|
-
<small>
|
|
1465
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#operator-instance_method" title="PhraseParser::TermClause#operator (method)">#operator</a></span>
|
|
1466
|
+
<small>PhraseParser::TermClause</small>
|
|
1755
1467
|
</div>
|
|
1756
1468
|
</li>
|
|
1757
1469
|
|
|
1758
1470
|
|
|
1759
1471
|
<li class="odd ">
|
|
1760
1472
|
<div class="item">
|
|
1761
|
-
<span class='object_link'><a href="PhraseParser/
|
|
1762
|
-
<small>PhraseParser::
|
|
1473
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#operator-instance_method" title="PhraseParser::PhraseClause#operator (method)">#operator</a></span>
|
|
1474
|
+
<small>PhraseParser::PhraseClause</small>
|
|
1763
1475
|
</div>
|
|
1764
1476
|
</li>
|
|
1765
1477
|
|
|
@@ -1774,16 +1486,16 @@
|
|
|
1774
1486
|
|
|
1775
1487
|
<li class="odd ">
|
|
1776
1488
|
<div class="item">
|
|
1777
|
-
<span class='object_link'><a href="Doing/
|
|
1778
|
-
<small>Doing::
|
|
1489
|
+
<span class='object_link'><a href="Doing/Section.html#original-instance_method" title="Doing::Section#original (method)">#original</a></span>
|
|
1490
|
+
<small>Doing::Section</small>
|
|
1779
1491
|
</div>
|
|
1780
1492
|
</li>
|
|
1781
1493
|
|
|
1782
1494
|
|
|
1783
1495
|
<li class="even ">
|
|
1784
1496
|
<div class="item">
|
|
1785
|
-
<span class='object_link'><a href="Doing/
|
|
1786
|
-
<small>Doing::
|
|
1497
|
+
<span class='object_link'><a href="Doing/TemplateString.html#original-instance_method" title="Doing::TemplateString#original (method)">#original</a></span>
|
|
1498
|
+
<small>Doing::TemplateString</small>
|
|
1787
1499
|
</div>
|
|
1788
1500
|
</li>
|
|
1789
1501
|
|
|
@@ -1797,14 +1509,6 @@
|
|
|
1797
1509
|
|
|
1798
1510
|
|
|
1799
1511
|
<li class="even ">
|
|
1800
|
-
<div class="item">
|
|
1801
|
-
<span class='object_link'><a href="Doing/Item.html#overlapping_time%3F-instance_method" title="Doing::Item#overlapping_time? (method)">#overlapping_time?</a></span>
|
|
1802
|
-
<small>Doing::Item</small>
|
|
1803
|
-
</div>
|
|
1804
|
-
</li>
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
<li class="odd ">
|
|
1808
1512
|
<div class="item">
|
|
1809
1513
|
<span class='object_link'><a href="Doing/Pager.html#page-class_method" title="Doing::Pager.page (method)">page</a></span>
|
|
1810
1514
|
<small>Doing::Pager</small>
|
|
@@ -1812,7 +1516,7 @@
|
|
|
1812
1516
|
</li>
|
|
1813
1517
|
|
|
1814
1518
|
|
|
1815
|
-
<li class="
|
|
1519
|
+
<li class="odd ">
|
|
1816
1520
|
<div class="item">
|
|
1817
1521
|
<span class='object_link'><a href="Doing/Pager.html#paginate-class_method" title="Doing::Pager.paginate (method)">paginate</a></span>
|
|
1818
1522
|
<small>Doing::Pager</small>
|
|
@@ -1820,7 +1524,7 @@
|
|
|
1820
1524
|
</li>
|
|
1821
1525
|
|
|
1822
1526
|
|
|
1823
|
-
<li class="
|
|
1527
|
+
<li class="even ">
|
|
1824
1528
|
<div class="item">
|
|
1825
1529
|
<span class='object_link'><a href="Doing/Pager.html#paginate=-class_method" title="Doing::Pager.paginate= (method)">paginate=</a></span>
|
|
1826
1530
|
<small>Doing::Pager</small>
|
|
@@ -1828,7 +1532,7 @@
|
|
|
1828
1532
|
</li>
|
|
1829
1533
|
|
|
1830
1534
|
|
|
1831
|
-
<li class="
|
|
1535
|
+
<li class="odd ">
|
|
1832
1536
|
<div class="item">
|
|
1833
1537
|
<span class='object_link'><a href="Doing/TemplateString.html#parse_colors-instance_method" title="Doing::TemplateString#parse_colors (method)">#parse_colors</a></span>
|
|
1834
1538
|
<small>Doing::TemplateString</small>
|
|
@@ -1836,7 +1540,7 @@
|
|
|
1836
1540
|
</li>
|
|
1837
1541
|
|
|
1838
1542
|
|
|
1839
|
-
<li class="
|
|
1543
|
+
<li class="even ">
|
|
1840
1544
|
<div class="item">
|
|
1841
1545
|
<span class='object_link'><a href="Doing/Completion.html#parse_command-class_method" title="Doing::Completion.parse_command (method)">parse_command</a></span>
|
|
1842
1546
|
<small>Doing::Completion</small>
|
|
@@ -1844,7 +1548,7 @@
|
|
|
1844
1548
|
</li>
|
|
1845
1549
|
|
|
1846
1550
|
|
|
1847
|
-
<li class="
|
|
1551
|
+
<li class="odd ">
|
|
1848
1552
|
<div class="item">
|
|
1849
1553
|
<span class='object_link'><a href="Doing/Completion.html#parse_commands-class_method" title="Doing::Completion.parse_commands (method)">parse_commands</a></span>
|
|
1850
1554
|
<small>Doing::Completion</small>
|
|
@@ -1852,7 +1556,7 @@
|
|
|
1852
1556
|
</li>
|
|
1853
1557
|
|
|
1854
1558
|
|
|
1855
|
-
<li class="
|
|
1559
|
+
<li class="even ">
|
|
1856
1560
|
<div class="item">
|
|
1857
1561
|
<span class='object_link'><a href="Doing/Completion.html#parse_option-class_method" title="Doing::Completion.parse_option (method)">parse_option</a></span>
|
|
1858
1562
|
<small>Doing::Completion</small>
|
|
@@ -1860,7 +1564,7 @@
|
|
|
1860
1564
|
</li>
|
|
1861
1565
|
|
|
1862
1566
|
|
|
1863
|
-
<li class="
|
|
1567
|
+
<li class="odd ">
|
|
1864
1568
|
<div class="item">
|
|
1865
1569
|
<span class='object_link'><a href="Doing/Completion.html#parse_options-class_method" title="Doing::Completion.parse_options (method)">parse_options</a></span>
|
|
1866
1570
|
<small>Doing::Completion</small>
|
|
@@ -1868,7 +1572,7 @@
|
|
|
1868
1572
|
</li>
|
|
1869
1573
|
|
|
1870
1574
|
|
|
1871
|
-
<li class="
|
|
1575
|
+
<li class="even ">
|
|
1872
1576
|
<div class="item">
|
|
1873
1577
|
<span class='object_link'><a href="Doing/TemplateString.html#parsed_colors-instance_method" title="Doing::TemplateString#parsed_colors (method)">#parsed_colors</a></span>
|
|
1874
1578
|
<small>Doing::TemplateString</small>
|
|
@@ -1876,7 +1580,7 @@
|
|
|
1876
1580
|
</li>
|
|
1877
1581
|
|
|
1878
1582
|
|
|
1879
|
-
<li class="
|
|
1583
|
+
<li class="odd ">
|
|
1880
1584
|
<div class="item">
|
|
1881
1585
|
<span class='object_link'><a href="PhraseParser/PhraseClause.html#phrase-instance_method" title="PhraseParser::PhraseClause#phrase (method)">#phrase</a></span>
|
|
1882
1586
|
<small>PhraseParser::PhraseClause</small>
|
|
@@ -1884,7 +1588,7 @@
|
|
|
1884
1588
|
</li>
|
|
1885
1589
|
|
|
1886
1590
|
|
|
1887
|
-
<li class="
|
|
1591
|
+
<li class="even ">
|
|
1888
1592
|
<div class="item">
|
|
1889
1593
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#plugin-instance_method" title="Doing::Errors::PluginException#plugin (method)">#plugin</a></span>
|
|
1890
1594
|
<small>Doing::Errors::PluginException</small>
|
|
@@ -1892,7 +1596,7 @@
|
|
|
1892
1596
|
</li>
|
|
1893
1597
|
|
|
1894
1598
|
|
|
1895
|
-
<li class="
|
|
1599
|
+
<li class="odd ">
|
|
1896
1600
|
<div class="item">
|
|
1897
1601
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_names-class_method" title="Doing::Plugins.plugin_names (method)">plugin_names</a></span>
|
|
1898
1602
|
<small>Doing::Plugins</small>
|
|
@@ -1900,7 +1604,7 @@
|
|
|
1900
1604
|
</li>
|
|
1901
1605
|
|
|
1902
1606
|
|
|
1903
|
-
<li class="
|
|
1607
|
+
<li class="even ">
|
|
1904
1608
|
<div class="item">
|
|
1905
1609
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_regex-class_method" title="Doing::Plugins.plugin_regex (method)">plugin_regex</a></span>
|
|
1906
1610
|
<small>Doing::Plugins</small>
|
|
@@ -1908,7 +1612,7 @@
|
|
|
1908
1612
|
</li>
|
|
1909
1613
|
|
|
1910
1614
|
|
|
1911
|
-
<li class="
|
|
1615
|
+
<li class="odd ">
|
|
1912
1616
|
<div class="item">
|
|
1913
1617
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_templates-class_method" title="Doing::Plugins.plugin_templates (method)">plugin_templates</a></span>
|
|
1914
1618
|
<small>Doing::Plugins</small>
|
|
@@ -1916,7 +1620,7 @@
|
|
|
1916
1620
|
</li>
|
|
1917
1621
|
|
|
1918
1622
|
|
|
1919
|
-
<li class="
|
|
1623
|
+
<li class="even ">
|
|
1920
1624
|
<div class="item">
|
|
1921
1625
|
<span class='object_link'><a href="Doing/Plugins.html#plugins-class_method" title="Doing::Plugins.plugins (method)">plugins</a></span>
|
|
1922
1626
|
<small>Doing::Plugins</small>
|
|
@@ -1924,7 +1628,7 @@
|
|
|
1924
1628
|
</li>
|
|
1925
1629
|
|
|
1926
1630
|
|
|
1927
|
-
<li class="
|
|
1631
|
+
<li class="odd ">
|
|
1928
1632
|
<div class="item">
|
|
1929
1633
|
<span class='object_link'><a href="Doing/Plugins.html#plugins_path-class_method" title="Doing::Plugins.plugins_path (method)">plugins_path</a></span>
|
|
1930
1634
|
<small>Doing::Plugins</small>
|
|
@@ -1932,7 +1636,7 @@
|
|
|
1932
1636
|
</li>
|
|
1933
1637
|
|
|
1934
1638
|
|
|
1935
|
-
<li class="
|
|
1639
|
+
<li class="even ">
|
|
1936
1640
|
<div class="item">
|
|
1937
1641
|
<span class='object_link'><a href="Doing/Hooks.html#priority_value-class_method" title="Doing::Hooks.priority_value (method)">priority_value</a></span>
|
|
1938
1642
|
<small>Doing::Hooks</small>
|
|
@@ -1940,7 +1644,7 @@
|
|
|
1940
1644
|
</li>
|
|
1941
1645
|
|
|
1942
1646
|
|
|
1943
|
-
<li class="
|
|
1647
|
+
<li class="odd ">
|
|
1944
1648
|
<div class="item">
|
|
1945
1649
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#program_desc-instance_method" title="GLI::Commands::MarkdownDocumentListener#program_desc (method)">#program_desc</a></span>
|
|
1946
1650
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1948,7 +1652,7 @@
|
|
|
1948
1652
|
</li>
|
|
1949
1653
|
|
|
1950
1654
|
|
|
1951
|
-
<li class="
|
|
1655
|
+
<li class="even ">
|
|
1952
1656
|
<div class="item">
|
|
1953
1657
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#program_long_desc-instance_method" title="GLI::Commands::MarkdownDocumentListener#program_long_desc (method)">#program_long_desc</a></span>
|
|
1954
1658
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -1956,7 +1660,7 @@
|
|
|
1956
1660
|
</li>
|
|
1957
1661
|
|
|
1958
1662
|
|
|
1959
|
-
<li class="
|
|
1663
|
+
<li class="odd ">
|
|
1960
1664
|
<div class="item">
|
|
1961
1665
|
<span class='object_link'><a href="Status.html#progress-instance_method" title="Status#progress (method)">#progress</a></span>
|
|
1962
1666
|
<small>Status</small>
|
|
@@ -1964,7 +1668,7 @@
|
|
|
1964
1668
|
</li>
|
|
1965
1669
|
|
|
1966
1670
|
|
|
1967
|
-
<li class="
|
|
1671
|
+
<li class="even ">
|
|
1968
1672
|
<div class="item">
|
|
1969
1673
|
<span class='object_link'><a href="Doing/Util/Backup.html#prune_backups-instance_method" title="Doing::Util::Backup#prune_backups (method)">#prune_backups</a></span>
|
|
1970
1674
|
<small>Doing::Util::Backup</small>
|
|
@@ -1972,7 +1676,7 @@
|
|
|
1972
1676
|
</li>
|
|
1973
1677
|
|
|
1974
1678
|
|
|
1975
|
-
<li class="
|
|
1679
|
+
<li class="odd ">
|
|
1976
1680
|
<div class="item">
|
|
1977
1681
|
<span class='object_link'><a href="Doing/TemplateString.html#raw-instance_method" title="Doing::TemplateString#raw (method)">#raw</a></span>
|
|
1978
1682
|
<small>Doing::TemplateString</small>
|
|
@@ -1980,7 +1684,7 @@
|
|
|
1980
1684
|
</li>
|
|
1981
1685
|
|
|
1982
1686
|
|
|
1983
|
-
<li class="
|
|
1687
|
+
<li class="even ">
|
|
1984
1688
|
<div class="item">
|
|
1985
1689
|
<span class='object_link'><a href="Doing/Prompt.html#read_line-class_method" title="Doing::Prompt.read_line (method)">read_line</a></span>
|
|
1986
1690
|
<small>Doing::Prompt</small>
|
|
@@ -1988,7 +1692,7 @@
|
|
|
1988
1692
|
</li>
|
|
1989
1693
|
|
|
1990
1694
|
|
|
1991
|
-
<li class="
|
|
1695
|
+
<li class="odd ">
|
|
1992
1696
|
<div class="item">
|
|
1993
1697
|
<span class='object_link'><a href="Doing/Prompt.html#read_lines-class_method" title="Doing::Prompt.read_lines (method)">read_lines</a></span>
|
|
1994
1698
|
<small>Doing::Prompt</small>
|
|
@@ -1996,14 +1700,6 @@
|
|
|
1996
1700
|
</li>
|
|
1997
1701
|
|
|
1998
1702
|
|
|
1999
|
-
<li class="odd ">
|
|
2000
|
-
<div class="item">
|
|
2001
|
-
<span class='object_link'><a href="Doing/WWID.html#recent-instance_method" title="Doing::WWID#recent (method)">#recent</a></span>
|
|
2002
|
-
<small>Doing::WWID</small>
|
|
2003
|
-
</div>
|
|
2004
|
-
</li>
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
1703
|
<li class="even ">
|
|
2008
1704
|
<div class="item">
|
|
2009
1705
|
<span class='object_link'><a href="Doing/Util/Backup.html#redo_backup-instance_method" title="Doing::Util::Backup#redo_backup (method)">#redo_backup</a></span>
|
|
@@ -2052,22 +1748,6 @@
|
|
|
2052
1748
|
</li>
|
|
2053
1749
|
|
|
2054
1750
|
|
|
2055
|
-
<li class="even ">
|
|
2056
|
-
<div class="item">
|
|
2057
|
-
<span class='object_link'><a href="Doing/WWID.html#repeat_item-instance_method" title="Doing::WWID#repeat_item (method)">#repeat_item</a></span>
|
|
2058
|
-
<small>Doing::WWID</small>
|
|
2059
|
-
</div>
|
|
2060
|
-
</li>
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
<li class="odd ">
|
|
2064
|
-
<div class="item">
|
|
2065
|
-
<span class='object_link'><a href="Doing/WWID.html#repeat_last-instance_method" title="Doing::WWID#repeat_last (method)">#repeat_last</a></span>
|
|
2066
|
-
<small>Doing::WWID</small>
|
|
2067
|
-
</div>
|
|
2068
|
-
</li>
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
1751
|
<li class="even ">
|
|
2072
1752
|
<div class="item">
|
|
2073
1753
|
<span class='object_link'><a href="Doing/Prompt.html#request_lines-class_method" title="Doing::Prompt.request_lines (method)">request_lines</a></span>
|
|
@@ -2077,14 +1757,6 @@
|
|
|
2077
1757
|
|
|
2078
1758
|
|
|
2079
1759
|
<li class="odd ">
|
|
2080
|
-
<div class="item">
|
|
2081
|
-
<span class='object_link'><a href="Doing/WWID.html#reset_item-instance_method" title="Doing::WWID#reset_item (method)">#reset_item</a></span>
|
|
2082
|
-
<small>Doing::WWID</small>
|
|
2083
|
-
</div>
|
|
2084
|
-
</li>
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
<li class="even ">
|
|
2088
1760
|
<div class="item">
|
|
2089
1761
|
<span class='object_link'><a href="Doing/Configuration.html#resolve_key_path-instance_method" title="Doing::Configuration#resolve_key_path (method)">#resolve_key_path</a></span>
|
|
2090
1762
|
<small>Doing::Configuration</small>
|
|
@@ -2092,7 +1764,7 @@
|
|
|
2092
1764
|
</li>
|
|
2093
1765
|
|
|
2094
1766
|
|
|
2095
|
-
<li class="
|
|
1767
|
+
<li class="even ">
|
|
2096
1768
|
<div class="item">
|
|
2097
1769
|
<span class='object_link'><a href="Doing/Util/Backup.html#restore_last_backup-instance_method" title="Doing::Util::Backup#restore_last_backup (method)">#restore_last_backup</a></span>
|
|
2098
1770
|
<small>Doing::Util::Backup</small>
|
|
@@ -2100,7 +1772,7 @@
|
|
|
2100
1772
|
</li>
|
|
2101
1773
|
|
|
2102
1774
|
|
|
2103
|
-
<li class="
|
|
1775
|
+
<li class="odd ">
|
|
2104
1776
|
<div class="item">
|
|
2105
1777
|
<span class='object_link'><a href="Doing/Logger.html#restore_level-instance_method" title="Doing::Logger#restore_level (method)">#restore_level</a></span>
|
|
2106
1778
|
<small>Doing::Logger</small>
|
|
@@ -2108,7 +1780,7 @@
|
|
|
2108
1780
|
</li>
|
|
2109
1781
|
|
|
2110
1782
|
|
|
2111
|
-
<li class="
|
|
1783
|
+
<li class="even ">
|
|
2112
1784
|
<div class="item">
|
|
2113
1785
|
<span class='object_link'><a href="Doing/Prompt.html#restore_std-class_method" title="Doing::Prompt.restore_std (method)">restore_std</a></span>
|
|
2114
1786
|
<small>Doing::Prompt</small>
|
|
@@ -2116,7 +1788,7 @@
|
|
|
2116
1788
|
</li>
|
|
2117
1789
|
|
|
2118
1790
|
|
|
2119
|
-
<li class="
|
|
1791
|
+
<li class="odd ">
|
|
2120
1792
|
<div class="item">
|
|
2121
1793
|
<span class='object_link'><a href="Doing/Logger.html#results-instance_method" title="Doing::Logger#results (method)">#results</a></span>
|
|
2122
1794
|
<small>Doing::Logger</small>
|
|
@@ -2124,14 +1796,6 @@
|
|
|
2124
1796
|
</li>
|
|
2125
1797
|
|
|
2126
1798
|
|
|
2127
|
-
<li class="odd ">
|
|
2128
|
-
<div class="item">
|
|
2129
|
-
<span class='object_link'><a href="Doing/WWID.html#rotate-instance_method" title="Doing::WWID#rotate (method)">#rotate</a></span>
|
|
2130
|
-
<small>Doing::WWID</small>
|
|
2131
|
-
</div>
|
|
2132
|
-
</li>
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
1799
|
<li class="even ">
|
|
2136
1800
|
<div class="item">
|
|
2137
1801
|
<span class='object_link'><a href="Doing/Util.html#safe_load_file-instance_method" title="Doing::Util#safe_load_file (method)">#safe_load_file</a></span>
|
|
@@ -2141,14 +1805,6 @@
|
|
|
2141
1805
|
|
|
2142
1806
|
|
|
2143
1807
|
<li class="odd ">
|
|
2144
|
-
<div class="item">
|
|
2145
|
-
<span class='object_link'><a href="Doing/Item.html#same_time%3F-instance_method" title="Doing::Item#same_time? (method)">#same_time?</a></span>
|
|
2146
|
-
<small>Doing::Item</small>
|
|
2147
|
-
</div>
|
|
2148
|
-
</li>
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
<li class="even ">
|
|
2152
1808
|
<div class="item">
|
|
2153
1809
|
<span class='object_link'><a href="Doing/Plugins.html#save_template-class_method" title="Doing::Plugins.save_template (method)">save_template</a></span>
|
|
2154
1810
|
<small>Doing::Plugins</small>
|
|
@@ -2156,14 +1812,6 @@
|
|
|
2156
1812
|
</li>
|
|
2157
1813
|
|
|
2158
1814
|
|
|
2159
|
-
<li class="odd ">
|
|
2160
|
-
<div class="item">
|
|
2161
|
-
<span class='object_link'><a href="Doing/Item.html#search-instance_method" title="Doing::Item#search (method)">#search</a></span>
|
|
2162
|
-
<small>Doing::Item</small>
|
|
2163
|
-
</div>
|
|
2164
|
-
</li>
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
1815
|
<li class="even ">
|
|
2168
1816
|
<div class="item">
|
|
2169
1817
|
<span class='object_link'><a href="Doing/Item.html#section-instance_method" title="Doing::Item#section (method)">#section</a></span>
|
|
@@ -2190,16 +1838,16 @@
|
|
|
2190
1838
|
|
|
2191
1839
|
<li class="odd ">
|
|
2192
1840
|
<div class="item">
|
|
2193
|
-
<span class='object_link'><a href="Doing/
|
|
2194
|
-
<small>Doing::
|
|
1841
|
+
<span class='object_link'><a href="Doing/WWID.html#sections-instance_method" title="Doing::WWID#sections (method)">#sections</a></span>
|
|
1842
|
+
<small>Doing::WWID</small>
|
|
2195
1843
|
</div>
|
|
2196
1844
|
</li>
|
|
2197
1845
|
|
|
2198
1846
|
|
|
2199
1847
|
<li class="even ">
|
|
2200
1848
|
<div class="item">
|
|
2201
|
-
<span class='object_link'><a href="Doing/
|
|
2202
|
-
<small>Doing::
|
|
1849
|
+
<span class='object_link'><a href="Doing/Items.html#sections-instance_method" title="Doing::Items#sections (method)">#sections</a></span>
|
|
1850
|
+
<small>Doing::Items</small>
|
|
2203
1851
|
</div>
|
|
2204
1852
|
</li>
|
|
2205
1853
|
|
|
@@ -2237,14 +1885,6 @@
|
|
|
2237
1885
|
|
|
2238
1886
|
|
|
2239
1887
|
<li class="odd ">
|
|
2240
|
-
<div class="item">
|
|
2241
|
-
<span class='object_link'><a href="Doing/Item.html#should_finish%3F-instance_method" title="Doing::Item#should_finish? (method)">#should_finish?</a></span>
|
|
2242
|
-
<small>Doing::Item</small>
|
|
2243
|
-
</div>
|
|
2244
|
-
</li>
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
<li class="even ">
|
|
2248
1888
|
<div class="item">
|
|
2249
1889
|
<span class='object_link'><a href="BooleanTermParser/Query.html#should_terms-instance_method" title="BooleanTermParser::Query#should_terms (method)">#should_terms</a></span>
|
|
2250
1890
|
<small>BooleanTermParser::Query</small>
|
|
@@ -2252,14 +1892,6 @@
|
|
|
2252
1892
|
</li>
|
|
2253
1893
|
|
|
2254
1894
|
|
|
2255
|
-
<li class="odd ">
|
|
2256
|
-
<div class="item">
|
|
2257
|
-
<span class='object_link'><a href="Doing/Item.html#should_time%3F-instance_method" title="Doing::Item#should_time? (method)">#should_time?</a></span>
|
|
2258
|
-
<small>Doing::Item</small>
|
|
2259
|
-
</div>
|
|
2260
|
-
</li>
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
1895
|
<li class="even ">
|
|
2264
1896
|
<div class="item">
|
|
2265
1897
|
<span class='object_link'><a href="GLI/Commands/Help.html#show_help-instance_method" title="GLI::Commands::Help#show_help (method)">#show_help</a></span>
|
|
@@ -2293,14 +1925,6 @@
|
|
|
2293
1925
|
|
|
2294
1926
|
|
|
2295
1927
|
<li class="even ">
|
|
2296
|
-
<div class="item">
|
|
2297
|
-
<span class='object_link'><a href="Doing/WWID.html#stop_start-instance_method" title="Doing::WWID#stop_start (method)">#stop_start</a></span>
|
|
2298
|
-
<small>Doing::WWID</small>
|
|
2299
|
-
</div>
|
|
2300
|
-
</li>
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
<li class="odd ">
|
|
2304
1928
|
<div class="item">
|
|
2305
1929
|
<span class='object_link'><a href="Hash.html#stringify_keys-instance_method" title="Hash#stringify_keys (method)">#stringify_keys</a></span>
|
|
2306
1930
|
<small>Hash</small>
|
|
@@ -2308,7 +1932,7 @@
|
|
|
2308
1932
|
</li>
|
|
2309
1933
|
|
|
2310
1934
|
|
|
2311
|
-
<li class="
|
|
1935
|
+
<li class="odd ">
|
|
2312
1936
|
<div class="item">
|
|
2313
1937
|
<span class='object_link'><a href="Doing/Note.html#strip_lines-instance_method" title="Doing::Note#strip_lines (method)">#strip_lines</a></span>
|
|
2314
1938
|
<small>Doing::Note</small>
|
|
@@ -2316,7 +1940,7 @@
|
|
|
2316
1940
|
</li>
|
|
2317
1941
|
|
|
2318
1942
|
|
|
2319
|
-
<li class="
|
|
1943
|
+
<li class="even ">
|
|
2320
1944
|
<div class="item">
|
|
2321
1945
|
<span class='object_link'><a href="Doing/Note.html#strip_lines!-instance_method" title="Doing::Note#strip_lines! (method)">#strip_lines!</a></span>
|
|
2322
1946
|
<small>Doing::Note</small>
|
|
@@ -2324,7 +1948,7 @@
|
|
|
2324
1948
|
</li>
|
|
2325
1949
|
|
|
2326
1950
|
|
|
2327
|
-
<li class="
|
|
1951
|
+
<li class="odd ">
|
|
2328
1952
|
<div class="item">
|
|
2329
1953
|
<span class='object_link'><a href="Doing/Color.html#support%3F-instance_method" title="Doing::Color#support? (method)">#support?</a></span>
|
|
2330
1954
|
<small>Doing::Color</small>
|
|
@@ -2332,7 +1956,7 @@
|
|
|
2332
1956
|
</li>
|
|
2333
1957
|
|
|
2334
1958
|
|
|
2335
|
-
<li class="
|
|
1959
|
+
<li class="even ">
|
|
2336
1960
|
<div class="item">
|
|
2337
1961
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#switch-instance_method" title="GLI::Commands::MarkdownDocumentListener#switch (method)">#switch</a></span>
|
|
2338
1962
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -2340,7 +1964,7 @@
|
|
|
2340
1964
|
</li>
|
|
2341
1965
|
|
|
2342
1966
|
|
|
2343
|
-
<li class="
|
|
1967
|
+
<li class="odd ">
|
|
2344
1968
|
<div class="item">
|
|
2345
1969
|
<span class='object_link'><a href="BooleanTermParser/Operator.html#symbol-class_method" title="BooleanTermParser::Operator.symbol (method)">symbol</a></span>
|
|
2346
1970
|
<small>BooleanTermParser::Operator</small>
|
|
@@ -2348,7 +1972,7 @@
|
|
|
2348
1972
|
</li>
|
|
2349
1973
|
|
|
2350
1974
|
|
|
2351
|
-
<li class="
|
|
1975
|
+
<li class="even ">
|
|
2352
1976
|
<div class="item">
|
|
2353
1977
|
<span class='object_link'><a href="PhraseParser/Operator.html#symbol-class_method" title="PhraseParser::Operator.symbol (method)">symbol</a></span>
|
|
2354
1978
|
<small>PhraseParser::Operator</small>
|
|
@@ -2356,7 +1980,7 @@
|
|
|
2356
1980
|
</li>
|
|
2357
1981
|
|
|
2358
1982
|
|
|
2359
|
-
<li class="
|
|
1983
|
+
<li class="odd ">
|
|
2360
1984
|
<div class="item">
|
|
2361
1985
|
<span class='object_link'><a href="Hash.html#symbolize_keys-instance_method" title="Hash#symbolize_keys (method)">#symbolize_keys</a></span>
|
|
2362
1986
|
<small>Hash</small>
|
|
@@ -2364,74 +1988,18 @@
|
|
|
2364
1988
|
</li>
|
|
2365
1989
|
|
|
2366
1990
|
|
|
2367
|
-
<li class="odd ">
|
|
2368
|
-
<div class="item">
|
|
2369
|
-
<span class='object_link'><a href="Doing/Item.html#tag-instance_method" title="Doing::Item#tag (method)">#tag</a></span>
|
|
2370
|
-
<small>Doing::Item</small>
|
|
2371
|
-
</div>
|
|
2372
|
-
</li>
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
<li class="even ">
|
|
2376
|
-
<div class="item">
|
|
2377
|
-
<span class='object_link'><a href="Doing/Item.html#tag_array-instance_method" title="Doing::Item#tag_array (method)">#tag_array</a></span>
|
|
2378
|
-
<small>Doing::Item</small>
|
|
2379
|
-
</div>
|
|
2380
|
-
</li>
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
<li class="odd ">
|
|
2384
|
-
<div class="item">
|
|
2385
|
-
<span class='object_link'><a href="Doing/WWID.html#tag_groups-instance_method" title="Doing::WWID#tag_groups (method)">#tag_groups</a></span>
|
|
2386
|
-
<small>Doing::WWID</small>
|
|
2387
|
-
</div>
|
|
2388
|
-
</li>
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
<li class="even ">
|
|
2392
|
-
<div class="item">
|
|
2393
|
-
<span class='object_link'><a href="Doing/WWID.html#tag_last-instance_method" title="Doing::WWID#tag_last (method)">#tag_last</a></span>
|
|
2394
|
-
<small>Doing::WWID</small>
|
|
2395
|
-
</div>
|
|
2396
|
-
</li>
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
<li class="odd ">
|
|
2400
|
-
<div class="item">
|
|
2401
|
-
<span class='object_link'><a href="Doing/WWID.html#tag_times-instance_method" title="Doing::WWID#tag_times (method)">#tag_times</a></span>
|
|
2402
|
-
<small>Doing::WWID</small>
|
|
2403
|
-
</div>
|
|
2404
|
-
</li>
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
<li class="even ">
|
|
2408
|
-
<div class="item">
|
|
2409
|
-
<span class='object_link'><a href="Doing/Item.html#tag_values%3F-instance_method" title="Doing::Item#tag_values? (method)">#tag_values?</a></span>
|
|
2410
|
-
<small>Doing::Item</small>
|
|
2411
|
-
</div>
|
|
2412
|
-
</li>
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
<li class="odd ">
|
|
2416
|
-
<div class="item">
|
|
2417
|
-
<span class='object_link'><a href="Doing/Item.html#tags-instance_method" title="Doing::Item#tags (method)">#tags</a></span>
|
|
2418
|
-
<small>Doing::Item</small>
|
|
2419
|
-
</div>
|
|
2420
|
-
</li>
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
1991
|
<li class="even ">
|
|
2424
1992
|
<div class="item">
|
|
2425
|
-
<span class='object_link'><a href="Doing/
|
|
2426
|
-
<small>Doing::
|
|
1993
|
+
<span class='object_link'><a href="Doing/Logger.html#temp_level-instance_method" title="Doing::Logger#temp_level (method)">#temp_level</a></span>
|
|
1994
|
+
<small>Doing::Logger</small>
|
|
2427
1995
|
</div>
|
|
2428
1996
|
</li>
|
|
2429
1997
|
|
|
2430
1998
|
|
|
2431
1999
|
<li class="odd ">
|
|
2432
2000
|
<div class="item">
|
|
2433
|
-
<span class='object_link'><a href="Doing/
|
|
2434
|
-
<small>Doing::
|
|
2001
|
+
<span class='object_link'><a href="Doing/Color.html#template-class_method" title="Doing::Color.template (method)">template</a></span>
|
|
2002
|
+
<small>Doing::Color</small>
|
|
2435
2003
|
</div>
|
|
2436
2004
|
</li>
|
|
2437
2005
|
|
|
@@ -2454,16 +2022,16 @@
|
|
|
2454
2022
|
|
|
2455
2023
|
<li class="even ">
|
|
2456
2024
|
<div class="item">
|
|
2457
|
-
<span class='object_link'><a href="
|
|
2458
|
-
<small>
|
|
2025
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#term-instance_method" title="BooleanTermParser::Clause#term (method)">#term</a></span>
|
|
2026
|
+
<small>BooleanTermParser::Clause</small>
|
|
2459
2027
|
</div>
|
|
2460
2028
|
</li>
|
|
2461
2029
|
|
|
2462
2030
|
|
|
2463
2031
|
<li class="odd ">
|
|
2464
2032
|
<div class="item">
|
|
2465
|
-
<span class='object_link'><a href="
|
|
2466
|
-
<small>
|
|
2033
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#term-instance_method" title="PhraseParser::TermClause#term (method)">#term</a></span>
|
|
2034
|
+
<small>PhraseParser::TermClause</small>
|
|
2467
2035
|
</div>
|
|
2468
2036
|
</li>
|
|
2469
2037
|
|
|
@@ -2494,16 +2062,16 @@
|
|
|
2494
2062
|
|
|
2495
2063
|
<li class="odd ">
|
|
2496
2064
|
<div class="item">
|
|
2497
|
-
<span class='object_link'><a href="
|
|
2498
|
-
<small>
|
|
2065
|
+
<span class='object_link'><a href="PhraseParser/Query.html#to_elasticsearch-instance_method" title="PhraseParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
|
2066
|
+
<small>PhraseParser::Query</small>
|
|
2499
2067
|
</div>
|
|
2500
2068
|
</li>
|
|
2501
2069
|
|
|
2502
2070
|
|
|
2503
2071
|
<li class="even ">
|
|
2504
2072
|
<div class="item">
|
|
2505
|
-
<span class='object_link'><a href="
|
|
2506
|
-
<small>
|
|
2073
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#to_elasticsearch-instance_method" title="BooleanTermParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
|
2074
|
+
<small>BooleanTermParser::Query</small>
|
|
2507
2075
|
</div>
|
|
2508
2076
|
</li>
|
|
2509
2077
|
|
|
@@ -2526,8 +2094,8 @@
|
|
|
2526
2094
|
|
|
2527
2095
|
<li class="odd ">
|
|
2528
2096
|
<div class="item">
|
|
2529
|
-
<span class='object_link'><a href="Doing/
|
|
2530
|
-
<small>Doing::
|
|
2097
|
+
<span class='object_link'><a href="Doing/Section.html#to_s-instance_method" title="Doing::Section#to_s (method)">#to_s</a></span>
|
|
2098
|
+
<small>Doing::Section</small>
|
|
2531
2099
|
</div>
|
|
2532
2100
|
</li>
|
|
2533
2101
|
|
|
@@ -2550,21 +2118,13 @@
|
|
|
2550
2118
|
|
|
2551
2119
|
<li class="even ">
|
|
2552
2120
|
<div class="item">
|
|
2553
|
-
<span class='object_link'><a href="Doing/
|
|
2554
|
-
<small>Doing::
|
|
2121
|
+
<span class='object_link'><a href="Doing/Note.html#to_s-instance_method" title="Doing::Note#to_s (method)">#to_s</a></span>
|
|
2122
|
+
<small>Doing::Note</small>
|
|
2555
2123
|
</div>
|
|
2556
2124
|
</li>
|
|
2557
2125
|
|
|
2558
2126
|
|
|
2559
2127
|
<li class="odd ">
|
|
2560
|
-
<div class="item">
|
|
2561
|
-
<span class='object_link'><a href="Doing/WWID.html#today-instance_method" title="Doing::WWID#today (method)">#today</a></span>
|
|
2562
|
-
<small>Doing::WWID</small>
|
|
2563
|
-
</div>
|
|
2564
|
-
</li>
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
<li class="even ">
|
|
2568
2128
|
<div class="item">
|
|
2569
2129
|
<span class='object_link'><a href="Doing/Hooks.html#trigger-class_method" title="Doing::Hooks.trigger (method)">trigger</a></span>
|
|
2570
2130
|
<small>Doing::Hooks</small>
|
|
@@ -2572,7 +2132,7 @@
|
|
|
2572
2132
|
</li>
|
|
2573
2133
|
|
|
2574
2134
|
|
|
2575
|
-
<li class="
|
|
2135
|
+
<li class="even ">
|
|
2576
2136
|
<div class="item">
|
|
2577
2137
|
<span class='object_link'><a href="Doing/Color.html#uncolor-instance_method" title="Doing::Color#uncolor (method)">#uncolor</a></span>
|
|
2578
2138
|
<small>Doing::Color</small>
|
|
@@ -2580,14 +2140,6 @@
|
|
|
2580
2140
|
</li>
|
|
2581
2141
|
|
|
2582
2142
|
|
|
2583
|
-
<li class="even ">
|
|
2584
|
-
<div class="item">
|
|
2585
|
-
<span class='object_link'><a href="Doing/Item.html#unfinished%3F-instance_method" title="Doing::Item#unfinished? (method)">#unfinished?</a></span>
|
|
2586
|
-
<small>Doing::Item</small>
|
|
2587
|
-
</div>
|
|
2588
|
-
</li>
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
2143
|
<li class="odd ">
|
|
2592
2144
|
<div class="item">
|
|
2593
2145
|
<span class='object_link'><a href="Doing/Prompt.html#uninstall_fzf-class_method" title="Doing::Prompt.uninstall_fzf (method)">uninstall_fzf</a></span>
|
|
@@ -2614,16 +2166,16 @@
|
|
|
2614
2166
|
|
|
2615
2167
|
<li class="even ">
|
|
2616
2168
|
<div class="item">
|
|
2617
|
-
<span class='object_link'><a href="Doing/
|
|
2618
|
-
<small>Doing::
|
|
2169
|
+
<span class='object_link'><a href="Doing/Plugins.html#user_home-class_method" title="Doing::Plugins.user_home (method)">user_home</a></span>
|
|
2170
|
+
<small>Doing::Plugins</small>
|
|
2619
2171
|
</div>
|
|
2620
2172
|
</li>
|
|
2621
2173
|
|
|
2622
2174
|
|
|
2623
2175
|
<li class="odd ">
|
|
2624
2176
|
<div class="item">
|
|
2625
|
-
<span class='object_link'><a href="Doing/
|
|
2626
|
-
<small>Doing::
|
|
2177
|
+
<span class='object_link'><a href="Doing/Util.html#user_home-instance_method" title="Doing::Util#user_home (method)">#user_home</a></span>
|
|
2178
|
+
<small>Doing::Util</small>
|
|
2627
2179
|
</div>
|
|
2628
2180
|
</li>
|
|
2629
2181
|
|
|
@@ -2661,14 +2213,6 @@
|
|
|
2661
2213
|
|
|
2662
2214
|
|
|
2663
2215
|
<li class="even ">
|
|
2664
|
-
<div class="item">
|
|
2665
|
-
<span class='object_link'><a href="Doing/WWID.html#verify_duration-instance_method" title="Doing::WWID#verify_duration (method)">#verify_duration</a></span>
|
|
2666
|
-
<small>Doing::WWID</small>
|
|
2667
|
-
</div>
|
|
2668
|
-
</li>
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
<li class="odd ">
|
|
2672
2216
|
<div class="item">
|
|
2673
2217
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#version-instance_method" title="GLI::Commands::MarkdownDocumentListener#version (method)">#version</a></span>
|
|
2674
2218
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
|
@@ -2676,7 +2220,7 @@
|
|
|
2676
2220
|
</li>
|
|
2677
2221
|
|
|
2678
2222
|
|
|
2679
|
-
<li class="
|
|
2223
|
+
<li class="odd ">
|
|
2680
2224
|
<div class="item">
|
|
2681
2225
|
<span class='object_link'><a href="Doing/WWID.html#views-instance_method" title="Doing::WWID#views (method)">#views</a></span>
|
|
2682
2226
|
<small>Doing::WWID</small>
|
|
@@ -2684,7 +2228,7 @@
|
|
|
2684
2228
|
</li>
|
|
2685
2229
|
|
|
2686
2230
|
|
|
2687
|
-
<li class="
|
|
2231
|
+
<li class="even ">
|
|
2688
2232
|
<div class="item">
|
|
2689
2233
|
<span class='object_link'><a href="Doing/Logger.html#warn-instance_method" title="Doing::Logger#warn (method)">#warn</a></span>
|
|
2690
2234
|
<small>Doing::Logger</small>
|
|
@@ -2692,7 +2236,7 @@
|
|
|
2692
2236
|
</li>
|
|
2693
2237
|
|
|
2694
2238
|
|
|
2695
|
-
<li class="
|
|
2239
|
+
<li class="odd ">
|
|
2696
2240
|
<div class="item">
|
|
2697
2241
|
<span class='object_link'><a href="Doing/Prompt.html#which_fzf-class_method" title="Doing::Prompt.which_fzf (method)">which_fzf</a></span>
|
|
2698
2242
|
<small>Doing::Prompt</small>
|
|
@@ -2700,14 +2244,6 @@
|
|
|
2700
2244
|
</li>
|
|
2701
2245
|
|
|
2702
2246
|
|
|
2703
|
-
<li class="odd ">
|
|
2704
|
-
<div class="item">
|
|
2705
|
-
<span class='object_link'><a href="Doing/WWID.html#write-instance_method" title="Doing::WWID#write (method)">#write</a></span>
|
|
2706
|
-
<small>Doing::WWID</small>
|
|
2707
|
-
</div>
|
|
2708
|
-
</li>
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
2247
|
<li class="even ">
|
|
2712
2248
|
<div class="item">
|
|
2713
2249
|
<span class='object_link'><a href="Doing/Logger.html#write-instance_method" title="Doing::Logger#write (method)">#write</a></span>
|
|
@@ -2733,14 +2269,6 @@
|
|
|
2733
2269
|
|
|
2734
2270
|
|
|
2735
2271
|
<li class="odd ">
|
|
2736
|
-
<div class="item">
|
|
2737
|
-
<span class='object_link'><a href="Doing/WWID.html#yesterday-instance_method" title="Doing::WWID#yesterday (method)">#yesterday</a></span>
|
|
2738
|
-
<small>Doing::WWID</small>
|
|
2739
|
-
</div>
|
|
2740
|
-
</li>
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
<li class="even ">
|
|
2744
2272
|
<div class="item">
|
|
2745
2273
|
<span class='object_link'><a href="Doing/Prompt.html#yn-class_method" title="Doing::Prompt.yn (method)">yn</a></span>
|
|
2746
2274
|
<small>Doing::Prompt</small>
|