doing 2.1.2pre → 2.1.6pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +19 -15
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardopts +1 -1
- data/CHANGELOG.md +62 -14
- data/Gemfile.lock +25 -1
- data/README.md +5 -1
- data/Rakefile +2 -0
- data/bin/doing +429 -142
- data/docs/_config.yml +1 -0
- data/{doc → docs/doc}/Array.html +63 -1
- data/docs/doc/BooleanTermParser/Clause.html +293 -0
- data/docs/doc/BooleanTermParser/Operator.html +172 -0
- data/docs/doc/BooleanTermParser/Query.html +417 -0
- data/docs/doc/BooleanTermParser/QueryParser.html +135 -0
- data/docs/doc/BooleanTermParser/QueryTransformer.html +124 -0
- data/docs/doc/BooleanTermParser.html +115 -0
- data/docs/doc/Doing/CLIFormat.html +131 -0
- data/{doc → docs/doc}/Doing/Color.html +2 -2
- data/{doc → docs/doc}/Doing/Completion.html +1 -1
- data/{doc → docs/doc}/Doing/Configuration.html +163 -69
- data/{doc → docs/doc}/Doing/Content.html +0 -0
- data/{doc → docs/doc}/Doing/Errors/DoingNoTraceError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/DoingRuntimeError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/DoingStandardError.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/EmptyInput.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/NoResults.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/PluginException.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/UserCancelled.html +1 -1
- data/{doc → docs/doc}/Doing/Errors/WrongCommand.html +1 -1
- data/{doc → docs/doc}/Doing/Errors.html +1 -1
- data/{doc → docs/doc}/Doing/Hooks.html +1 -1
- data/{doc → docs/doc}/Doing/Item.html +135 -89
- data/{doc → docs/doc}/Doing/Items.html +36 -2
- data/{doc → docs/doc}/Doing/LogAdapter.html +70 -1
- data/{doc → docs/doc}/Doing/Note.html +5 -134
- data/{doc → docs/doc}/Doing/Pager.html +1 -1
- data/{doc → docs/doc}/Doing/Plugins.html +431 -35
- data/{doc → docs/doc}/Doing/Prompt.html +70 -18
- data/{doc → docs/doc}/Doing/Section.html +1 -1
- data/docs/doc/Doing/TemplateString.html +713 -0
- data/docs/doc/Doing/Util/Backup.html +686 -0
- data/{doc → docs/doc}/Doing/Util.html +16 -4
- data/{doc → docs/doc}/Doing/WWID.html +133 -73
- data/{doc → docs/doc}/Doing/WWIDFile.html +0 -0
- data/{doc → docs/doc}/Doing.html +4 -4
- data/{doc → docs/doc}/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/{doc → docs/doc}/GLI/Commands.html +1 -1
- data/{doc → docs/doc}/GLI.html +1 -1
- data/{doc → docs/doc}/Hash.html +1 -1
- data/docs/doc/PhraseParser/Operator.html +172 -0
- data/docs/doc/PhraseParser/PhraseClause.html +303 -0
- data/docs/doc/PhraseParser/Query.html +495 -0
- data/docs/doc/PhraseParser/QueryParser.html +136 -0
- data/docs/doc/PhraseParser/QueryTransformer.html +124 -0
- data/docs/doc/PhraseParser/TermClause.html +293 -0
- data/docs/doc/PhraseParser.html +115 -0
- data/{doc → docs/doc}/Status.html +1 -1
- data/{doc → docs/doc}/String.html +319 -13
- data/{doc → docs/doc}/Symbol.html +35 -1
- data/{doc → docs/doc}/Time.html +70 -2
- data/{doc → docs/doc}/_index.html +132 -4
- data/docs/doc/class_list.html +51 -0
- data/{doc → docs/doc}/css/common.css +0 -0
- data/{doc → docs/doc}/css/full_list.css +0 -0
- data/{doc → docs/doc}/css/style.css +0 -0
- data/{doc → docs/doc}/file.README.html +6 -2
- data/{doc → docs/doc}/file_list.html +0 -0
- data/{doc → docs/doc}/frames.html +0 -0
- data/{doc → docs/doc}/index.html +6 -2
- data/{doc → docs/doc}/js/app.js +0 -0
- data/{doc → docs/doc}/js/full_list.js +0 -0
- data/{doc → docs/doc}/js/jquery.js +0 -0
- data/{doc → docs/doc}/method_list.html +684 -196
- data/{doc → docs/doc}/top-level-namespace.html +2 -2
- data/docs/index.md +60 -0
- data/doing.gemspec +3 -0
- data/doing.rdoc +222 -74
- data/example_plugin.rb +3 -1
- data/lib/completion/_doing.zsh +53 -41
- data/lib/completion/doing.bash +17 -6
- data/lib/completion/doing.fish +321 -2
- data/lib/doing/array.rb +9 -0
- data/lib/doing/boolean_term_parser.rb +86 -0
- data/lib/doing/completion/fish_completion.rb +46 -3
- data/lib/doing/completion/zsh_completion.rb +1 -1
- data/lib/doing/configuration.rb +48 -21
- data/lib/doing/item.rb +105 -10
- data/lib/doing/items.rb +6 -0
- data/lib/doing/log_adapter.rb +28 -0
- data/lib/doing/note.rb +31 -30
- data/lib/doing/phrase_parser.rb +124 -0
- data/lib/doing/plugin_manager.rb +84 -21
- data/lib/doing/plugins/export/dayone_export.rb +209 -0
- data/lib/doing/plugins/export/html_export.rb +2 -2
- data/lib/doing/plugins/export/json_export.rb +1 -0
- data/lib/doing/plugins/export/markdown_export.rb +1 -1
- data/lib/doing/plugins/export/template_export.rb +94 -86
- data/lib/doing/prompt.rb +26 -15
- data/lib/doing/string.rb +114 -29
- data/lib/doing/string_chronify.rb +5 -1
- data/lib/doing/symbol.rb +4 -0
- data/lib/doing/template_string.rb +197 -0
- data/lib/doing/time.rb +32 -0
- data/lib/doing/util.rb +6 -7
- data/lib/doing/util_backup.rb +287 -0
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +105 -41
- data/lib/doing.rb +9 -0
- data/lib/examples/plugins/say_export.rb +1 -1
- data/lib/examples/plugins/wiki_export/wiki_export.rb +3 -3
- data/lib/templates/doing-dayone-entry.erb +6 -0
- data/lib/templates/doing-dayone.erb +5 -0
- metadata +136 -51
- data/doc/class_list.html +0 -51
@@ -69,6 +69,14 @@
|
|
69
69
|
|
70
70
|
|
71
71
|
<li class="even ">
|
72
|
+
<div class="item">
|
73
|
+
<span class='object_link'><a href="String.html#add_at-instance_method" title="String#add_at (method)">#add_at</a></span>
|
74
|
+
<small>String</small>
|
75
|
+
</div>
|
76
|
+
</li>
|
77
|
+
|
78
|
+
|
79
|
+
<li class="odd ">
|
72
80
|
<div class="item">
|
73
81
|
<span class='object_link'><a href="Doing/WWID.html#add_item-instance_method" title="Doing::WWID#add_item (method)">#add_item</a></span>
|
74
82
|
<small>Doing::WWID</small>
|
@@ -76,7 +84,7 @@
|
|
76
84
|
</li>
|
77
85
|
|
78
86
|
|
79
|
-
<li class="
|
87
|
+
<li class="even ">
|
80
88
|
<div class="item">
|
81
89
|
<span class='object_link'><a href="Doing/Items.html#add_section-instance_method" title="Doing::Items#add_section (method)">#add_section</a></span>
|
82
90
|
<small>Doing::Items</small>
|
@@ -84,7 +92,7 @@
|
|
84
92
|
</li>
|
85
93
|
|
86
94
|
|
87
|
-
<li class="
|
95
|
+
<li class="odd ">
|
88
96
|
<div class="item">
|
89
97
|
<span class='object_link'><a href="String.html#add_tags-instance_method" title="String#add_tags (method)">#add_tags</a></span>
|
90
98
|
<small>String</small>
|
@@ -92,7 +100,7 @@
|
|
92
100
|
</li>
|
93
101
|
|
94
102
|
|
95
|
-
<li class="
|
103
|
+
<li class="even ">
|
96
104
|
<div class="item">
|
97
105
|
<span class='object_link'><a href="String.html#add_tags!-instance_method" title="String#add_tags! (method)">#add_tags!</a></span>
|
98
106
|
<small>String</small>
|
@@ -100,7 +108,7 @@
|
|
100
108
|
</li>
|
101
109
|
|
102
110
|
|
103
|
-
<li class="
|
111
|
+
<li class="odd ">
|
104
112
|
<div class="item">
|
105
113
|
<span class='object_link'><a href="Doing/Configuration.html#additional_configs-instance_method" title="Doing::Configuration#additional_configs (method)">#additional_configs</a></span>
|
106
114
|
<small>Doing::Configuration</small>
|
@@ -108,7 +116,7 @@
|
|
108
116
|
</li>
|
109
117
|
|
110
118
|
|
111
|
-
<li class="
|
119
|
+
<li class="even ">
|
112
120
|
<div class="item">
|
113
121
|
<span class='object_link'><a href="Doing/WWID.html#additional_configs-instance_method" title="Doing::WWID#additional_configs (method)">#additional_configs</a></span>
|
114
122
|
<small>Doing::WWID</small>
|
@@ -116,7 +124,7 @@
|
|
116
124
|
</li>
|
117
125
|
|
118
126
|
|
119
|
-
<li class="
|
127
|
+
<li class="odd ">
|
120
128
|
<div class="item">
|
121
129
|
<span class='object_link'><a href="Doing/LogAdapter.html#adjust_verbosity-instance_method" title="Doing::LogAdapter#adjust_verbosity (method)">#adjust_verbosity</a></span>
|
122
130
|
<small>Doing::LogAdapter</small>
|
@@ -124,7 +132,7 @@
|
|
124
132
|
</li>
|
125
133
|
|
126
134
|
|
127
|
-
<li class="
|
135
|
+
<li class="even ">
|
128
136
|
<div class="item">
|
129
137
|
<span class='object_link'><a href="Doing/WWID.html#all_tags-instance_method" title="Doing::WWID#all_tags (method)">#all_tags</a></span>
|
130
138
|
<small>Doing::WWID</small>
|
@@ -132,23 +140,23 @@
|
|
132
140
|
</li>
|
133
141
|
|
134
142
|
|
135
|
-
<li class="
|
143
|
+
<li class="odd ">
|
136
144
|
<div class="item">
|
137
|
-
<span class='object_link'><a href="Doing/
|
138
|
-
<small>Doing::
|
145
|
+
<span class='object_link'><a href="Doing/Items.html#all_tags-instance_method" title="Doing::Items#all_tags (method)">#all_tags</a></span>
|
146
|
+
<small>Doing::Items</small>
|
139
147
|
</div>
|
140
148
|
</li>
|
141
149
|
|
142
150
|
|
143
|
-
<li class="
|
151
|
+
<li class="even ">
|
144
152
|
<div class="item">
|
145
|
-
<span class='object_link'><a href="Doing/
|
146
|
-
<small>Doing::
|
153
|
+
<span class='object_link'><a href="Doing/TemplateString.html#apply_colors-instance_method" title="Doing::TemplateString#apply_colors (method)">#apply_colors</a></span>
|
154
|
+
<small>Doing::TemplateString</small>
|
147
155
|
</div>
|
148
156
|
</li>
|
149
157
|
|
150
158
|
|
151
|
-
<li class="
|
159
|
+
<li class="odd ">
|
152
160
|
<div class="item">
|
153
161
|
<span class='object_link'><a href="Doing/WWID.html#archive-instance_method" title="Doing::WWID#archive (method)">#archive</a></span>
|
154
162
|
<small>Doing::WWID</small>
|
@@ -156,7 +164,7 @@
|
|
156
164
|
</li>
|
157
165
|
|
158
166
|
|
159
|
-
<li class="
|
167
|
+
<li class="even ">
|
160
168
|
<div class="item">
|
161
169
|
<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
170
|
<small>Doing::Util</small>
|
@@ -164,7 +172,7 @@
|
|
164
172
|
</li>
|
165
173
|
|
166
174
|
|
167
|
-
<li class="
|
175
|
+
<li class="odd ">
|
168
176
|
<div class="item">
|
169
177
|
<span class='object_link'><a href="Doing/Color.html#attributes-class_method" title="Doing::Color.attributes (method)">attributes</a></span>
|
170
178
|
<small>Doing::Color</small>
|
@@ -172,7 +180,7 @@
|
|
172
180
|
</li>
|
173
181
|
|
174
182
|
|
175
|
-
<li class="
|
183
|
+
<li class="even ">
|
176
184
|
<div class="item">
|
177
185
|
<span class='object_link'><a href="Doing/WWID.html#auto_tag-instance_method" title="Doing::WWID#auto_tag (method)">#auto_tag</a></span>
|
178
186
|
<small>Doing::WWID</small>
|
@@ -180,7 +188,7 @@
|
|
180
188
|
</li>
|
181
189
|
|
182
190
|
|
183
|
-
<li class="
|
191
|
+
<li class="odd ">
|
184
192
|
<div class="item">
|
185
193
|
<span class='object_link'><a href="Doing/WWID.html#autotag-instance_method" title="Doing::WWID#autotag (method)">#autotag</a></span>
|
186
194
|
<small>Doing::WWID</small>
|
@@ -188,7 +196,7 @@
|
|
188
196
|
</li>
|
189
197
|
|
190
198
|
|
191
|
-
<li class="
|
199
|
+
<li class="even ">
|
192
200
|
<div class="item">
|
193
201
|
<span class='object_link'><a href="Doing/Plugins.html#available_plugins-class_method" title="Doing::Plugins.available_plugins (method)">available_plugins</a></span>
|
194
202
|
<small>Doing::Plugins</small>
|
@@ -196,7 +204,7 @@
|
|
196
204
|
</li>
|
197
205
|
|
198
206
|
|
199
|
-
<li class="
|
207
|
+
<li class="odd ">
|
200
208
|
<div class="item">
|
201
209
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#beginning-instance_method" title="GLI::Commands::MarkdownDocumentListener#beginning (method)">#beginning</a></span>
|
202
210
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -204,6 +212,14 @@
|
|
204
212
|
</li>
|
205
213
|
|
206
214
|
|
215
|
+
<li class="even ">
|
216
|
+
<div class="item">
|
217
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#benchmark-instance_method" title="Doing::LogAdapter#benchmark (method)">#benchmark</a></span>
|
218
|
+
<small>Doing::LogAdapter</small>
|
219
|
+
</div>
|
220
|
+
</li>
|
221
|
+
|
222
|
+
|
207
223
|
<li class="odd ">
|
208
224
|
<div class="item">
|
209
225
|
<span class='object_link'><a href="String.html#cap_first-instance_method" title="String#cap_first (method)">#cap_first</a></span>
|
@@ -244,6 +260,22 @@
|
|
244
260
|
</li>
|
245
261
|
|
246
262
|
|
263
|
+
<li class="even ">
|
264
|
+
<div class="item">
|
265
|
+
<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>
|
266
|
+
<small>Doing::WWID</small>
|
267
|
+
</div>
|
268
|
+
</li>
|
269
|
+
|
270
|
+
|
271
|
+
<li class="odd ">
|
272
|
+
<div class="item">
|
273
|
+
<span class='object_link'><a href="Doing/WWID.html#choose_tag-instance_method" title="Doing::WWID#choose_tag (method)">#choose_tag</a></span>
|
274
|
+
<small>Doing::WWID</small>
|
275
|
+
</div>
|
276
|
+
</li>
|
277
|
+
|
278
|
+
|
247
279
|
<li class="even ">
|
248
280
|
<div class="item">
|
249
281
|
<span class='object_link'><a href="Doing/WWID.html#choose_view-instance_method" title="Doing::WWID#choose_view (method)">#choose_view</a></span>
|
@@ -269,6 +301,14 @@
|
|
269
301
|
|
270
302
|
|
271
303
|
<li class="odd ">
|
304
|
+
<div class="item">
|
305
|
+
<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>
|
306
|
+
<small>PhraseParser::Query</small>
|
307
|
+
</div>
|
308
|
+
</li>
|
309
|
+
|
310
|
+
|
311
|
+
<li class="even ">
|
272
312
|
<div class="item">
|
273
313
|
<span class='object_link'><a href="String.html#clean_unlinked_urls-instance_method" title="String#clean_unlinked_urls (method)">#clean_unlinked_urls</a></span>
|
274
314
|
<small>String</small>
|
@@ -276,7 +316,7 @@
|
|
276
316
|
</li>
|
277
317
|
|
278
318
|
|
279
|
-
<li class="
|
319
|
+
<li class="odd ">
|
280
320
|
<div class="item">
|
281
321
|
<span class='object_link'><a href="Status.html#clear-instance_method" title="Status#clear (method)">#clear</a></span>
|
282
322
|
<small>Status</small>
|
@@ -284,7 +324,23 @@
|
|
284
324
|
</li>
|
285
325
|
|
286
326
|
|
327
|
+
<li class="even ">
|
328
|
+
<div class="item">
|
329
|
+
<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>
|
330
|
+
<small>Doing::Util::Backup</small>
|
331
|
+
</div>
|
332
|
+
</li>
|
333
|
+
|
334
|
+
|
287
335
|
<li class="odd ">
|
336
|
+
<div class="item">
|
337
|
+
<span class='object_link'><a href="Doing/TemplateString.html#colored-instance_method" title="Doing::TemplateString#colored (method)">#colored</a></span>
|
338
|
+
<small>Doing::TemplateString</small>
|
339
|
+
</div>
|
340
|
+
</li>
|
341
|
+
|
342
|
+
|
343
|
+
<li class="even ">
|
288
344
|
<div class="item">
|
289
345
|
<span class='object_link'><a href="Doing/Color.html#coloring-class_method" title="Doing::Color.coloring (method)">coloring</a></span>
|
290
346
|
<small>Doing::Color</small>
|
@@ -292,7 +348,7 @@
|
|
292
348
|
</li>
|
293
349
|
|
294
350
|
|
295
|
-
<li class="
|
351
|
+
<li class="odd ">
|
296
352
|
<div class="item">
|
297
353
|
<span class='object_link'><a href="Doing/Color.html#coloring%3F-class_method" title="Doing::Color.coloring? (method)">coloring?</a></span>
|
298
354
|
<small>Doing::Color</small>
|
@@ -300,6 +356,14 @@
|
|
300
356
|
</li>
|
301
357
|
|
302
358
|
|
359
|
+
<li class="even ">
|
360
|
+
<div class="item">
|
361
|
+
<span class='object_link'><a href="Doing/TemplateString.html#colors%3F-instance_method" title="Doing::TemplateString#colors? (method)">#colors?</a></span>
|
362
|
+
<small>Doing::TemplateString</small>
|
363
|
+
</div>
|
364
|
+
</li>
|
365
|
+
|
366
|
+
|
303
367
|
<li class="odd ">
|
304
368
|
<div class="item">
|
305
369
|
<span class='object_link'><a href="Status.html#cols-instance_method" title="Status#cols (method)">#cols</a></span>
|
@@ -326,32 +390,32 @@
|
|
326
390
|
|
327
391
|
<li class="even ">
|
328
392
|
<div class="item">
|
329
|
-
<span class='object_link'><a href="
|
330
|
-
<small>
|
393
|
+
<span class='object_link'><a href="Doing/Note.html#compress-instance_method" title="Doing::Note#compress (method)">#compress</a></span>
|
394
|
+
<small>Doing::Note</small>
|
331
395
|
</div>
|
332
396
|
</li>
|
333
397
|
|
334
398
|
|
335
399
|
<li class="odd ">
|
336
400
|
<div class="item">
|
337
|
-
<span class='object_link'><a href="
|
338
|
-
<small>
|
401
|
+
<span class='object_link'><a href="String.html#compress-instance_method" title="String#compress (method)">#compress</a></span>
|
402
|
+
<small>String</small>
|
339
403
|
</div>
|
340
404
|
</li>
|
341
405
|
|
342
406
|
|
343
407
|
<li class="even ">
|
344
408
|
<div class="item">
|
345
|
-
<span class='object_link'><a href="
|
346
|
-
<small>
|
409
|
+
<span class='object_link'><a href="Doing/Note.html#compress!-instance_method" title="Doing::Note#compress! (method)">#compress!</a></span>
|
410
|
+
<small>Doing::Note</small>
|
347
411
|
</div>
|
348
412
|
</li>
|
349
413
|
|
350
414
|
|
351
415
|
<li class="odd ">
|
352
416
|
<div class="item">
|
353
|
-
<span class='object_link'><a href="
|
354
|
-
<small>
|
417
|
+
<span class='object_link'><a href="String.html#compress!-instance_method" title="String#compress! (method)">#compress!</a></span>
|
418
|
+
<small>String</small>
|
355
419
|
</div>
|
356
420
|
</li>
|
357
421
|
|
@@ -373,14 +437,6 @@
|
|
373
437
|
|
374
438
|
|
375
439
|
<li class="even ">
|
376
|
-
<div class="item">
|
377
|
-
<span class='object_link'><a href="Doing/Configuration.html#config_file-instance_method" title="Doing::Configuration#config_file (method)">#config_file</a></span>
|
378
|
-
<small>Doing::Configuration</small>
|
379
|
-
</div>
|
380
|
-
</li>
|
381
|
-
|
382
|
-
|
383
|
-
<li class="odd ">
|
384
440
|
<div class="item">
|
385
441
|
<span class='object_link'><a href="Doing/WWID.html#config_file-instance_method" title="Doing::WWID#config_file (method)">#config_file</a></span>
|
386
442
|
<small>Doing::WWID</small>
|
@@ -388,15 +444,15 @@
|
|
388
444
|
</li>
|
389
445
|
|
390
446
|
|
391
|
-
<li class="
|
447
|
+
<li class="odd ">
|
392
448
|
<div class="item">
|
393
|
-
<span class='object_link'><a href="Doing/Configuration.html#config_file
|
449
|
+
<span class='object_link'><a href="Doing/Configuration.html#config_file-instance_method" title="Doing::Configuration#config_file (method)">#config_file</a></span>
|
394
450
|
<small>Doing::Configuration</small>
|
395
451
|
</div>
|
396
452
|
</li>
|
397
453
|
|
398
454
|
|
399
|
-
<li class="
|
455
|
+
<li class="even ">
|
400
456
|
<div class="item">
|
401
457
|
<span class='object_link'><a href="Doing/Configuration.html#configure-instance_method" title="Doing::Configuration#configure (method)">#configure</a></span>
|
402
458
|
<small>Doing::Configuration</small>
|
@@ -404,7 +460,7 @@
|
|
404
460
|
</li>
|
405
461
|
|
406
462
|
|
407
|
-
<li class="
|
463
|
+
<li class="odd ">
|
408
464
|
<div class="item">
|
409
465
|
<span class='object_link'><a href="Doing/WWID.html#content-instance_method" title="Doing::WWID#content (method)">#content</a></span>
|
410
466
|
<small>Doing::WWID</small>
|
@@ -412,7 +468,7 @@
|
|
412
468
|
</li>
|
413
469
|
|
414
470
|
|
415
|
-
<li class="
|
471
|
+
<li class="even ">
|
416
472
|
<div class="item">
|
417
473
|
<span class='object_link'><a href="Doing/LogAdapter.html#count-instance_method" title="Doing::LogAdapter#count (method)">#count</a></span>
|
418
474
|
<small>Doing::LogAdapter</small>
|
@@ -420,7 +476,7 @@
|
|
420
476
|
</li>
|
421
477
|
|
422
478
|
|
423
|
-
<li class="
|
479
|
+
<li class="odd ">
|
424
480
|
<div class="item">
|
425
481
|
<span class='object_link'><a href="Doing/WWID.html#create-instance_method" title="Doing::WWID#create (method)">#create</a></span>
|
426
482
|
<small>Doing::WWID</small>
|
@@ -428,7 +484,7 @@
|
|
428
484
|
</li>
|
429
485
|
|
430
486
|
|
431
|
-
<li class="
|
487
|
+
<li class="even ">
|
432
488
|
<div class="item">
|
433
489
|
<span class='object_link'><a href="Doing/WWID.html#current_section-instance_method" title="Doing::WWID#current_section (method)">#current_section</a></span>
|
434
490
|
<small>Doing::WWID</small>
|
@@ -436,7 +492,7 @@
|
|
436
492
|
</li>
|
437
493
|
|
438
494
|
|
439
|
-
<li class="
|
495
|
+
<li class="odd ">
|
440
496
|
<div class="item">
|
441
497
|
<span class='object_link'><a href="Doing/Item.html#date-instance_method" title="Doing::Item#date (method)">#date</a></span>
|
442
498
|
<small>Doing::Item</small>
|
@@ -444,7 +500,7 @@
|
|
444
500
|
</li>
|
445
501
|
|
446
502
|
|
447
|
-
<li class="
|
503
|
+
<li class="even ">
|
448
504
|
<div class="item">
|
449
505
|
<span class='object_link'><a href="Doing/LogAdapter.html#debug-instance_method" title="Doing::LogAdapter#debug (method)">#debug</a></span>
|
450
506
|
<small>Doing::LogAdapter</small>
|
@@ -452,7 +508,7 @@
|
|
452
508
|
</li>
|
453
509
|
|
454
510
|
|
455
|
-
<li class="
|
511
|
+
<li class="odd ">
|
456
512
|
<div class="item">
|
457
513
|
<span class='object_link'><a href="Doing/WWID.html#dedup-instance_method" title="Doing::WWID#dedup (method)">#dedup</a></span>
|
458
514
|
<small>Doing::WWID</small>
|
@@ -460,7 +516,7 @@
|
|
460
516
|
</li>
|
461
517
|
|
462
518
|
|
463
|
-
<li class="
|
519
|
+
<li class="even ">
|
464
520
|
<div class="item">
|
465
521
|
<span class='object_link'><a href="String.html#dedup_tags-instance_method" title="String#dedup_tags (method)">#dedup_tags</a></span>
|
466
522
|
<small>String</small>
|
@@ -468,7 +524,7 @@
|
|
468
524
|
</li>
|
469
525
|
|
470
526
|
|
471
|
-
<li class="
|
527
|
+
<li class="odd ">
|
472
528
|
<div class="item">
|
473
529
|
<span class='object_link'><a href="String.html#dedup_tags!-instance_method" title="String#dedup_tags! (method)">#dedup_tags!</a></span>
|
474
530
|
<small>String</small>
|
@@ -476,7 +532,7 @@
|
|
476
532
|
</li>
|
477
533
|
|
478
534
|
|
479
|
-
<li class="
|
535
|
+
<li class="even ">
|
480
536
|
<div class="item">
|
481
537
|
<span class='object_link'><a href="Hash.html#deep_freeze-instance_method" title="Hash#deep_freeze (method)">#deep_freeze</a></span>
|
482
538
|
<small>Hash</small>
|
@@ -484,7 +540,7 @@
|
|
484
540
|
</li>
|
485
541
|
|
486
542
|
|
487
|
-
<li class="
|
543
|
+
<li class="odd ">
|
488
544
|
<div class="item">
|
489
545
|
<span class='object_link'><a href="Hash.html#deep_freeze!-instance_method" title="Hash#deep_freeze! (method)">#deep_freeze!</a></span>
|
490
546
|
<small>Hash</small>
|
@@ -492,7 +548,7 @@
|
|
492
548
|
</li>
|
493
549
|
|
494
550
|
|
495
|
-
<li class="
|
551
|
+
<li class="even ">
|
496
552
|
<div class="item">
|
497
553
|
<span class='object_link'><a href="Doing/Util.html#deep_merge_hashes-instance_method" title="Doing::Util#deep_merge_hashes (method)">#deep_merge_hashes</a></span>
|
498
554
|
<small>Doing::Util</small>
|
@@ -500,7 +556,7 @@
|
|
500
556
|
</li>
|
501
557
|
|
502
558
|
|
503
|
-
<li class="
|
559
|
+
<li class="odd ">
|
504
560
|
<div class="item">
|
505
561
|
<span class='object_link'><a href="Doing/Util.html#deep_merge_hashes!-instance_method" title="Doing::Util#deep_merge_hashes! (method)">#deep_merge_hashes!</a></span>
|
506
562
|
<small>Doing::Util</small>
|
@@ -508,7 +564,7 @@
|
|
508
564
|
</li>
|
509
565
|
|
510
566
|
|
511
|
-
<li class="
|
567
|
+
<li class="even ">
|
512
568
|
<div class="item">
|
513
569
|
<span class='object_link'><a href="Hash.html#deep_set-instance_method" title="Hash#deep_set (method)">#deep_set</a></span>
|
514
570
|
<small>Hash</small>
|
@@ -516,7 +572,7 @@
|
|
516
572
|
</li>
|
517
573
|
|
518
574
|
|
519
|
-
<li class="
|
575
|
+
<li class="odd ">
|
520
576
|
<div class="item">
|
521
577
|
<span class='object_link'><a href="Doing/Prompt.html#default_answer-class_method" title="Doing::Prompt.default_answer (method)">default_answer</a></span>
|
522
578
|
<small>Doing::Prompt</small>
|
@@ -524,7 +580,7 @@
|
|
524
580
|
</li>
|
525
581
|
|
526
582
|
|
527
|
-
<li class="
|
583
|
+
<li class="even ">
|
528
584
|
<div class="item">
|
529
585
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#default_command-instance_method" title="GLI::Commands::MarkdownDocumentListener#default_command (method)">#default_command</a></span>
|
530
586
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -532,7 +588,7 @@
|
|
532
588
|
</li>
|
533
589
|
|
534
590
|
|
535
|
-
<li class="
|
591
|
+
<li class="odd ">
|
536
592
|
<div class="item">
|
537
593
|
<span class='object_link'><a href="Doing/Configuration.html#default_config_file-instance_method" title="Doing::Configuration#default_config_file (method)">#default_config_file</a></span>
|
538
594
|
<small>Doing::Configuration</small>
|
@@ -540,7 +596,7 @@
|
|
540
596
|
</li>
|
541
597
|
|
542
598
|
|
543
|
-
<li class="
|
599
|
+
<li class="even ">
|
544
600
|
<div class="item">
|
545
601
|
<span class='object_link'><a href="Doing/Util.html#default_editor-instance_method" title="Doing::Util#default_editor (method)">#default_editor</a></span>
|
546
602
|
<small>Doing::Util</small>
|
@@ -548,7 +604,7 @@
|
|
548
604
|
</li>
|
549
605
|
|
550
606
|
|
551
|
-
<li class="
|
607
|
+
<li class="odd ">
|
552
608
|
<div class="item">
|
553
609
|
<span class='object_link'><a href="Doing/WWID.html#default_option-instance_method" title="Doing::WWID#default_option (method)">#default_option</a></span>
|
554
610
|
<small>Doing::WWID</small>
|
@@ -556,7 +612,7 @@
|
|
556
612
|
</li>
|
557
613
|
|
558
614
|
|
559
|
-
<li class="
|
615
|
+
<li class="even ">
|
560
616
|
<div class="item">
|
561
617
|
<span class='object_link'><a href="Doing/Items.html#delete_item-instance_method" title="Doing::Items#delete_item (method)">#delete_item</a></span>
|
562
618
|
<small>Doing::Items</small>
|
@@ -564,7 +620,7 @@
|
|
564
620
|
</li>
|
565
621
|
|
566
622
|
|
567
|
-
<li class="
|
623
|
+
<li class="odd ">
|
568
624
|
<div class="item">
|
569
625
|
<span class='object_link'><a href="Doing/WWID.html#doing_file-instance_method" title="Doing::WWID#doing_file (method)">#doing_file</a></span>
|
570
626
|
<small>Doing::WWID</small>
|
@@ -572,7 +628,7 @@
|
|
572
628
|
</li>
|
573
629
|
|
574
630
|
|
575
|
-
<li class="
|
631
|
+
<li class="even ">
|
576
632
|
<div class="item">
|
577
633
|
<span class='object_link'><a href="Doing/Util.html#duplicable%3F-instance_method" title="Doing::Util#duplicable? (method)">#duplicable?</a></span>
|
578
634
|
<small>Doing::Util</small>
|
@@ -580,7 +636,7 @@
|
|
580
636
|
</li>
|
581
637
|
|
582
638
|
|
583
|
-
<li class="
|
639
|
+
<li class="odd ">
|
584
640
|
<div class="item">
|
585
641
|
<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>
|
586
642
|
<small>Doing::Util</small>
|
@@ -588,7 +644,7 @@
|
|
588
644
|
</li>
|
589
645
|
|
590
646
|
|
591
|
-
<li class="
|
647
|
+
<li class="even ">
|
592
648
|
<div class="item">
|
593
649
|
<span class='object_link'><a href="Doing/Item.html#duration-instance_method" title="Doing::Item#duration (method)">#duration</a></span>
|
594
650
|
<small>Doing::Item</small>
|
@@ -596,7 +652,7 @@
|
|
596
652
|
</li>
|
597
653
|
|
598
654
|
|
599
|
-
<li class="
|
655
|
+
<li class="odd ">
|
600
656
|
<div class="item">
|
601
657
|
<span class='object_link'><a href="Doing/WWID.html#edit_last-instance_method" title="Doing::WWID#edit_last (method)">#edit_last</a></span>
|
602
658
|
<small>Doing::WWID</small>
|
@@ -604,7 +660,7 @@
|
|
604
660
|
</li>
|
605
661
|
|
606
662
|
|
607
|
-
<li class="
|
663
|
+
<li class="even ">
|
608
664
|
<div class="item">
|
609
665
|
<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>
|
610
666
|
<small>Doing::Util</small>
|
@@ -612,7 +668,7 @@
|
|
612
668
|
</li>
|
613
669
|
|
614
670
|
|
615
|
-
<li class="
|
671
|
+
<li class="odd ">
|
616
672
|
<div class="item">
|
617
673
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#end_command-instance_method" title="GLI::Commands::MarkdownDocumentListener#end_command (method)">#end_command</a></span>
|
618
674
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -620,7 +676,7 @@
|
|
620
676
|
</li>
|
621
677
|
|
622
678
|
|
623
|
-
<li class="
|
679
|
+
<li class="even ">
|
624
680
|
<div class="item">
|
625
681
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#end_commands-instance_method" title="GLI::Commands::MarkdownDocumentListener#end_commands (method)">#end_commands</a></span>
|
626
682
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -628,7 +684,7 @@
|
|
628
684
|
</li>
|
629
685
|
|
630
686
|
|
631
|
-
<li class="
|
687
|
+
<li class="odd ">
|
632
688
|
<div class="item">
|
633
689
|
<span class='object_link'><a href="Doing/Item.html#end_date-instance_method" title="Doing::Item#end_date (method)">#end_date</a></span>
|
634
690
|
<small>Doing::Item</small>
|
@@ -636,7 +692,7 @@
|
|
636
692
|
</li>
|
637
693
|
|
638
694
|
|
639
|
-
<li class="
|
695
|
+
<li class="even ">
|
640
696
|
<div class="item">
|
641
697
|
<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>
|
642
698
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -644,7 +700,7 @@
|
|
644
700
|
</li>
|
645
701
|
|
646
702
|
|
647
|
-
<li class="
|
703
|
+
<li class="odd ">
|
648
704
|
<div class="item">
|
649
705
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#ending-instance_method" title="GLI::Commands::MarkdownDocumentListener#ending (method)">#ending</a></span>
|
650
706
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -652,6 +708,14 @@
|
|
652
708
|
</li>
|
653
709
|
|
654
710
|
|
711
|
+
<li class="even ">
|
712
|
+
<div class="item">
|
713
|
+
<span class='object_link'><a href="Doing/Prompt.html#enter_text-class_method" title="Doing::Prompt.enter_text (method)">enter_text</a></span>
|
714
|
+
<small>Doing::Prompt</small>
|
715
|
+
</div>
|
716
|
+
</li>
|
717
|
+
|
718
|
+
|
655
719
|
<li class="odd ">
|
656
720
|
<div class="item">
|
657
721
|
<span class='object_link'><a href="Doing/Item.html#equal%3F-instance_method" title="Doing::Item#equal? (method)">#equal?</a></span>
|
@@ -685,6 +749,14 @@
|
|
685
749
|
|
686
750
|
|
687
751
|
<li class="odd ">
|
752
|
+
<div class="item">
|
753
|
+
<span class='object_link'><a href="Doing/Configuration.html#exact_match%3F-instance_method" title="Doing::Configuration#exact_match? (method)">#exact_match?</a></span>
|
754
|
+
<small>Doing::Configuration</small>
|
755
|
+
</div>
|
756
|
+
</li>
|
757
|
+
|
758
|
+
|
759
|
+
<li class="even ">
|
688
760
|
<div class="item">
|
689
761
|
<span class='object_link'><a href="Doing/Util.html#exec_available-instance_method" title="Doing::Util#exec_available (method)">#exec_available</a></span>
|
690
762
|
<small>Doing::Util</small>
|
@@ -692,6 +764,14 @@
|
|
692
764
|
</li>
|
693
765
|
|
694
766
|
|
767
|
+
<li class="odd ">
|
768
|
+
<div class="item">
|
769
|
+
<span class='object_link'><a href="Doing/TemplateString.html#fill-instance_method" title="Doing::TemplateString#fill (method)">#fill</a></span>
|
770
|
+
<small>Doing::TemplateString</small>
|
771
|
+
</div>
|
772
|
+
</li>
|
773
|
+
|
774
|
+
|
695
775
|
<li class="even ">
|
696
776
|
<div class="item">
|
697
777
|
<span class='object_link'><a href="Doing/WWID.html#filter_items-instance_method" title="Doing::WWID#filter_items (method)">#filter_items</a></span>
|
@@ -725,6 +805,14 @@
|
|
725
805
|
|
726
806
|
|
727
807
|
<li class="even ">
|
808
|
+
<div class="item">
|
809
|
+
<span class='object_link'><a href="Doing/Configuration.html#force_answer-instance_method" title="Doing::Configuration#force_answer (method)">#force_answer</a></span>
|
810
|
+
<small>Doing::Configuration</small>
|
811
|
+
</div>
|
812
|
+
</li>
|
813
|
+
|
814
|
+
|
815
|
+
<li class="odd ">
|
728
816
|
<div class="item">
|
729
817
|
<span class='object_link'><a href="Doing/Prompt.html#force_answer-class_method" title="Doing::Prompt.force_answer (method)">force_answer</a></span>
|
730
818
|
<small>Doing::Prompt</small>
|
@@ -732,7 +820,7 @@
|
|
732
820
|
</li>
|
733
821
|
|
734
822
|
|
735
|
-
<li class="
|
823
|
+
<li class="even ">
|
736
824
|
<div class="item">
|
737
825
|
<span class='object_link'><a href="Doing/WWID.html#fork_editor-instance_method" title="Doing::WWID#fork_editor (method)">#fork_editor</a></span>
|
738
826
|
<small>Doing::WWID</small>
|
@@ -740,7 +828,7 @@
|
|
740
828
|
</li>
|
741
829
|
|
742
830
|
|
743
|
-
<li class="
|
831
|
+
<li class="odd ">
|
744
832
|
<div class="item">
|
745
833
|
<span class='object_link'><a href="Doing/WWID.html#format_input-instance_method" title="Doing::WWID#format_input (method)">#format_input</a></span>
|
746
834
|
<small>Doing::WWID</small>
|
@@ -748,7 +836,7 @@
|
|
748
836
|
</li>
|
749
837
|
|
750
838
|
|
751
|
-
<li class="
|
839
|
+
<li class="even ">
|
752
840
|
<div class="item">
|
753
841
|
<span class='object_link'><a href="Doing/WWID.html#format_time-instance_method" title="Doing::WWID#format_time (method)">#format_time</a></span>
|
754
842
|
<small>Doing::WWID</small>
|
@@ -756,7 +844,7 @@
|
|
756
844
|
</li>
|
757
845
|
|
758
846
|
|
759
|
-
<li class="
|
847
|
+
<li class="odd ">
|
760
848
|
<div class="item">
|
761
849
|
<span class='object_link'><a href="Doing/LogAdapter.html#formatted_topic-instance_method" title="Doing::LogAdapter#formatted_topic (method)">#formatted_topic</a></span>
|
762
850
|
<small>Doing::LogAdapter</small>
|
@@ -764,7 +852,7 @@
|
|
764
852
|
</li>
|
765
853
|
|
766
854
|
|
767
|
-
<li class="
|
855
|
+
<li class="even ">
|
768
856
|
<div class="item">
|
769
857
|
<span class='object_link'><a href="Doing/Configuration.html#from-instance_method" title="Doing::Configuration#from (method)">#from</a></span>
|
770
858
|
<small>Doing::Configuration</small>
|
@@ -772,7 +860,7 @@
|
|
772
860
|
</li>
|
773
861
|
|
774
862
|
|
775
|
-
<li class="
|
863
|
+
<li class="odd ">
|
776
864
|
<div class="item">
|
777
865
|
<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>
|
778
866
|
<small>Doing::WWID</small>
|
@@ -780,7 +868,7 @@
|
|
780
868
|
</li>
|
781
869
|
|
782
870
|
|
783
|
-
<li class="
|
871
|
+
<li class="even ">
|
784
872
|
<div class="item">
|
785
873
|
<span class='object_link'><a href="Doing/Prompt.html#fzf-class_method" title="Doing::Prompt.fzf (method)">fzf</a></span>
|
786
874
|
<small>Doing::Prompt</small>
|
@@ -788,7 +876,7 @@
|
|
788
876
|
</li>
|
789
877
|
|
790
878
|
|
791
|
-
<li class="
|
879
|
+
<li class="odd ">
|
792
880
|
<div class="item">
|
793
881
|
<span class='object_link'><a href="Doing/Completion.html#generate_completion-class_method" title="Doing::Completion.generate_completion (method)">generate_completion</a></span>
|
794
882
|
<small>Doing::Completion</small>
|
@@ -796,7 +884,7 @@
|
|
796
884
|
</li>
|
797
885
|
|
798
886
|
|
799
|
-
<li class="
|
887
|
+
<li class="even ">
|
800
888
|
<div class="item">
|
801
889
|
<span class='object_link'><a href="Doing/WWID.html#get_interval-instance_method" title="Doing::WWID#get_interval (method)">#get_interval</a></span>
|
802
890
|
<small>Doing::WWID</small>
|
@@ -804,7 +892,7 @@
|
|
804
892
|
</li>
|
805
893
|
|
806
894
|
|
807
|
-
<li class="
|
895
|
+
<li class="odd ">
|
808
896
|
<div class="item">
|
809
897
|
<span class='object_link'><a href="Doing/WWID.html#get_view-instance_method" title="Doing::WWID#get_view (method)">#get_view</a></span>
|
810
898
|
<small>Doing::WWID</small>
|
@@ -812,7 +900,7 @@
|
|
812
900
|
</li>
|
813
901
|
|
814
902
|
|
815
|
-
<li class="
|
903
|
+
<li class="even ">
|
816
904
|
<div class="item">
|
817
905
|
<span class='object_link'><a href="Doing/WWID.html#guess_section-instance_method" title="Doing::WWID#guess_section (method)">#guess_section</a></span>
|
818
906
|
<small>Doing::WWID</small>
|
@@ -820,7 +908,7 @@
|
|
820
908
|
</li>
|
821
909
|
|
822
910
|
|
823
|
-
<li class="
|
911
|
+
<li class="odd ">
|
824
912
|
<div class="item">
|
825
913
|
<span class='object_link'><a href="Doing/WWID.html#guess_view-instance_method" title="Doing::WWID#guess_view (method)">#guess_view</a></span>
|
826
914
|
<small>Doing::WWID</small>
|
@@ -828,7 +916,7 @@
|
|
828
916
|
</li>
|
829
917
|
|
830
918
|
|
831
|
-
<li class="
|
919
|
+
<li class="even ">
|
832
920
|
<div class="item">
|
833
921
|
<span class='object_link'><a href="Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>
|
834
922
|
<small>Array</small>
|
@@ -836,7 +924,7 @@
|
|
836
924
|
</li>
|
837
925
|
|
838
926
|
|
839
|
-
<li class="
|
927
|
+
<li class="odd ">
|
840
928
|
<div class="item">
|
841
929
|
<span class='object_link'><a href="String.html#highlight_tags-instance_method" title="String#highlight_tags (method)">#highlight_tags</a></span>
|
842
930
|
<small>String</small>
|
@@ -844,7 +932,7 @@
|
|
844
932
|
</li>
|
845
933
|
|
846
934
|
|
847
|
-
<li class="
|
935
|
+
<li class="even ">
|
848
936
|
<div class="item">
|
849
937
|
<span class='object_link'><a href="String.html#highlight_tags!-instance_method" title="String#highlight_tags! (method)">#highlight_tags!</a></span>
|
850
938
|
<small>String</small>
|
@@ -852,6 +940,14 @@
|
|
852
940
|
</li>
|
853
941
|
|
854
942
|
|
943
|
+
<li class="odd ">
|
944
|
+
<div class="item">
|
945
|
+
<span class='object_link'><a href="Time.html#humanize-instance_method" title="Time#humanize (method)">#humanize</a></span>
|
946
|
+
<small>Time</small>
|
947
|
+
</div>
|
948
|
+
</li>
|
949
|
+
|
950
|
+
|
855
951
|
<li class="even ">
|
856
952
|
<div class="item">
|
857
953
|
<span class='object_link'><a href="Doing/Item.html#id-instance_method" title="Doing::Item#id (method)">#id</a></span>
|
@@ -869,6 +965,14 @@
|
|
869
965
|
|
870
966
|
|
871
967
|
<li class="even ">
|
968
|
+
<div class="item">
|
969
|
+
<span class='object_link'><a href="Doing/Item.html#ignore_case-instance_method" title="Doing::Item#ignore_case (method)">#ignore_case</a></span>
|
970
|
+
<small>Doing::Item</small>
|
971
|
+
</div>
|
972
|
+
</li>
|
973
|
+
|
974
|
+
|
975
|
+
<li class="odd ">
|
872
976
|
<div class="item">
|
873
977
|
<span class='object_link'><a href="Doing/WWID.html#import-instance_method" title="Doing::WWID#import (method)">#import</a></span>
|
874
978
|
<small>Doing::WWID</small>
|
@@ -876,7 +980,7 @@
|
|
876
980
|
</li>
|
877
981
|
|
878
982
|
|
879
|
-
<li class="
|
983
|
+
<li class="even ">
|
880
984
|
<div class="item">
|
881
985
|
<span class='object_link'><a href="Doing/Items.html#in_section-instance_method" title="Doing::Items#in_section (method)">#in_section</a></span>
|
882
986
|
<small>Doing::Items</small>
|
@@ -884,7 +988,7 @@
|
|
884
988
|
</li>
|
885
989
|
|
886
990
|
|
887
|
-
<li class="
|
991
|
+
<li class="odd ">
|
888
992
|
<div class="item">
|
889
993
|
<span class='object_link'><a href="Doing/LogAdapter.html#info-instance_method" title="Doing::LogAdapter#info (method)">#info</a></span>
|
890
994
|
<small>Doing::LogAdapter</small>
|
@@ -892,7 +996,7 @@
|
|
892
996
|
</li>
|
893
997
|
|
894
998
|
|
895
|
-
<li class="
|
999
|
+
<li class="even ">
|
896
1000
|
<div class="item">
|
897
1001
|
<span class='object_link'><a href="Doing/WWID.html#init_doing_file-instance_method" title="Doing::WWID#init_doing_file (method)">#init_doing_file</a></span>
|
898
1002
|
<small>Doing::WWID</small>
|
@@ -900,18 +1004,26 @@
|
|
900
1004
|
</li>
|
901
1005
|
|
902
1006
|
|
1007
|
+
<li class="odd ">
|
1008
|
+
<div class="item">
|
1009
|
+
<span class='object_link'><a href="Doing/TemplateString.html#initialize-instance_method" title="Doing::TemplateString#initialize (method)">#initialize</a></span>
|
1010
|
+
<small>Doing::TemplateString</small>
|
1011
|
+
</div>
|
1012
|
+
</li>
|
1013
|
+
|
1014
|
+
|
903
1015
|
<li class="even ">
|
904
1016
|
<div class="item">
|
905
|
-
<span class='object_link'><a href="Doing/
|
906
|
-
<small>Doing::
|
1017
|
+
<span class='object_link'><a href="Doing/Item.html#initialize-instance_method" title="Doing::Item#initialize (method)">#initialize</a></span>
|
1018
|
+
<small>Doing::Item</small>
|
907
1019
|
</div>
|
908
1020
|
</li>
|
909
1021
|
|
910
1022
|
|
911
1023
|
<li class="odd ">
|
912
1024
|
<div class="item">
|
913
|
-
<span class='object_link'><a href="
|
914
|
-
<small>
|
1025
|
+
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#initialize-instance_method" title="GLI::Commands::MarkdownDocumentListener#initialize (method)">#initialize</a></span>
|
1026
|
+
<small>GLI::Commands::MarkdownDocumentListener</small>
|
915
1027
|
</div>
|
916
1028
|
</li>
|
917
1029
|
|
@@ -926,101 +1038,109 @@
|
|
926
1038
|
|
927
1039
|
<li class="odd ">
|
928
1040
|
<div class="item">
|
929
|
-
<span class='object_link'><a href="
|
930
|
-
<small>
|
1041
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#initialize-instance_method" title="BooleanTermParser::Query#initialize (method)">#initialize</a></span>
|
1042
|
+
<small>BooleanTermParser::Query</small>
|
931
1043
|
</div>
|
932
1044
|
</li>
|
933
1045
|
|
934
1046
|
|
935
1047
|
<li class="even ">
|
936
1048
|
<div class="item">
|
937
|
-
<span class='object_link'><a href="
|
938
|
-
<small>
|
1049
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#initialize-instance_method" title="BooleanTermParser::Clause#initialize (method)">#initialize</a></span>
|
1050
|
+
<small>BooleanTermParser::Clause</small>
|
939
1051
|
</div>
|
940
1052
|
</li>
|
941
1053
|
|
942
1054
|
|
943
1055
|
<li class="odd ">
|
944
1056
|
<div class="item">
|
945
|
-
<span class='object_link'><a href="Doing/
|
946
|
-
<small>Doing::
|
1057
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#initialize-instance_method" title="Doing::LogAdapter#initialize (method)">#initialize</a></span>
|
1058
|
+
<small>Doing::LogAdapter</small>
|
947
1059
|
</div>
|
948
1060
|
</li>
|
949
1061
|
|
950
1062
|
|
951
1063
|
<li class="even ">
|
952
1064
|
<div class="item">
|
953
|
-
<span class='object_link'><a href="Doing/
|
954
|
-
<small>Doing::
|
1065
|
+
<span class='object_link'><a href="Doing/Configuration.html#initialize-instance_method" title="Doing::Configuration#initialize (method)">#initialize</a></span>
|
1066
|
+
<small>Doing::Configuration</small>
|
955
1067
|
</div>
|
956
1068
|
</li>
|
957
1069
|
|
958
1070
|
|
959
1071
|
<li class="odd ">
|
960
1072
|
<div class="item">
|
961
|
-
<span class='object_link'><a href="Doing/
|
962
|
-
<small>Doing::
|
1073
|
+
<span class='object_link'><a href="Doing/WWID.html#initialize-instance_method" title="Doing::WWID#initialize (method)">#initialize</a></span>
|
1074
|
+
<small>Doing::WWID</small>
|
963
1075
|
</div>
|
964
1076
|
</li>
|
965
1077
|
|
966
1078
|
|
967
1079
|
<li class="even ">
|
968
1080
|
<div class="item">
|
969
|
-
<span class='object_link'><a href="Doing/
|
970
|
-
<small>Doing::
|
1081
|
+
<span class='object_link'><a href="Doing/Note.html#initialize-instance_method" title="Doing::Note#initialize (method)">#initialize</a></span>
|
1082
|
+
<small>Doing::Note</small>
|
971
1083
|
</div>
|
972
1084
|
</li>
|
973
1085
|
|
974
1086
|
|
975
1087
|
<li class="odd ">
|
976
1088
|
<div class="item">
|
977
|
-
<span class='object_link'><a href="Doing/Errors/
|
978
|
-
<small>Doing::Errors::
|
1089
|
+
<span class='object_link'><a href="Doing/Errors/UserCancelled.html#initialize-instance_method" title="Doing::Errors::UserCancelled#initialize (method)">#initialize</a></span>
|
1090
|
+
<small>Doing::Errors::UserCancelled</small>
|
979
1091
|
</div>
|
980
1092
|
</li>
|
981
1093
|
|
982
1094
|
|
983
1095
|
<li class="even ">
|
984
1096
|
<div class="item">
|
985
|
-
<span class='object_link'><a href="Doing/Errors/
|
986
|
-
<small>Doing::Errors::
|
1097
|
+
<span class='object_link'><a href="Doing/Errors/EmptyInput.html#initialize-instance_method" title="Doing::Errors::EmptyInput#initialize (method)">#initialize</a></span>
|
1098
|
+
<small>Doing::Errors::EmptyInput</small>
|
987
1099
|
</div>
|
988
1100
|
</li>
|
989
1101
|
|
990
1102
|
|
991
1103
|
<li class="odd ">
|
992
1104
|
<div class="item">
|
993
|
-
<span class='object_link'><a href="Doing/Errors/
|
994
|
-
<small>Doing::Errors::
|
1105
|
+
<span class='object_link'><a href="Doing/Errors/DoingStandardError.html#initialize-instance_method" title="Doing::Errors::DoingStandardError#initialize (method)">#initialize</a></span>
|
1106
|
+
<small>Doing::Errors::DoingStandardError</small>
|
995
1107
|
</div>
|
996
1108
|
</li>
|
997
1109
|
|
998
1110
|
|
999
1111
|
<li class="even ">
|
1000
1112
|
<div class="item">
|
1001
|
-
<span class='object_link'><a href="Doing/
|
1002
|
-
<small>Doing::
|
1113
|
+
<span class='object_link'><a href="Doing/Errors/WrongCommand.html#initialize-instance_method" title="Doing::Errors::WrongCommand#initialize (method)">#initialize</a></span>
|
1114
|
+
<small>Doing::Errors::WrongCommand</small>
|
1003
1115
|
</div>
|
1004
1116
|
</li>
|
1005
1117
|
|
1006
1118
|
|
1007
1119
|
<li class="odd ">
|
1008
1120
|
<div class="item">
|
1009
|
-
<span class='object_link'><a href="
|
1010
|
-
<small>
|
1121
|
+
<span class='object_link'><a href="Doing/Errors/DoingRuntimeError.html#initialize-instance_method" title="Doing::Errors::DoingRuntimeError#initialize (method)">#initialize</a></span>
|
1122
|
+
<small>Doing::Errors::DoingRuntimeError</small>
|
1011
1123
|
</div>
|
1012
1124
|
</li>
|
1013
1125
|
|
1014
1126
|
|
1015
1127
|
<li class="even ">
|
1016
1128
|
<div class="item">
|
1017
|
-
<span class='object_link'><a href="Doing/
|
1018
|
-
<small>Doing::
|
1129
|
+
<span class='object_link'><a href="Doing/Errors/NoResults.html#initialize-instance_method" title="Doing::Errors::NoResults#initialize (method)">#initialize</a></span>
|
1130
|
+
<small>Doing::Errors::NoResults</small>
|
1019
1131
|
</div>
|
1020
1132
|
</li>
|
1021
1133
|
|
1022
1134
|
|
1023
1135
|
<li class="odd ">
|
1136
|
+
<div class="item">
|
1137
|
+
<span class='object_link'><a href="Doing/Errors/DoingNoTraceError.html#initialize-instance_method" title="Doing::Errors::DoingNoTraceError#initialize (method)">#initialize</a></span>
|
1138
|
+
<small>Doing::Errors::DoingNoTraceError</small>
|
1139
|
+
</div>
|
1140
|
+
</li>
|
1141
|
+
|
1142
|
+
|
1143
|
+
<li class="even ">
|
1024
1144
|
<div class="item">
|
1025
1145
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#initialize-instance_method" title="Doing::Errors::PluginException#initialize (method)">#initialize</a></span>
|
1026
1146
|
<small>Doing::Errors::PluginException</small>
|
@@ -1028,7 +1148,39 @@
|
|
1028
1148
|
</li>
|
1029
1149
|
|
1030
1150
|
|
1151
|
+
<li class="odd ">
|
1152
|
+
<div class="item">
|
1153
|
+
<span class='object_link'><a href="Doing/Section.html#initialize-instance_method" title="Doing::Section#initialize (method)">#initialize</a></span>
|
1154
|
+
<small>Doing::Section</small>
|
1155
|
+
</div>
|
1156
|
+
</li>
|
1157
|
+
|
1158
|
+
|
1159
|
+
<li class="even ">
|
1160
|
+
<div class="item">
|
1161
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#initialize-instance_method" title="PhraseParser::TermClause#initialize (method)">#initialize</a></span>
|
1162
|
+
<small>PhraseParser::TermClause</small>
|
1163
|
+
</div>
|
1164
|
+
</li>
|
1165
|
+
|
1166
|
+
|
1167
|
+
<li class="odd ">
|
1168
|
+
<div class="item">
|
1169
|
+
<span class='object_link'><a href="PhraseParser/Query.html#initialize-instance_method" title="PhraseParser::Query#initialize (method)">#initialize</a></span>
|
1170
|
+
<small>PhraseParser::Query</small>
|
1171
|
+
</div>
|
1172
|
+
</li>
|
1173
|
+
|
1174
|
+
|
1031
1175
|
<li class="even ">
|
1176
|
+
<div class="item">
|
1177
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#initialize-instance_method" title="PhraseParser::PhraseClause#initialize (method)">#initialize</a></span>
|
1178
|
+
<small>PhraseParser::PhraseClause</small>
|
1179
|
+
</div>
|
1180
|
+
</li>
|
1181
|
+
|
1182
|
+
|
1183
|
+
<li class="odd ">
|
1032
1184
|
<div class="item">
|
1033
1185
|
<span class='object_link'><a href="Doing/Hooks.html#insert_hook-class_method" title="Doing::Hooks.insert_hook (method)">insert_hook</a></span>
|
1034
1186
|
<small>Doing::Hooks</small>
|
@@ -1036,7 +1188,7 @@
|
|
1036
1188
|
</li>
|
1037
1189
|
|
1038
1190
|
|
1039
|
-
<li class="
|
1191
|
+
<li class="even ">
|
1040
1192
|
<div class="item">
|
1041
1193
|
<span class='object_link'><a href="Doing/Prompt.html#install_fzf-class_method" title="Doing::Prompt.install_fzf (method)">install_fzf</a></span>
|
1042
1194
|
<small>Doing::Prompt</small>
|
@@ -1044,7 +1196,7 @@
|
|
1044
1196
|
</li>
|
1045
1197
|
|
1046
1198
|
|
1047
|
-
<li class="
|
1199
|
+
<li class="odd ">
|
1048
1200
|
<div class="item">
|
1049
1201
|
<span class='object_link'><a href="Doing/WWID.html#interactive-instance_method" title="Doing::WWID#interactive (method)">#interactive</a></span>
|
1050
1202
|
<small>Doing::WWID</small>
|
@@ -1052,7 +1204,7 @@
|
|
1052
1204
|
</li>
|
1053
1205
|
|
1054
1206
|
|
1055
|
-
<li class="
|
1207
|
+
<li class="even ">
|
1056
1208
|
<div class="item">
|
1057
1209
|
<span class='object_link'><a href="Doing/Item.html#interval-instance_method" title="Doing::Item#interval (method)">#interval</a></span>
|
1058
1210
|
<small>Doing::Item</small>
|
@@ -1060,7 +1212,7 @@
|
|
1060
1212
|
</li>
|
1061
1213
|
|
1062
1214
|
|
1063
|
-
<li class="
|
1215
|
+
<li class="odd ">
|
1064
1216
|
<div class="item">
|
1065
1217
|
<span class='object_link'><a href="String.html#is_rx%3F-instance_method" title="String#is_rx? (method)">#is_rx?</a></span>
|
1066
1218
|
<small>String</small>
|
@@ -1068,7 +1220,7 @@
|
|
1068
1220
|
</li>
|
1069
1221
|
|
1070
1222
|
|
1071
|
-
<li class="
|
1223
|
+
<li class="even ">
|
1072
1224
|
<div class="item">
|
1073
1225
|
<span class='object_link'><a href="Doing/WWID.html#last-instance_method" title="Doing::WWID#last (method)">#last</a></span>
|
1074
1226
|
<small>Doing::WWID</small>
|
@@ -1076,7 +1228,7 @@
|
|
1076
1228
|
</li>
|
1077
1229
|
|
1078
1230
|
|
1079
|
-
<li class="
|
1231
|
+
<li class="odd ">
|
1080
1232
|
<div class="item">
|
1081
1233
|
<span class='object_link'><a href="String.html#last_color-instance_method" title="String#last_color (method)">#last_color</a></span>
|
1082
1234
|
<small>String</small>
|
@@ -1084,7 +1236,7 @@
|
|
1084
1236
|
</li>
|
1085
1237
|
|
1086
1238
|
|
1087
|
-
<li class="
|
1239
|
+
<li class="even ">
|
1088
1240
|
<div class="item">
|
1089
1241
|
<span class='object_link'><a href="Doing/WWID.html#last_entry-instance_method" title="Doing::WWID#last_entry (method)">#last_entry</a></span>
|
1090
1242
|
<small>Doing::WWID</small>
|
@@ -1092,7 +1244,7 @@
|
|
1092
1244
|
</li>
|
1093
1245
|
|
1094
1246
|
|
1095
|
-
<li class="
|
1247
|
+
<li class="odd ">
|
1096
1248
|
<div class="item">
|
1097
1249
|
<span class='object_link'><a href="Doing/WWID.html#last_note-instance_method" title="Doing::WWID#last_note (method)">#last_note</a></span>
|
1098
1250
|
<small>Doing::WWID</small>
|
@@ -1100,7 +1252,7 @@
|
|
1100
1252
|
</li>
|
1101
1253
|
|
1102
1254
|
|
1103
|
-
<li class="
|
1255
|
+
<li class="even ">
|
1104
1256
|
<div class="item">
|
1105
1257
|
<span class='object_link'><a href="Doing/LogAdapter.html#level-instance_method" title="Doing::LogAdapter#level (method)">#level</a></span>
|
1106
1258
|
<small>Doing::LogAdapter</small>
|
@@ -1108,7 +1260,7 @@
|
|
1108
1260
|
</li>
|
1109
1261
|
|
1110
1262
|
|
1111
|
-
<li class="
|
1263
|
+
<li class="odd ">
|
1112
1264
|
<div class="item">
|
1113
1265
|
<span class='object_link'><a href="String.html#link_urls-instance_method" title="String#link_urls (method)">#link_urls</a></span>
|
1114
1266
|
<small>String</small>
|
@@ -1116,7 +1268,7 @@
|
|
1116
1268
|
</li>
|
1117
1269
|
|
1118
1270
|
|
1119
|
-
<li class="
|
1271
|
+
<li class="even ">
|
1120
1272
|
<div class="item">
|
1121
1273
|
<span class='object_link'><a href="String.html#link_urls!-instance_method" title="String#link_urls! (method)">#link_urls!</a></span>
|
1122
1274
|
<small>String</small>
|
@@ -1124,7 +1276,7 @@
|
|
1124
1276
|
</li>
|
1125
1277
|
|
1126
1278
|
|
1127
|
-
<li class="
|
1279
|
+
<li class="odd ">
|
1128
1280
|
<div class="item">
|
1129
1281
|
<span class='object_link'><a href="Doing/WWID.html#list_date-instance_method" title="Doing::WWID#list_date (method)">#list_date</a></span>
|
1130
1282
|
<small>Doing::WWID</small>
|
@@ -1132,7 +1284,7 @@
|
|
1132
1284
|
</li>
|
1133
1285
|
|
1134
1286
|
|
1135
|
-
<li class="
|
1287
|
+
<li class="even ">
|
1136
1288
|
<div class="item">
|
1137
1289
|
<span class='object_link'><a href="Doing/Plugins.html#list_plugins-class_method" title="Doing::Plugins.list_plugins (method)">list_plugins</a></span>
|
1138
1290
|
<small>Doing::Plugins</small>
|
@@ -1140,7 +1292,7 @@
|
|
1140
1292
|
</li>
|
1141
1293
|
|
1142
1294
|
|
1143
|
-
<li class="
|
1295
|
+
<li class="odd ">
|
1144
1296
|
<div class="item">
|
1145
1297
|
<span class='object_link'><a href="Doing/WWID.html#list_section-instance_method" title="Doing::WWID#list_section (method)">#list_section</a></span>
|
1146
1298
|
<small>Doing::WWID</small>
|
@@ -1148,7 +1300,7 @@
|
|
1148
1300
|
</li>
|
1149
1301
|
|
1150
1302
|
|
1151
|
-
<li class="
|
1303
|
+
<li class="even ">
|
1152
1304
|
<div class="item">
|
1153
1305
|
<span class='object_link'><a href="Doing/Plugins.html#load_plugins-class_method" title="Doing::Plugins.load_plugins (method)">load_plugins</a></span>
|
1154
1306
|
<small>Doing::Plugins</small>
|
@@ -1156,6 +1308,14 @@
|
|
1156
1308
|
</li>
|
1157
1309
|
|
1158
1310
|
|
1311
|
+
<li class="odd ">
|
1312
|
+
<div class="item">
|
1313
|
+
<span class='object_link'><a href="Doing/LogAdapter.html#log_benchmarks-instance_method" title="Doing::LogAdapter#log_benchmarks (method)">#log_benchmarks</a></span>
|
1314
|
+
<small>Doing::LogAdapter</small>
|
1315
|
+
</div>
|
1316
|
+
</li>
|
1317
|
+
|
1318
|
+
|
1159
1319
|
<li class="even ">
|
1160
1320
|
<div class="item">
|
1161
1321
|
<span class='object_link'><a href="Doing/LogAdapter.html#log_change-instance_method" title="Doing::LogAdapter#log_change (method)">#log_change</a></span>
|
@@ -1197,6 +1357,30 @@
|
|
1197
1357
|
|
1198
1358
|
|
1199
1359
|
<li class="odd ">
|
1360
|
+
<div class="item">
|
1361
|
+
<span class='object_link'><a href="PhraseParser/Query.html#match-instance_method" title="PhraseParser::Query#match (method)">#match</a></span>
|
1362
|
+
<small>PhraseParser::Query</small>
|
1363
|
+
</div>
|
1364
|
+
</li>
|
1365
|
+
|
1366
|
+
|
1367
|
+
<li class="even ">
|
1368
|
+
<div class="item">
|
1369
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#match-instance_method" title="BooleanTermParser::Query#match (method)">#match</a></span>
|
1370
|
+
<small>BooleanTermParser::Query</small>
|
1371
|
+
</div>
|
1372
|
+
</li>
|
1373
|
+
|
1374
|
+
|
1375
|
+
<li class="odd ">
|
1376
|
+
<div class="item">
|
1377
|
+
<span class='object_link'><a href="PhraseParser/Query.html#match_phrase-instance_method" title="PhraseParser::Query#match_phrase (method)">#match_phrase</a></span>
|
1378
|
+
<small>PhraseParser::Query</small>
|
1379
|
+
</div>
|
1380
|
+
</li>
|
1381
|
+
|
1382
|
+
|
1383
|
+
<li class="even ">
|
1200
1384
|
<div class="item">
|
1201
1385
|
<span class='object_link'><a href="Doing/Util.html#mergable%3F-instance_method" title="Doing::Util#mergable? (method)">#mergable?</a></span>
|
1202
1386
|
<small>Doing::Util</small>
|
@@ -1204,7 +1388,7 @@
|
|
1204
1388
|
</li>
|
1205
1389
|
|
1206
1390
|
|
1207
|
-
<li class="
|
1391
|
+
<li class="odd ">
|
1208
1392
|
<div class="item">
|
1209
1393
|
<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>
|
1210
1394
|
<small>Doing::Util</small>
|
@@ -1212,7 +1396,7 @@
|
|
1212
1396
|
</li>
|
1213
1397
|
|
1214
1398
|
|
1215
|
-
<li class="
|
1399
|
+
<li class="even ">
|
1216
1400
|
<div class="item">
|
1217
1401
|
<span class='object_link'><a href="Doing/Util.html#merge_values-instance_method" title="Doing::Util#merge_values (method)">#merge_values</a></span>
|
1218
1402
|
<small>Doing::Util</small>
|
@@ -1220,7 +1404,7 @@
|
|
1220
1404
|
</li>
|
1221
1405
|
|
1222
1406
|
|
1223
|
-
<li class="
|
1407
|
+
<li class="odd ">
|
1224
1408
|
<div class="item">
|
1225
1409
|
<span class='object_link'><a href="Doing/LogAdapter.html#messages-instance_method" title="Doing::LogAdapter#messages (method)">#messages</a></span>
|
1226
1410
|
<small>Doing::LogAdapter</small>
|
@@ -1228,7 +1412,7 @@
|
|
1228
1412
|
</li>
|
1229
1413
|
|
1230
1414
|
|
1231
|
-
<li class="
|
1415
|
+
<li class="even ">
|
1232
1416
|
<div class="item">
|
1233
1417
|
<span class='object_link'><a href="Doing/Item.html#move_to-instance_method" title="Doing::Item#move_to (method)">#move_to</a></span>
|
1234
1418
|
<small>Doing::Item</small>
|
@@ -1236,7 +1420,7 @@
|
|
1236
1420
|
</li>
|
1237
1421
|
|
1238
1422
|
|
1239
|
-
<li class="
|
1423
|
+
<li class="odd ">
|
1240
1424
|
<div class="item">
|
1241
1425
|
<span class='object_link'><a href="Status.html#msg-instance_method" title="Status#msg (method)">#msg</a></span>
|
1242
1426
|
<small>Status</small>
|
@@ -1244,7 +1428,39 @@
|
|
1244
1428
|
</li>
|
1245
1429
|
|
1246
1430
|
|
1431
|
+
<li class="even ">
|
1432
|
+
<div class="item">
|
1433
|
+
<span class='object_link'><a href="PhraseParser/Query.html#must_clauses-instance_method" title="PhraseParser::Query#must_clauses (method)">#must_clauses</a></span>
|
1434
|
+
<small>PhraseParser::Query</small>
|
1435
|
+
</div>
|
1436
|
+
</li>
|
1437
|
+
|
1438
|
+
|
1439
|
+
<li class="odd ">
|
1440
|
+
<div class="item">
|
1441
|
+
<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>
|
1442
|
+
<small>PhraseParser::Query</small>
|
1443
|
+
</div>
|
1444
|
+
</li>
|
1445
|
+
|
1446
|
+
|
1447
|
+
<li class="even ">
|
1448
|
+
<div class="item">
|
1449
|
+
<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>
|
1450
|
+
<small>BooleanTermParser::Query</small>
|
1451
|
+
</div>
|
1452
|
+
</li>
|
1453
|
+
|
1454
|
+
|
1247
1455
|
<li class="odd ">
|
1456
|
+
<div class="item">
|
1457
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#must_terms-instance_method" title="BooleanTermParser::Query#must_terms (method)">#must_terms</a></span>
|
1458
|
+
<small>BooleanTermParser::Query</small>
|
1459
|
+
</div>
|
1460
|
+
</li>
|
1461
|
+
|
1462
|
+
|
1463
|
+
<li class="even ">
|
1248
1464
|
<div class="item">
|
1249
1465
|
<span class='object_link'><a href="Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>
|
1250
1466
|
<small>Array</small>
|
@@ -1252,7 +1468,7 @@
|
|
1252
1468
|
</li>
|
1253
1469
|
|
1254
1470
|
|
1255
|
-
<li class="
|
1471
|
+
<li class="odd ">
|
1256
1472
|
<div class="item">
|
1257
1473
|
<span class='object_link'><a href="Doing/WWID.html#next_item-instance_method" title="Doing::WWID#next_item (method)">#next_item</a></span>
|
1258
1474
|
<small>Doing::WWID</small>
|
@@ -1260,7 +1476,7 @@
|
|
1260
1476
|
</li>
|
1261
1477
|
|
1262
1478
|
|
1263
|
-
<li class="
|
1479
|
+
<li class="even ">
|
1264
1480
|
<div class="item">
|
1265
1481
|
<span class='object_link'><a href="Symbol.html#normalize_bool-instance_method" title="Symbol#normalize_bool (method)">#normalize_bool</a></span>
|
1266
1482
|
<small>Symbol</small>
|
@@ -1268,7 +1484,7 @@
|
|
1268
1484
|
</li>
|
1269
1485
|
|
1270
1486
|
|
1271
|
-
<li class="
|
1487
|
+
<li class="odd ">
|
1272
1488
|
<div class="item">
|
1273
1489
|
<span class='object_link'><a href="String.html#normalize_bool-instance_method" title="String#normalize_bool (method)">#normalize_bool</a></span>
|
1274
1490
|
<small>String</small>
|
@@ -1276,7 +1492,7 @@
|
|
1276
1492
|
</li>
|
1277
1493
|
|
1278
1494
|
|
1279
|
-
<li class="
|
1495
|
+
<li class="even ">
|
1280
1496
|
<div class="item">
|
1281
1497
|
<span class='object_link'><a href="String.html#normalize_bool!-instance_method" title="String#normalize_bool! (method)">#normalize_bool!</a></span>
|
1282
1498
|
<small>String</small>
|
@@ -1284,7 +1500,7 @@
|
|
1284
1500
|
</li>
|
1285
1501
|
|
1286
1502
|
|
1287
|
-
<li class="
|
1503
|
+
<li class="odd ">
|
1288
1504
|
<div class="item">
|
1289
1505
|
<span class='object_link'><a href="Symbol.html#normalize_case-instance_method" title="Symbol#normalize_case (method)">#normalize_case</a></span>
|
1290
1506
|
<small>Symbol</small>
|
@@ -1292,7 +1508,7 @@
|
|
1292
1508
|
</li>
|
1293
1509
|
|
1294
1510
|
|
1295
|
-
<li class="
|
1511
|
+
<li class="even ">
|
1296
1512
|
<div class="item">
|
1297
1513
|
<span class='object_link'><a href="String.html#normalize_case-instance_method" title="String#normalize_case (method)">#normalize_case</a></span>
|
1298
1514
|
<small>String</small>
|
@@ -1300,7 +1516,7 @@
|
|
1300
1516
|
</li>
|
1301
1517
|
|
1302
1518
|
|
1303
|
-
<li class="
|
1519
|
+
<li class="odd ">
|
1304
1520
|
<div class="item">
|
1305
1521
|
<span class='object_link'><a href="String.html#normalize_case!-instance_method" title="String#normalize_case! (method)">#normalize_case!</a></span>
|
1306
1522
|
<small>String</small>
|
@@ -1308,15 +1524,31 @@
|
|
1308
1524
|
</li>
|
1309
1525
|
|
1310
1526
|
|
1527
|
+
<li class="even ">
|
1528
|
+
<div class="item">
|
1529
|
+
<span class='object_link'><a href="Symbol.html#normalize_matching-instance_method" title="Symbol#normalize_matching (method)">#normalize_matching</a></span>
|
1530
|
+
<small>Symbol</small>
|
1531
|
+
</div>
|
1532
|
+
</li>
|
1533
|
+
|
1534
|
+
|
1311
1535
|
<li class="odd ">
|
1312
1536
|
<div class="item">
|
1313
|
-
<span class='object_link'><a href="String.html#
|
1537
|
+
<span class='object_link'><a href="String.html#normalize_matching-instance_method" title="String#normalize_matching (method)">#normalize_matching</a></span>
|
1314
1538
|
<small>String</small>
|
1315
1539
|
</div>
|
1316
1540
|
</li>
|
1317
1541
|
|
1318
1542
|
|
1319
1543
|
<li class="even ">
|
1544
|
+
<div class="item">
|
1545
|
+
<span class='object_link'><a href="String.html#normalize_matching!-instance_method" title="String#normalize_matching! (method)">#normalize_matching!</a></span>
|
1546
|
+
<small>String</small>
|
1547
|
+
</div>
|
1548
|
+
</li>
|
1549
|
+
|
1550
|
+
|
1551
|
+
<li class="odd ">
|
1320
1552
|
<div class="item">
|
1321
1553
|
<span class='object_link'><a href="Symbol.html#normalize_order-instance_method" title="Symbol#normalize_order (method)">#normalize_order</a></span>
|
1322
1554
|
<small>Symbol</small>
|
@@ -1324,6 +1556,14 @@
|
|
1324
1556
|
</li>
|
1325
1557
|
|
1326
1558
|
|
1559
|
+
<li class="even ">
|
1560
|
+
<div class="item">
|
1561
|
+
<span class='object_link'><a href="String.html#normalize_order-instance_method" title="String#normalize_order (method)">#normalize_order</a></span>
|
1562
|
+
<small>String</small>
|
1563
|
+
</div>
|
1564
|
+
</li>
|
1565
|
+
|
1566
|
+
|
1327
1567
|
<li class="odd ">
|
1328
1568
|
<div class="item">
|
1329
1569
|
<span class='object_link'><a href="String.html#normalize_order!-instance_method" title="String#normalize_order! (method)">#normalize_order!</a></span>
|
@@ -1357,6 +1597,30 @@
|
|
1357
1597
|
|
1358
1598
|
|
1359
1599
|
<li class="odd ">
|
1600
|
+
<div class="item">
|
1601
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#operator-instance_method" title="PhraseParser::PhraseClause#operator (method)">#operator</a></span>
|
1602
|
+
<small>PhraseParser::PhraseClause</small>
|
1603
|
+
</div>
|
1604
|
+
</li>
|
1605
|
+
|
1606
|
+
|
1607
|
+
<li class="even ">
|
1608
|
+
<div class="item">
|
1609
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#operator-instance_method" title="PhraseParser::TermClause#operator (method)">#operator</a></span>
|
1610
|
+
<small>PhraseParser::TermClause</small>
|
1611
|
+
</div>
|
1612
|
+
</li>
|
1613
|
+
|
1614
|
+
|
1615
|
+
<li class="odd ">
|
1616
|
+
<div class="item">
|
1617
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#operator-instance_method" title="BooleanTermParser::Clause#operator (method)">#operator</a></span>
|
1618
|
+
<small>BooleanTermParser::Clause</small>
|
1619
|
+
</div>
|
1620
|
+
</li>
|
1621
|
+
|
1622
|
+
|
1623
|
+
<li class="even ">
|
1360
1624
|
<div class="item">
|
1361
1625
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#options-instance_method" title="GLI::Commands::MarkdownDocumentListener#options (method)">#options</a></span>
|
1362
1626
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -1364,6 +1628,14 @@
|
|
1364
1628
|
</li>
|
1365
1629
|
|
1366
1630
|
|
1631
|
+
<li class="odd ">
|
1632
|
+
<div class="item">
|
1633
|
+
<span class='object_link'><a href="Doing/TemplateString.html#original-instance_method" title="Doing::TemplateString#original (method)">#original</a></span>
|
1634
|
+
<small>Doing::TemplateString</small>
|
1635
|
+
</div>
|
1636
|
+
</li>
|
1637
|
+
|
1638
|
+
|
1367
1639
|
<li class="even ">
|
1368
1640
|
<div class="item">
|
1369
1641
|
<span class='object_link'><a href="Doing/Section.html#original-instance_method" title="Doing::Section#original (method)">#original</a></span>
|
@@ -1413,6 +1685,30 @@
|
|
1413
1685
|
|
1414
1686
|
|
1415
1687
|
<li class="even ">
|
1688
|
+
<div class="item">
|
1689
|
+
<span class='object_link'><a href="Doing/TemplateString.html#parse_colors-instance_method" title="Doing::TemplateString#parse_colors (method)">#parse_colors</a></span>
|
1690
|
+
<small>Doing::TemplateString</small>
|
1691
|
+
</div>
|
1692
|
+
</li>
|
1693
|
+
|
1694
|
+
|
1695
|
+
<li class="odd ">
|
1696
|
+
<div class="item">
|
1697
|
+
<span class='object_link'><a href="Doing/TemplateString.html#parsed_colors-instance_method" title="Doing::TemplateString#parsed_colors (method)">#parsed_colors</a></span>
|
1698
|
+
<small>Doing::TemplateString</small>
|
1699
|
+
</div>
|
1700
|
+
</li>
|
1701
|
+
|
1702
|
+
|
1703
|
+
<li class="even ">
|
1704
|
+
<div class="item">
|
1705
|
+
<span class='object_link'><a href="PhraseParser/PhraseClause.html#phrase-instance_method" title="PhraseParser::PhraseClause#phrase (method)">#phrase</a></span>
|
1706
|
+
<small>PhraseParser::PhraseClause</small>
|
1707
|
+
</div>
|
1708
|
+
</li>
|
1709
|
+
|
1710
|
+
|
1711
|
+
<li class="odd ">
|
1416
1712
|
<div class="item">
|
1417
1713
|
<span class='object_link'><a href="Doing/Errors/PluginException.html#plugin-instance_method" title="Doing::Errors::PluginException#plugin (method)">#plugin</a></span>
|
1418
1714
|
<small>Doing::Errors::PluginException</small>
|
@@ -1420,7 +1716,7 @@
|
|
1420
1716
|
</li>
|
1421
1717
|
|
1422
1718
|
|
1423
|
-
<li class="
|
1719
|
+
<li class="even ">
|
1424
1720
|
<div class="item">
|
1425
1721
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_names-class_method" title="Doing::Plugins.plugin_names (method)">plugin_names</a></span>
|
1426
1722
|
<small>Doing::Plugins</small>
|
@@ -1428,7 +1724,7 @@
|
|
1428
1724
|
</li>
|
1429
1725
|
|
1430
1726
|
|
1431
|
-
<li class="
|
1727
|
+
<li class="odd ">
|
1432
1728
|
<div class="item">
|
1433
1729
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_regex-class_method" title="Doing::Plugins.plugin_regex (method)">plugin_regex</a></span>
|
1434
1730
|
<small>Doing::Plugins</small>
|
@@ -1436,7 +1732,7 @@
|
|
1436
1732
|
</li>
|
1437
1733
|
|
1438
1734
|
|
1439
|
-
<li class="
|
1735
|
+
<li class="even ">
|
1440
1736
|
<div class="item">
|
1441
1737
|
<span class='object_link'><a href="Doing/Plugins.html#plugin_templates-class_method" title="Doing::Plugins.plugin_templates (method)">plugin_templates</a></span>
|
1442
1738
|
<small>Doing::Plugins</small>
|
@@ -1444,7 +1740,7 @@
|
|
1444
1740
|
</li>
|
1445
1741
|
|
1446
1742
|
|
1447
|
-
<li class="
|
1743
|
+
<li class="odd ">
|
1448
1744
|
<div class="item">
|
1449
1745
|
<span class='object_link'><a href="Doing/Plugins.html#plugins-class_method" title="Doing::Plugins.plugins (method)">plugins</a></span>
|
1450
1746
|
<small>Doing::Plugins</small>
|
@@ -1452,7 +1748,7 @@
|
|
1452
1748
|
</li>
|
1453
1749
|
|
1454
1750
|
|
1455
|
-
<li class="
|
1751
|
+
<li class="even ">
|
1456
1752
|
<div class="item">
|
1457
1753
|
<span class='object_link'><a href="Doing/Plugins.html#plugins_path-class_method" title="Doing::Plugins.plugins_path (method)">plugins_path</a></span>
|
1458
1754
|
<small>Doing::Plugins</small>
|
@@ -1460,6 +1756,14 @@
|
|
1460
1756
|
</li>
|
1461
1757
|
|
1462
1758
|
|
1759
|
+
<li class="odd ">
|
1760
|
+
<div class="item">
|
1761
|
+
<span class='object_link'><a href="String.html#pluralize-instance_method" title="String#pluralize (method)">#pluralize</a></span>
|
1762
|
+
<small>String</small>
|
1763
|
+
</div>
|
1764
|
+
</li>
|
1765
|
+
|
1766
|
+
|
1463
1767
|
<li class="even ">
|
1464
1768
|
<div class="item">
|
1465
1769
|
<span class='object_link'><a href="Doing/Hooks.html#priority_value-class_method" title="Doing::Hooks.priority_value (method)">priority_value</a></span>
|
@@ -1492,6 +1796,22 @@
|
|
1492
1796
|
</li>
|
1493
1797
|
|
1494
1798
|
|
1799
|
+
<li class="even ">
|
1800
|
+
<div class="item">
|
1801
|
+
<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>
|
1802
|
+
<small>Doing::Util::Backup</small>
|
1803
|
+
</div>
|
1804
|
+
</li>
|
1805
|
+
|
1806
|
+
|
1807
|
+
<li class="odd ">
|
1808
|
+
<div class="item">
|
1809
|
+
<span class='object_link'><a href="Doing/TemplateString.html#raw-instance_method" title="Doing::TemplateString#raw (method)">#raw</a></span>
|
1810
|
+
<small>Doing::TemplateString</small>
|
1811
|
+
</div>
|
1812
|
+
</li>
|
1813
|
+
|
1814
|
+
|
1495
1815
|
<li class="even ">
|
1496
1816
|
<div class="item">
|
1497
1817
|
<span class='object_link'><a href="Doing/WWID.html#recent-instance_method" title="Doing::WWID#recent (method)">#recent</a></span>
|
@@ -1501,6 +1821,14 @@
|
|
1501
1821
|
|
1502
1822
|
|
1503
1823
|
<li class="odd ">
|
1824
|
+
<div class="item">
|
1825
|
+
<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>
|
1826
|
+
<small>Doing::Util::Backup</small>
|
1827
|
+
</div>
|
1828
|
+
</li>
|
1829
|
+
|
1830
|
+
|
1831
|
+
<li class="even ">
|
1504
1832
|
<div class="item">
|
1505
1833
|
<span class='object_link'><a href="Doing/Plugins.html#register-class_method" title="Doing::Plugins.register (method)">register</a></span>
|
1506
1834
|
<small>Doing::Plugins</small>
|
@@ -1508,7 +1836,7 @@
|
|
1508
1836
|
</li>
|
1509
1837
|
|
1510
1838
|
|
1511
|
-
<li class="
|
1839
|
+
<li class="odd ">
|
1512
1840
|
<div class="item">
|
1513
1841
|
<span class='object_link'><a href="Doing/Hooks.html#register-class_method" title="Doing::Hooks.register (method)">register</a></span>
|
1514
1842
|
<small>Doing::Hooks</small>
|
@@ -1516,7 +1844,7 @@
|
|
1516
1844
|
</li>
|
1517
1845
|
|
1518
1846
|
|
1519
|
-
<li class="
|
1847
|
+
<li class="even ">
|
1520
1848
|
<div class="item">
|
1521
1849
|
<span class='object_link'><a href="Doing/Hooks.html#register_one-class_method" title="Doing::Hooks.register_one (method)">register_one</a></span>
|
1522
1850
|
<small>Doing::Hooks</small>
|
@@ -1524,7 +1852,7 @@
|
|
1524
1852
|
</li>
|
1525
1853
|
|
1526
1854
|
|
1527
|
-
<li class="
|
1855
|
+
<li class="odd ">
|
1528
1856
|
<div class="item">
|
1529
1857
|
<span class='object_link'><a href="Time.html#relative_date-instance_method" title="Time#relative_date (method)">#relative_date</a></span>
|
1530
1858
|
<small>Time</small>
|
@@ -1532,7 +1860,7 @@
|
|
1532
1860
|
</li>
|
1533
1861
|
|
1534
1862
|
|
1535
|
-
<li class="
|
1863
|
+
<li class="even ">
|
1536
1864
|
<div class="item">
|
1537
1865
|
<span class='object_link'><a href="String.html#remove_self_links-instance_method" title="String#remove_self_links (method)">#remove_self_links</a></span>
|
1538
1866
|
<small>String</small>
|
@@ -1540,6 +1868,14 @@
|
|
1540
1868
|
</li>
|
1541
1869
|
|
1542
1870
|
|
1871
|
+
<li class="odd ">
|
1872
|
+
<div class="item">
|
1873
|
+
<span class='object_link'><a href="Doing/TemplateString.html#reparse-instance_method" title="Doing::TemplateString#reparse (method)">#reparse</a></span>
|
1874
|
+
<small>Doing::TemplateString</small>
|
1875
|
+
</div>
|
1876
|
+
</li>
|
1877
|
+
|
1878
|
+
|
1543
1879
|
<li class="even ">
|
1544
1880
|
<div class="item">
|
1545
1881
|
<span class='object_link'><a href="Doing/WWID.html#repeat_item-instance_method" title="Doing::WWID#repeat_item (method)">#repeat_item</a></span>
|
@@ -1582,8 +1918,8 @@
|
|
1582
1918
|
|
1583
1919
|
<li class="odd ">
|
1584
1920
|
<div class="item">
|
1585
|
-
<span class='object_link'><a href="Doing/
|
1586
|
-
<small>Doing::
|
1921
|
+
<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>
|
1922
|
+
<small>Doing::Util::Backup</small>
|
1587
1923
|
</div>
|
1588
1924
|
</li>
|
1589
1925
|
|
@@ -1629,6 +1965,14 @@
|
|
1629
1965
|
|
1630
1966
|
|
1631
1967
|
<li class="odd ">
|
1968
|
+
<div class="item">
|
1969
|
+
<span class='object_link'><a href="Doing/Plugins.html#save_template-class_method" title="Doing::Plugins.save_template (method)">save_template</a></span>
|
1970
|
+
<small>Doing::Plugins</small>
|
1971
|
+
</div>
|
1972
|
+
</li>
|
1973
|
+
|
1974
|
+
|
1975
|
+
<li class="even ">
|
1632
1976
|
<div class="item">
|
1633
1977
|
<span class='object_link'><a href="Doing/Item.html#search-instance_method" title="Doing::Item#search (method)">#search</a></span>
|
1634
1978
|
<small>Doing::Item</small>
|
@@ -1636,7 +1980,7 @@
|
|
1636
1980
|
</li>
|
1637
1981
|
|
1638
1982
|
|
1639
|
-
<li class="
|
1983
|
+
<li class="odd ">
|
1640
1984
|
<div class="item">
|
1641
1985
|
<span class='object_link'><a href="Doing/Item.html#section-instance_method" title="Doing::Item#section (method)">#section</a></span>
|
1642
1986
|
<small>Doing::Item</small>
|
@@ -1644,7 +1988,7 @@
|
|
1644
1988
|
</li>
|
1645
1989
|
|
1646
1990
|
|
1647
|
-
<li class="
|
1991
|
+
<li class="even ">
|
1648
1992
|
<div class="item">
|
1649
1993
|
<span class='object_link'><a href="Doing/Items.html#section%3F-instance_method" title="Doing::Items#section? (method)">#section?</a></span>
|
1650
1994
|
<small>Doing::Items</small>
|
@@ -1652,7 +1996,7 @@
|
|
1652
1996
|
</li>
|
1653
1997
|
|
1654
1998
|
|
1655
|
-
<li class="
|
1999
|
+
<li class="odd ">
|
1656
2000
|
<div class="item">
|
1657
2001
|
<span class='object_link'><a href="Doing/Items.html#section_titles-instance_method" title="Doing::Items#section_titles (method)">#section_titles</a></span>
|
1658
2002
|
<small>Doing::Items</small>
|
@@ -1660,7 +2004,7 @@
|
|
1660
2004
|
</li>
|
1661
2005
|
|
1662
2006
|
|
1663
|
-
<li class="
|
2007
|
+
<li class="even ">
|
1664
2008
|
<div class="item">
|
1665
2009
|
<span class='object_link'><a href="Doing/WWID.html#sections-instance_method" title="Doing::WWID#sections (method)">#sections</a></span>
|
1666
2010
|
<small>Doing::WWID</small>
|
@@ -1668,7 +2012,7 @@
|
|
1668
2012
|
</li>
|
1669
2013
|
|
1670
2014
|
|
1671
|
-
<li class="
|
2015
|
+
<li class="odd ">
|
1672
2016
|
<div class="item">
|
1673
2017
|
<span class='object_link'><a href="Doing/Items.html#sections-instance_method" title="Doing::Items#sections (method)">#sections</a></span>
|
1674
2018
|
<small>Doing::Items</small>
|
@@ -1676,7 +2020,23 @@
|
|
1676
2020
|
</li>
|
1677
2021
|
|
1678
2022
|
|
2023
|
+
<li class="even ">
|
2024
|
+
<div class="item">
|
2025
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#select_backup-instance_method" title="Doing::Util::Backup#select_backup (method)">#select_backup</a></span>
|
2026
|
+
<small>Doing::Util::Backup</small>
|
2027
|
+
</div>
|
2028
|
+
</li>
|
2029
|
+
|
2030
|
+
|
1679
2031
|
<li class="odd ">
|
2032
|
+
<div class="item">
|
2033
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#select_redo-instance_method" title="Doing::Util::Backup#select_redo (method)">#select_redo</a></span>
|
2034
|
+
<small>Doing::Util::Backup</small>
|
2035
|
+
</div>
|
2036
|
+
</li>
|
2037
|
+
|
2038
|
+
|
2039
|
+
<li class="even ">
|
1680
2040
|
<div class="item">
|
1681
2041
|
<span class='object_link'><a href="String.html#set_type-instance_method" title="String#set_type (method)">#set_type</a></span>
|
1682
2042
|
<small>String</small>
|
@@ -1684,7 +2044,7 @@
|
|
1684
2044
|
</li>
|
1685
2045
|
|
1686
2046
|
|
1687
|
-
<li class="
|
2047
|
+
<li class="odd ">
|
1688
2048
|
<div class="item">
|
1689
2049
|
<span class='object_link'><a href="Doing/Configuration.html#settings-instance_method" title="Doing::Configuration#settings (method)">#settings</a></span>
|
1690
2050
|
<small>Doing::Configuration</small>
|
@@ -1692,6 +2052,14 @@
|
|
1692
2052
|
</li>
|
1693
2053
|
|
1694
2054
|
|
2055
|
+
<li class="even ">
|
2056
|
+
<div class="item">
|
2057
|
+
<span class='object_link'><a href="PhraseParser/Query.html#should_clauses-instance_method" title="PhraseParser::Query#should_clauses (method)">#should_clauses</a></span>
|
2058
|
+
<small>PhraseParser::Query</small>
|
2059
|
+
</div>
|
2060
|
+
</li>
|
2061
|
+
|
2062
|
+
|
1695
2063
|
<li class="odd ">
|
1696
2064
|
<div class="item">
|
1697
2065
|
<span class='object_link'><a href="Doing/Item.html#should_finish%3F-instance_method" title="Doing::Item#should_finish? (method)">#should_finish?</a></span>
|
@@ -1701,6 +2069,14 @@
|
|
1701
2069
|
|
1702
2070
|
|
1703
2071
|
<li class="even ">
|
2072
|
+
<div class="item">
|
2073
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#should_terms-instance_method" title="BooleanTermParser::Query#should_terms (method)">#should_terms</a></span>
|
2074
|
+
<small>BooleanTermParser::Query</small>
|
2075
|
+
</div>
|
2076
|
+
</li>
|
2077
|
+
|
2078
|
+
|
2079
|
+
<li class="odd ">
|
1704
2080
|
<div class="item">
|
1705
2081
|
<span class='object_link'><a href="Doing/Item.html#should_time%3F-instance_method" title="Doing::Item#should_time? (method)">#should_time?</a></span>
|
1706
2082
|
<small>Doing::Item</small>
|
@@ -1708,7 +2084,23 @@
|
|
1708
2084
|
</li>
|
1709
2085
|
|
1710
2086
|
|
2087
|
+
<li class="even ">
|
2088
|
+
<div class="item">
|
2089
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#show_menu-instance_method" title="Doing::Util::Backup#show_menu (method)">#show_menu</a></span>
|
2090
|
+
<small>Doing::Util::Backup</small>
|
2091
|
+
</div>
|
2092
|
+
</li>
|
2093
|
+
|
2094
|
+
|
1711
2095
|
<li class="odd ">
|
2096
|
+
<div class="item">
|
2097
|
+
<span class='object_link'><a href="String.html#simple_wrap-instance_method" title="String#simple_wrap (method)">#simple_wrap</a></span>
|
2098
|
+
<small>String</small>
|
2099
|
+
</div>
|
2100
|
+
</li>
|
2101
|
+
|
2102
|
+
|
2103
|
+
<li class="even ">
|
1712
2104
|
<div class="item">
|
1713
2105
|
<span class='object_link'><a href="Status.html#status-instance_method" title="Status#status (method)">#status</a></span>
|
1714
2106
|
<small>Status</small>
|
@@ -1716,7 +2108,7 @@
|
|
1716
2108
|
</li>
|
1717
2109
|
|
1718
2110
|
|
1719
|
-
<li class="
|
2111
|
+
<li class="odd ">
|
1720
2112
|
<div class="item">
|
1721
2113
|
<span class='object_link'><a href="Doing/WWID.html#stop_start-instance_method" title="Doing::WWID#stop_start (method)">#stop_start</a></span>
|
1722
2114
|
<small>Doing::WWID</small>
|
@@ -1724,7 +2116,7 @@
|
|
1724
2116
|
</li>
|
1725
2117
|
|
1726
2118
|
|
1727
|
-
<li class="
|
2119
|
+
<li class="even ">
|
1728
2120
|
<div class="item">
|
1729
2121
|
<span class='object_link'><a href="Hash.html#stringify_keys-instance_method" title="Hash#stringify_keys (method)">#stringify_keys</a></span>
|
1730
2122
|
<small>Hash</small>
|
@@ -1732,7 +2124,7 @@
|
|
1732
2124
|
</li>
|
1733
2125
|
|
1734
2126
|
|
1735
|
-
<li class="
|
2127
|
+
<li class="odd ">
|
1736
2128
|
<div class="item">
|
1737
2129
|
<span class='object_link'><a href="Doing/Note.html#strip_lines-instance_method" title="Doing::Note#strip_lines (method)">#strip_lines</a></span>
|
1738
2130
|
<small>Doing::Note</small>
|
@@ -1740,7 +2132,7 @@
|
|
1740
2132
|
</li>
|
1741
2133
|
|
1742
2134
|
|
1743
|
-
<li class="
|
2135
|
+
<li class="even ">
|
1744
2136
|
<div class="item">
|
1745
2137
|
<span class='object_link'><a href="Doing/Note.html#strip_lines!-instance_method" title="Doing::Note#strip_lines! (method)">#strip_lines!</a></span>
|
1746
2138
|
<small>Doing::Note</small>
|
@@ -1748,7 +2140,7 @@
|
|
1748
2140
|
</li>
|
1749
2141
|
|
1750
2142
|
|
1751
|
-
<li class="
|
2143
|
+
<li class="odd ">
|
1752
2144
|
<div class="item">
|
1753
2145
|
<span class='object_link'><a href="Doing/Color.html#support%3F-instance_method" title="Doing::Color#support? (method)">#support?</a></span>
|
1754
2146
|
<small>Doing::Color</small>
|
@@ -1756,7 +2148,7 @@
|
|
1756
2148
|
</li>
|
1757
2149
|
|
1758
2150
|
|
1759
|
-
<li class="
|
2151
|
+
<li class="even ">
|
1760
2152
|
<div class="item">
|
1761
2153
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#switch-instance_method" title="GLI::Commands::MarkdownDocumentListener#switch (method)">#switch</a></span>
|
1762
2154
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -1764,7 +2156,23 @@
|
|
1764
2156
|
</li>
|
1765
2157
|
|
1766
2158
|
|
2159
|
+
<li class="odd ">
|
2160
|
+
<div class="item">
|
2161
|
+
<span class='object_link'><a href="BooleanTermParser/Operator.html#symbol-class_method" title="BooleanTermParser::Operator.symbol (method)">symbol</a></span>
|
2162
|
+
<small>BooleanTermParser::Operator</small>
|
2163
|
+
</div>
|
2164
|
+
</li>
|
2165
|
+
|
2166
|
+
|
1767
2167
|
<li class="even ">
|
2168
|
+
<div class="item">
|
2169
|
+
<span class='object_link'><a href="PhraseParser/Operator.html#symbol-class_method" title="PhraseParser::Operator.symbol (method)">symbol</a></span>
|
2170
|
+
<small>PhraseParser::Operator</small>
|
2171
|
+
</div>
|
2172
|
+
</li>
|
2173
|
+
|
2174
|
+
|
2175
|
+
<li class="odd ">
|
1768
2176
|
<div class="item">
|
1769
2177
|
<span class='object_link'><a href="Hash.html#symbolize_keys-instance_method" title="Hash#symbolize_keys (method)">#symbolize_keys</a></span>
|
1770
2178
|
<small>Hash</small>
|
@@ -1772,6 +2180,14 @@
|
|
1772
2180
|
</li>
|
1773
2181
|
|
1774
2182
|
|
2183
|
+
<li class="even ">
|
2184
|
+
<div class="item">
|
2185
|
+
<span class='object_link'><a href="String.html#tag-instance_method" title="String#tag (method)">#tag</a></span>
|
2186
|
+
<small>String</small>
|
2187
|
+
</div>
|
2188
|
+
</li>
|
2189
|
+
|
2190
|
+
|
1775
2191
|
<li class="odd ">
|
1776
2192
|
<div class="item">
|
1777
2193
|
<span class='object_link'><a href="Doing/Item.html#tag-instance_method" title="Doing::Item#tag (method)">#tag</a></span>
|
@@ -1782,7 +2198,7 @@
|
|
1782
2198
|
|
1783
2199
|
<li class="even ">
|
1784
2200
|
<div class="item">
|
1785
|
-
<span class='object_link'><a href="String.html#tag
|
2201
|
+
<span class='object_link'><a href="String.html#tag!-instance_method" title="String#tag! (method)">#tag!</a></span>
|
1786
2202
|
<small>String</small>
|
1787
2203
|
</div>
|
1788
2204
|
</li>
|
@@ -1790,8 +2206,8 @@
|
|
1790
2206
|
|
1791
2207
|
<li class="odd ">
|
1792
2208
|
<div class="item">
|
1793
|
-
<span class='object_link'><a href="
|
1794
|
-
<small>
|
2209
|
+
<span class='object_link'><a href="Doing/Item.html#tag_array-instance_method" title="Doing::Item#tag_array (method)">#tag_array</a></span>
|
2210
|
+
<small>Doing::Item</small>
|
1795
2211
|
</div>
|
1796
2212
|
</li>
|
1797
2213
|
|
@@ -1837,6 +2253,14 @@
|
|
1837
2253
|
|
1838
2254
|
|
1839
2255
|
<li class="odd ">
|
2256
|
+
<div class="item">
|
2257
|
+
<span class='object_link'><a href="Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>
|
2258
|
+
<small>Array</small>
|
2259
|
+
</div>
|
2260
|
+
</li>
|
2261
|
+
|
2262
|
+
|
2263
|
+
<li class="even ">
|
1840
2264
|
<div class="item">
|
1841
2265
|
<span class='object_link'><a href="Doing/LogAdapter.html#temp_level-instance_method" title="Doing::LogAdapter#temp_level (method)">#temp_level</a></span>
|
1842
2266
|
<small>Doing::LogAdapter</small>
|
@@ -1844,7 +2268,7 @@
|
|
1844
2268
|
</li>
|
1845
2269
|
|
1846
2270
|
|
1847
|
-
<li class="
|
2271
|
+
<li class="odd ">
|
1848
2272
|
<div class="item">
|
1849
2273
|
<span class='object_link'><a href="Doing/Plugins.html#template_for_trigger-class_method" title="Doing::Plugins.template_for_trigger (method)">template_for_trigger</a></span>
|
1850
2274
|
<small>Doing::Plugins</small>
|
@@ -1852,7 +2276,7 @@
|
|
1852
2276
|
</li>
|
1853
2277
|
|
1854
2278
|
|
1855
|
-
<li class="
|
2279
|
+
<li class="even ">
|
1856
2280
|
<div class="item">
|
1857
2281
|
<span class='object_link'><a href="Doing/Plugins.html#template_regex-class_method" title="Doing::Plugins.template_regex (method)">template_regex</a></span>
|
1858
2282
|
<small>Doing::Plugins</small>
|
@@ -1860,6 +2284,30 @@
|
|
1860
2284
|
</li>
|
1861
2285
|
|
1862
2286
|
|
2287
|
+
<li class="odd ">
|
2288
|
+
<div class="item">
|
2289
|
+
<span class='object_link'><a href="PhraseParser/TermClause.html#term-instance_method" title="PhraseParser::TermClause#term (method)">#term</a></span>
|
2290
|
+
<small>PhraseParser::TermClause</small>
|
2291
|
+
</div>
|
2292
|
+
</li>
|
2293
|
+
|
2294
|
+
|
2295
|
+
<li class="even ">
|
2296
|
+
<div class="item">
|
2297
|
+
<span class='object_link'><a href="BooleanTermParser/Clause.html#term-instance_method" title="BooleanTermParser::Clause#term (method)">#term</a></span>
|
2298
|
+
<small>BooleanTermParser::Clause</small>
|
2299
|
+
</div>
|
2300
|
+
</li>
|
2301
|
+
|
2302
|
+
|
2303
|
+
<li class="odd ">
|
2304
|
+
<div class="item">
|
2305
|
+
<span class='object_link'><a href="Time.html#time_ago-instance_method" title="Time#time_ago (method)">#time_ago</a></span>
|
2306
|
+
<small>Time</small>
|
2307
|
+
</div>
|
2308
|
+
</li>
|
2309
|
+
|
2310
|
+
|
1863
2311
|
<li class="even ">
|
1864
2312
|
<div class="item">
|
1865
2313
|
<span class='object_link'><a href="Doing/Item.html#title-instance_method" title="Doing::Item#title (method)">#title</a></span>
|
@@ -1876,6 +2324,22 @@
|
|
1876
2324
|
</li>
|
1877
2325
|
|
1878
2326
|
|
2327
|
+
<li class="even ">
|
2328
|
+
<div class="item">
|
2329
|
+
<span class='object_link'><a href="BooleanTermParser/Query.html#to_elasticsearch-instance_method" title="BooleanTermParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
2330
|
+
<small>BooleanTermParser::Query</small>
|
2331
|
+
</div>
|
2332
|
+
</li>
|
2333
|
+
|
2334
|
+
|
2335
|
+
<li class="odd ">
|
2336
|
+
<div class="item">
|
2337
|
+
<span class='object_link'><a href="PhraseParser/Query.html#to_elasticsearch-instance_method" title="PhraseParser::Query#to_elasticsearch (method)">#to_elasticsearch</a></span>
|
2338
|
+
<small>PhraseParser::Query</small>
|
2339
|
+
</div>
|
2340
|
+
</li>
|
2341
|
+
|
2342
|
+
|
1879
2343
|
<li class="even ">
|
1880
2344
|
<div class="item">
|
1881
2345
|
<span class='object_link'><a href="String.html#to_rx-instance_method" title="String#to_rx (method)">#to_rx</a></span>
|
@@ -1886,8 +2350,8 @@
|
|
1886
2350
|
|
1887
2351
|
<li class="odd ">
|
1888
2352
|
<div class="item">
|
1889
|
-
<span class='object_link'><a href="Doing/
|
1890
|
-
<small>Doing::
|
2353
|
+
<span class='object_link'><a href="Doing/Section.html#to_s-instance_method" title="Doing::Section#to_s (method)">#to_s</a></span>
|
2354
|
+
<small>Doing::Section</small>
|
1891
2355
|
</div>
|
1892
2356
|
</li>
|
1893
2357
|
|
@@ -1910,24 +2374,24 @@
|
|
1910
2374
|
|
1911
2375
|
<li class="even ">
|
1912
2376
|
<div class="item">
|
1913
|
-
<span class='object_link'><a href="Doing/
|
1914
|
-
<small>Doing::
|
2377
|
+
<span class='object_link'><a href="Doing/Item.html#to_s-instance_method" title="Doing::Item#to_s (method)">#to_s</a></span>
|
2378
|
+
<small>Doing::Item</small>
|
1915
2379
|
</div>
|
1916
2380
|
</li>
|
1917
2381
|
|
1918
2382
|
|
1919
2383
|
<li class="odd ">
|
1920
2384
|
<div class="item">
|
1921
|
-
<span class='object_link'><a href="
|
1922
|
-
<small>
|
2385
|
+
<span class='object_link'><a href="Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>
|
2386
|
+
<small>Array</small>
|
1923
2387
|
</div>
|
1924
2388
|
</li>
|
1925
2389
|
|
1926
2390
|
|
1927
2391
|
<li class="even ">
|
1928
2392
|
<div class="item">
|
1929
|
-
<span class='object_link'><a href="
|
1930
|
-
<small>
|
2393
|
+
<span class='object_link'><a href="String.html#to_tags-instance_method" title="String#to_tags (method)">#to_tags</a></span>
|
2394
|
+
<small>String</small>
|
1931
2395
|
</div>
|
1932
2396
|
</li>
|
1933
2397
|
|
@@ -1998,16 +2462,16 @@
|
|
1998
2462
|
|
1999
2463
|
<li class="odd ">
|
2000
2464
|
<div class="item">
|
2001
|
-
<span class='object_link'><a href="
|
2002
|
-
<small>
|
2465
|
+
<span class='object_link'><a href="Doing/Color.html#uncolor-instance_method" title="Doing::Color#uncolor (method)">#uncolor</a></span>
|
2466
|
+
<small>Doing::Color</small>
|
2003
2467
|
</div>
|
2004
2468
|
</li>
|
2005
2469
|
|
2006
2470
|
|
2007
2471
|
<li class="even ">
|
2008
2472
|
<div class="item">
|
2009
|
-
<span class='object_link'><a href="
|
2010
|
-
<small>
|
2473
|
+
<span class='object_link'><a href="String.html#uncolor-instance_method" title="String#uncolor (method)">#uncolor</a></span>
|
2474
|
+
<small>String</small>
|
2011
2475
|
</div>
|
2012
2476
|
</li>
|
2013
2477
|
|
@@ -2038,16 +2502,16 @@
|
|
2038
2502
|
|
2039
2503
|
<li class="even ">
|
2040
2504
|
<div class="item">
|
2041
|
-
<span class='object_link'><a href="Doing/
|
2042
|
-
<small>Doing::
|
2505
|
+
<span class='object_link'><a href="Doing/Util.html#user_home-instance_method" title="Doing::Util#user_home (method)">#user_home</a></span>
|
2506
|
+
<small>Doing::Util</small>
|
2043
2507
|
</div>
|
2044
2508
|
</li>
|
2045
2509
|
|
2046
2510
|
|
2047
2511
|
<li class="odd ">
|
2048
2512
|
<div class="item">
|
2049
|
-
<span class='object_link'><a href="Doing/
|
2050
|
-
<small>Doing::
|
2513
|
+
<span class='object_link'><a href="Doing/Plugins.html#user_home-class_method" title="Doing::Plugins.user_home (method)">user_home</a></span>
|
2514
|
+
<small>Doing::Plugins</small>
|
2051
2515
|
</div>
|
2052
2516
|
</li>
|
2053
2517
|
|
@@ -2061,6 +2525,14 @@
|
|
2061
2525
|
|
2062
2526
|
|
2063
2527
|
<li class="odd ">
|
2528
|
+
<div class="item">
|
2529
|
+
<span class='object_link'><a href="String.html#validate_color-instance_method" title="String#validate_color (method)">#validate_color</a></span>
|
2530
|
+
<small>String</small>
|
2531
|
+
</div>
|
2532
|
+
</li>
|
2533
|
+
|
2534
|
+
|
2535
|
+
<li class="even ">
|
2064
2536
|
<div class="item">
|
2065
2537
|
<span class='object_link'><a href="Doing/Plugins.html#validate_plugin-class_method" title="Doing::Plugins.validate_plugin (method)">validate_plugin</a></span>
|
2066
2538
|
<small>Doing::Plugins</small>
|
@@ -2068,7 +2540,7 @@
|
|
2068
2540
|
</li>
|
2069
2541
|
|
2070
2542
|
|
2071
|
-
<li class="
|
2543
|
+
<li class="odd ">
|
2072
2544
|
<div class="item">
|
2073
2545
|
<span class='object_link'><a href="Doing/Configuration.html#value_for_key-instance_method" title="Doing::Configuration#value_for_key (method)">#value_for_key</a></span>
|
2074
2546
|
<small>Doing::Configuration</small>
|
@@ -2076,7 +2548,7 @@
|
|
2076
2548
|
</li>
|
2077
2549
|
|
2078
2550
|
|
2079
|
-
<li class="
|
2551
|
+
<li class="even ">
|
2080
2552
|
<div class="item">
|
2081
2553
|
<span class='object_link'><a href="GLI/Commands/MarkdownDocumentListener.html#version-instance_method" title="GLI::Commands::MarkdownDocumentListener#version (method)">#version</a></span>
|
2082
2554
|
<small>GLI::Commands::MarkdownDocumentListener</small>
|
@@ -2084,7 +2556,7 @@
|
|
2084
2556
|
</li>
|
2085
2557
|
|
2086
2558
|
|
2087
|
-
<li class="
|
2559
|
+
<li class="odd ">
|
2088
2560
|
<div class="item">
|
2089
2561
|
<span class='object_link'><a href="Doing/WWID.html#views-instance_method" title="Doing::WWID#views (method)">#views</a></span>
|
2090
2562
|
<small>Doing::WWID</small>
|
@@ -2092,7 +2564,7 @@
|
|
2092
2564
|
</li>
|
2093
2565
|
|
2094
2566
|
|
2095
|
-
<li class="
|
2567
|
+
<li class="even ">
|
2096
2568
|
<div class="item">
|
2097
2569
|
<span class='object_link'><a href="Doing/LogAdapter.html#warn-instance_method" title="Doing::LogAdapter#warn (method)">#warn</a></span>
|
2098
2570
|
<small>Doing::LogAdapter</small>
|
@@ -2100,6 +2572,14 @@
|
|
2100
2572
|
</li>
|
2101
2573
|
|
2102
2574
|
|
2575
|
+
<li class="odd ">
|
2576
|
+
<div class="item">
|
2577
|
+
<span class='object_link'><a href="String.html#wildcard_to_rx-instance_method" title="String#wildcard_to_rx (method)">#wildcard_to_rx</a></span>
|
2578
|
+
<small>String</small>
|
2579
|
+
</div>
|
2580
|
+
</li>
|
2581
|
+
|
2582
|
+
|
2103
2583
|
<li class="even ">
|
2104
2584
|
<div class="item">
|
2105
2585
|
<span class='object_link'><a href="String.html#wrap-instance_method" title="String#wrap (method)">#wrap</a></span>
|
@@ -2125,6 +2605,14 @@
|
|
2125
2605
|
|
2126
2606
|
|
2127
2607
|
<li class="odd ">
|
2608
|
+
<div class="item">
|
2609
|
+
<span class='object_link'><a href="Doing/Util/Backup.html#write_backup-instance_method" title="Doing::Util::Backup#write_backup (method)">#write_backup</a></span>
|
2610
|
+
<small>Doing::Util::Backup</small>
|
2611
|
+
</div>
|
2612
|
+
</li>
|
2613
|
+
|
2614
|
+
|
2615
|
+
<li class="even ">
|
2128
2616
|
<div class="item">
|
2129
2617
|
<span class='object_link'><a href="Doing/Util.html#write_to_file-instance_method" title="Doing::Util#write_to_file (method)">#write_to_file</a></span>
|
2130
2618
|
<small>Doing::Util</small>
|
@@ -2132,7 +2620,7 @@
|
|
2132
2620
|
</li>
|
2133
2621
|
|
2134
2622
|
|
2135
|
-
<li class="
|
2623
|
+
<li class="odd ">
|
2136
2624
|
<div class="item">
|
2137
2625
|
<span class='object_link'><a href="Doing/WWID.html#yesterday-instance_method" title="Doing::WWID#yesterday (method)">#yesterday</a></span>
|
2138
2626
|
<small>Doing::WWID</small>
|
@@ -2140,7 +2628,7 @@
|
|
2140
2628
|
</li>
|
2141
2629
|
|
2142
2630
|
|
2143
|
-
<li class="
|
2631
|
+
<li class="even ">
|
2144
2632
|
<div class="item">
|
2145
2633
|
<span class='object_link'><a href="Doing/Prompt.html#yn-class_method" title="Doing::Prompt.yn (method)">yn</a></span>
|
2146
2634
|
<small>Doing::Prompt</small>
|