doing 2.1.19 → 2.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardoc/checksums +19 -16
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +70 -0
- data/Gemfile.lock +11 -11
- data/README.md +1 -1
- data/Rakefile +12 -4
- data/bin/doing +297 -234
- data/docs/doc/Array.html +7 -30
- data/docs/doc/BooleanTermParser/Clause.html +3 -3
- data/docs/doc/BooleanTermParser/Operator.html +3 -3
- data/docs/doc/BooleanTermParser/Query.html +3 -3
- data/docs/doc/BooleanTermParser/QueryParser.html +3 -3
- data/docs/doc/BooleanTermParser/QueryTransformer.html +3 -3
- data/docs/doc/BooleanTermParser.html +3 -3
- data/docs/doc/Doing/Color.html +3 -3
- data/docs/doc/Doing/Completion.html +3 -3
- data/docs/doc/Doing/Configuration.html +6 -5
- data/docs/doc/Doing/Errors/DoingNoTraceError.html +3 -3
- data/docs/doc/Doing/Errors/DoingRuntimeError.html +3 -3
- data/docs/doc/Doing/Errors/DoingStandardError.html +3 -3
- data/docs/doc/Doing/Errors/EmptyInput.html +3 -3
- data/docs/doc/Doing/Errors/NoResults.html +3 -3
- data/docs/doc/Doing/Errors/PluginException.html +3 -3
- data/docs/doc/Doing/Errors/UserCancelled.html +3 -3
- data/docs/doc/Doing/Errors/WrongCommand.html +3 -3
- data/docs/doc/Doing/Errors.html +3 -3
- data/docs/doc/Doing/Hooks.html +3 -3
- data/docs/doc/Doing/Item.html +3 -3
- data/docs/doc/Doing/Items.html +3 -3
- data/docs/doc/Doing/LogAdapter.html +3 -3
- data/docs/doc/Doing/Note.html +3 -3
- data/docs/doc/Doing/Pager.html +3 -3
- data/docs/doc/Doing/Plugins.html +3 -3
- data/docs/doc/Doing/Prompt.html +7 -7
- data/docs/doc/Doing/Section.html +3 -3
- data/docs/doc/Doing/TemplateString.html +4 -4
- data/docs/doc/Doing/Types.html +201 -0
- data/docs/doc/Doing/Util/Backup.html +3 -3
- data/docs/doc/Doing/Util.html +4 -7
- data/docs/doc/Doing/WWID.html +66 -8
- data/docs/doc/Doing.html +6 -6
- data/docs/doc/GLI/Commands/Help.html +185 -0
- data/docs/doc/GLI/Commands/MarkdownDocumentListener.html +3 -3
- data/docs/doc/GLI/Commands.html +7 -5
- data/docs/doc/GLI.html +6 -4
- data/docs/doc/Hash.html +80 -16
- data/docs/doc/Numeric.html +3 -3
- data/docs/doc/PhraseParser/Operator.html +3 -3
- data/docs/doc/PhraseParser/PhraseClause.html +3 -3
- data/docs/doc/PhraseParser/Query.html +3 -3
- data/docs/doc/PhraseParser/QueryParser.html +3 -3
- data/docs/doc/PhraseParser/QueryTransformer.html +3 -3
- data/docs/doc/PhraseParser/TermClause.html +3 -3
- data/docs/doc/PhraseParser.html +3 -3
- data/docs/doc/Status.html +3 -3
- data/docs/doc/String.html +195 -26
- data/docs/doc/Symbol.html +3 -3
- data/docs/doc/Time.html +3 -3
- data/docs/doc/_index.html +22 -8
- data/docs/doc/class_list.html +1 -1
- data/docs/doc/file.README.html +4 -4
- data/docs/doc/frames.html +1 -1
- data/docs/doc/index.html +4 -4
- data/docs/doc/method_list.html +334 -270
- data/docs/doc/top-level-namespace.html +3 -3
- data/docs/index.md +1 -1
- data/doing.gemspec +1 -1
- data/doing.rdoc +173 -15
- data/lib/completion/_doing.zsh +20 -20
- data/lib/completion/doing.bash +37 -26
- data/lib/completion/doing.fish +116 -17
- data/lib/doing/array.rb +5 -4
- data/lib/doing/array_chronify.rb +4 -3
- data/lib/doing/changelog/change.rb +115 -0
- data/lib/doing/changelog/changes.rb +73 -0
- data/lib/doing/changelog/entry.rb +21 -0
- data/lib/doing/changelog/version.rb +97 -0
- data/lib/doing/changelog.rb +6 -0
- data/lib/doing/completion/fish_completion.rb +82 -12
- data/lib/doing/configuration.rb +17 -8
- data/lib/doing/hash.rb +25 -6
- data/lib/doing/help_monkey_patch.rb +31 -0
- data/lib/doing/hooks.rb +5 -1
- data/lib/doing/item.rb +10 -25
- data/lib/doing/items.rb +3 -1
- data/lib/doing/log_adapter.rb +1 -1
- data/lib/doing/pager.rb +2 -2
- data/lib/doing/plugins/export/dayone_export.rb +1 -1
- data/lib/doing/plugins/export/markdown_export.rb +1 -1
- data/lib/doing/plugins/export/template_export.rb +9 -3
- data/lib/doing/prompt.rb +4 -2
- data/lib/doing/string.rb +40 -11
- data/lib/doing/string_chronify.rb +56 -18
- data/lib/doing/template_string.rb +7 -0
- data/lib/doing/types.rb +25 -0
- data/lib/doing/util.rb +2 -1
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +91 -67
- data/lib/doing.rb +2 -0
- data/lib/examples/commands/later.rb +32 -0
- data/lib/helpers/threaded_tests.rb +286 -0
- metadata +17 -6
data/docs/doc/Array.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Array
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -512,22 +512,6 @@ with</p>
|
|
|
512
512
|
<p class="tag_title">Parameters:</p>
|
|
513
513
|
<ul class="param">
|
|
514
514
|
|
|
515
|
-
<li>
|
|
516
|
-
|
|
517
|
-
<span class='name'>time</span>
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
<span class='type'>(<tt><span class='object_link'><a href="" title="Array (class)">Array</a></span></tt>)</span>
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
—
|
|
525
|
-
<div class='inline'><p>Array of [days, hours,
|
|
526
|
-
minutes]</p>
|
|
527
|
-
</div>
|
|
528
|
-
|
|
529
|
-
</li>
|
|
530
|
-
|
|
531
515
|
<li>
|
|
532
516
|
|
|
533
517
|
<span class='name'>format</span>
|
|
@@ -540,7 +524,8 @@ minutes]</p>
|
|
|
540
524
|
|
|
541
525
|
|
|
542
526
|
—
|
|
543
|
-
<div class='inline'><p>The format, :dhm, :hm,
|
|
527
|
+
<div class='inline'><p>The format, :dhm, :hm,
|
|
528
|
+
:m, :clock, :natural</p>
|
|
544
529
|
</div>
|
|
545
530
|
|
|
546
531
|
</li>
|
|
@@ -603,16 +588,8 @@ minutes]</p>
|
|
|
603
588
|
<p class="tag_title">Examples:</p>
|
|
604
589
|
|
|
605
590
|
|
|
606
|
-
|
|
607
|
-
</
|
|
608
|
-
|
|
609
|
-
<pre class="example code"><code></code></pre>
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
<p class="example_title"><div class='inline'><p><code>=> ['@one', '@two', '@three']</code></p>
|
|
613
|
-
</div></p>
|
|
614
|
-
|
|
615
|
-
<pre class="example code"><code></code></pre>
|
|
591
|
+
<pre class="example code"><code><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>one</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>@two</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>three</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_to_tags'>to_tags</span>
|
|
592
|
+
<span class='comment'># => ['@one', '@two', '@three']</span></code></pre>
|
|
616
593
|
|
|
617
594
|
</div>
|
|
618
595
|
|
|
@@ -654,9 +631,9 @@ minutes]</p>
|
|
|
654
631
|
</div>
|
|
655
632
|
|
|
656
633
|
<div id="footer">
|
|
657
|
-
Generated on
|
|
634
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
658
635
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
659
|
-
0.9.
|
|
636
|
+
0.9.27 (ruby-3.0.1).
|
|
660
637
|
</div>
|
|
661
638
|
|
|
662
639
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: BooleanTermParser::Clause
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -283,9 +283,9 @@
|
|
|
283
283
|
</div>
|
|
284
284
|
|
|
285
285
|
<div id="footer">
|
|
286
|
-
Generated on
|
|
286
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
287
287
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
288
|
-
0.9.
|
|
288
|
+
0.9.27 (ruby-3.0.1).
|
|
289
289
|
</div>
|
|
290
290
|
|
|
291
291
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: BooleanTermParser::Operator
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -162,9 +162,9 @@
|
|
|
162
162
|
</div>
|
|
163
163
|
|
|
164
164
|
<div id="footer">
|
|
165
|
-
Generated on
|
|
165
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
166
166
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
167
|
-
0.9.
|
|
167
|
+
0.9.27 (ruby-3.0.1).
|
|
168
168
|
</div>
|
|
169
169
|
|
|
170
170
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: BooleanTermParser::Query
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -407,9 +407,9 @@
|
|
|
407
407
|
</div>
|
|
408
408
|
|
|
409
409
|
<div id="footer">
|
|
410
|
-
Generated on
|
|
410
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
411
411
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
412
|
-
0.9.
|
|
412
|
+
0.9.27 (ruby-3.0.1).
|
|
413
413
|
</div>
|
|
414
414
|
|
|
415
415
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: BooleanTermParser::QueryParser
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -125,9 +125,9 @@ parser. In order to do that, a new "clause" node is added to the parse
|
|
|
125
125
|
</div>
|
|
126
126
|
|
|
127
127
|
<div id="footer">
|
|
128
|
-
Generated on
|
|
128
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
129
129
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
130
|
-
0.9.
|
|
130
|
+
0.9.27 (ruby-3.0.1).
|
|
131
131
|
</div>
|
|
132
132
|
|
|
133
133
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: BooleanTermParser::QueryTransformer
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
</div>
|
|
115
115
|
|
|
116
116
|
<div id="footer">
|
|
117
|
-
Generated on
|
|
117
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
118
118
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
119
|
-
0.9.
|
|
119
|
+
0.9.27 (ruby-3.0.1).
|
|
120
120
|
</div>
|
|
121
121
|
|
|
122
122
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: BooleanTermParser
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
</div>
|
|
106
106
|
|
|
107
107
|
<div id="footer">
|
|
108
|
-
Generated on
|
|
108
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
109
109
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
110
|
-
0.9.
|
|
110
|
+
0.9.27 (ruby-3.0.1).
|
|
111
111
|
</div>
|
|
112
112
|
|
|
113
113
|
</div>
|
data/docs/doc/Doing/Color.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Doing::Color
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -512,9 +512,9 @@ ANSI-sequences are stripped from the string.</p>
|
|
|
512
512
|
</div>
|
|
513
513
|
|
|
514
514
|
<div id="footer">
|
|
515
|
-
Generated on
|
|
515
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
516
516
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
517
|
-
0.9.
|
|
517
|
+
0.9.27 (ruby-3.0.1).
|
|
518
518
|
</div>
|
|
519
519
|
|
|
520
520
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Doing::Completion
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -206,9 +206,9 @@ stdout</p>
|
|
|
206
206
|
</div>
|
|
207
207
|
|
|
208
208
|
<div id="footer">
|
|
209
|
-
Generated on
|
|
209
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
210
210
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
211
|
-
0.9.
|
|
211
|
+
0.9.27 (ruby-3.0.1).
|
|
212
212
|
</div>
|
|
213
213
|
|
|
214
214
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Doing::Configuration
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -141,6 +141,7 @@
|
|
|
141
141
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>command_path</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='const'>File</span><span class='period'>.</span><span class='id identifier rubyid_join'>join</span><span class='lparen'>(</span><span class='const'><span class='object_link'><a href="Util.html" title="Doing::Util (module)">Util</a></span></span><span class='period'>.</span><span class='id identifier rubyid_user_home'><span class='object_link'><a href="Util.html#user_home-instance_method" title="Doing::Util#user_home (method)">user_home</a></span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>.config</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>doing</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>commands</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span>
|
|
142
142
|
<span class='rbrace'>}</span><span class='comma'>,</span>
|
|
143
143
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>doing_file</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>~/.local/share/doing/what_was_i_doing.md</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
144
|
+
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>doing_file_sort</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>desc</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
144
145
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>backup_dir</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>~/.local/share/doing/doing_backup</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
145
146
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>history_size</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='int'>15</span><span class='comma'>,</span>
|
|
146
147
|
<span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>current_section</span><span class='tstring_end'>'</span></span> <span class='op'>=></span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>Currently</span><span class='tstring_end'>'</span></span><span class='comma'>,</span>
|
|
@@ -533,7 +534,7 @@
|
|
|
533
534
|
<li class="public ">
|
|
534
535
|
<span class="summary_signature">
|
|
535
536
|
|
|
536
|
-
<a href="#resolve_key_path-instance_method" title="#resolve_key_path (instance method)">#<strong>resolve_key_path</strong>(keypath, create: false) ⇒ Array </a>
|
|
537
|
+
<a href="#resolve_key_path-instance_method" title="#resolve_key_path (instance method)">#<strong>resolve_key_path</strong>(keypath, create: false, distance: 2) ⇒ Array </a>
|
|
537
538
|
|
|
538
539
|
|
|
539
540
|
|
|
@@ -955,7 +956,7 @@ defaults.</p>
|
|
|
955
956
|
<div class="method_details ">
|
|
956
957
|
<h3 class="signature " id="resolve_key_path-instance_method">
|
|
957
958
|
|
|
958
|
-
#<strong>resolve_key_path</strong>(keypath, create: false) ⇒ <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>
|
|
959
|
+
#<strong>resolve_key_path</strong>(keypath, create: false, distance: 2) ⇒ <tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>
|
|
959
960
|
|
|
960
961
|
|
|
961
962
|
|
|
@@ -1105,9 +1106,9 @@ matched, first match wins)</p>
|
|
|
1105
1106
|
</div>
|
|
1106
1107
|
|
|
1107
1108
|
<div id="footer">
|
|
1108
|
-
Generated on
|
|
1109
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
1109
1110
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1110
|
-
0.9.
|
|
1111
|
+
0.9.27 (ruby-3.0.1).
|
|
1111
1112
|
</div>
|
|
1112
1113
|
|
|
1113
1114
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::DoingNoTraceError
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::DoingRuntimeError
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::DoingStandardError
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::EmptyInput
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::NoResults
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::PluginException
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -238,9 +238,9 @@
|
|
|
238
238
|
</div>
|
|
239
239
|
|
|
240
240
|
<div id="footer">
|
|
241
|
-
Generated on
|
|
241
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
242
242
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
243
|
-
0.9.
|
|
243
|
+
0.9.27 (ruby-3.0.1).
|
|
244
244
|
</div>
|
|
245
245
|
|
|
246
246
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::UserCancelled
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Exception: Doing::Errors::WrongCommand
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -176,9 +176,9 @@
|
|
|
176
176
|
</div>
|
|
177
177
|
|
|
178
178
|
<div id="footer">
|
|
179
|
-
Generated on
|
|
179
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
180
180
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
181
|
-
0.9.
|
|
181
|
+
0.9.27 (ruby-3.0.1).
|
|
182
182
|
</div>
|
|
183
183
|
|
|
184
184
|
</div>
|
data/docs/doc/Doing/Errors.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Doing::Errors
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -181,9 +181,9 @@
|
|
|
181
181
|
</div>
|
|
182
182
|
|
|
183
183
|
<div id="footer">
|
|
184
|
-
Generated on
|
|
184
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
185
185
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
186
|
-
0.9.
|
|
186
|
+
0.9.27 (ruby-3.0.1).
|
|
187
187
|
</div>
|
|
188
188
|
|
|
189
189
|
</div>
|
data/docs/doc/Doing/Hooks.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Doing::Hooks
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -354,9 +354,9 @@
|
|
|
354
354
|
</div>
|
|
355
355
|
|
|
356
356
|
<div id="footer">
|
|
357
|
-
Generated on
|
|
357
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
358
358
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
359
|
-
0.9.
|
|
359
|
+
0.9.27 (ruby-3.0.1).
|
|
360
360
|
</div>
|
|
361
361
|
|
|
362
362
|
</div>
|
data/docs/doc/Doing/Item.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Doing::Item
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -2195,9 +2195,9 @@ thus should not receive a date on the @done tag</p>
|
|
|
2195
2195
|
</div>
|
|
2196
2196
|
|
|
2197
2197
|
<div id="footer">
|
|
2198
|
-
Generated on
|
|
2198
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
2199
2199
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
2200
|
-
0.9.
|
|
2200
|
+
0.9.27 (ruby-3.0.1).
|
|
2201
2201
|
</div>
|
|
2202
2202
|
|
|
2203
2203
|
</div>
|
data/docs/doc/Doing/Items.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Doing::Items
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -890,9 +890,9 @@ specified section</p>
|
|
|
890
890
|
</div>
|
|
891
891
|
|
|
892
892
|
<div id="footer">
|
|
893
|
-
Generated on
|
|
893
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
894
894
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
895
|
-
0.9.
|
|
895
|
+
0.9.27 (ruby-3.0.1).
|
|
896
896
|
</div>
|
|
897
897
|
|
|
898
898
|
</div>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Doing::LogAdapter
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -1797,9 +1797,9 @@ message (optional)</p>
|
|
|
1797
1797
|
</div>
|
|
1798
1798
|
|
|
1799
1799
|
<div id="footer">
|
|
1800
|
-
Generated on
|
|
1800
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
1801
1801
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1802
|
-
0.9.
|
|
1802
|
+
0.9.27 (ruby-3.0.1).
|
|
1803
1803
|
</div>
|
|
1804
1804
|
|
|
1805
1805
|
</div>
|
data/docs/doc/Doing/Note.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Class: Doing::Note
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -627,9 +627,9 @@ content</p>
|
|
|
627
627
|
</div>
|
|
628
628
|
|
|
629
629
|
<div id="footer">
|
|
630
|
-
Generated on
|
|
630
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
631
631
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
632
|
-
0.9.
|
|
632
|
+
0.9.27 (ruby-3.0.1).
|
|
633
633
|
</div>
|
|
634
634
|
|
|
635
635
|
</div>
|
data/docs/doc/Doing/Pager.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Doing::Pager
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -296,9 +296,9 @@ STDOUT</p>
|
|
|
296
296
|
</div>
|
|
297
297
|
|
|
298
298
|
<div id="footer">
|
|
299
|
-
Generated on
|
|
299
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
300
300
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
301
|
-
0.9.
|
|
301
|
+
0.9.27 (ruby-3.0.1).
|
|
302
302
|
</div>
|
|
303
303
|
|
|
304
304
|
</div>
|
data/docs/doc/Doing/Plugins.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>
|
|
7
7
|
Module: Doing::Plugins
|
|
8
8
|
|
|
9
|
-
— Documentation by YARD 0.9.
|
|
9
|
+
— Documentation by YARD 0.9.27
|
|
10
10
|
|
|
11
11
|
</title>
|
|
12
12
|
|
|
@@ -1235,9 +1235,9 @@ e.g. :imp => :import</p>
|
|
|
1235
1235
|
</div>
|
|
1236
1236
|
|
|
1237
1237
|
<div id="footer">
|
|
1238
|
-
Generated on
|
|
1238
|
+
Generated on Sat Jan 22 17:30:14 2022 by
|
|
1239
1239
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1240
|
-
0.9.
|
|
1240
|
+
0.9.27 (ruby-3.0.1).
|
|
1241
1241
|
</div>
|
|
1242
1242
|
|
|
1243
1243
|
</div>
|