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
@@ -139,34 +139,6 @@
|
|
139
139
|
<span class="summary_desc"><div class='inline'><p>Returns the value of attribute date.</p>
|
140
140
|
</div></span>
|
141
141
|
|
142
|
-
</li>
|
143
|
-
|
144
|
-
|
145
|
-
<li class="public ">
|
146
|
-
<span class="summary_signature">
|
147
|
-
|
148
|
-
<a href="#id-instance_method" title="#id (instance method)">#<strong>id</strong> ⇒ String </a>
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
</span>
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
<span class="note title readonly">readonly</span>
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
<span class="summary_desc"><div class='inline'><p>Generate a hash that represents the entry.</p>
|
168
|
-
</div></span>
|
169
|
-
|
170
142
|
</li>
|
171
143
|
|
172
144
|
|
@@ -327,6 +299,51 @@
|
|
327
299
|
<span class="summary_desc"><div class='inline'><p>Test for equality between items.</p>
|
328
300
|
</div></span>
|
329
301
|
|
302
|
+
</li>
|
303
|
+
|
304
|
+
|
305
|
+
<li class="public ">
|
306
|
+
<span class="summary_signature">
|
307
|
+
|
308
|
+
<a href="#id-instance_method" title="#id (instance method)">#<strong>id</strong> ⇒ String </a>
|
309
|
+
|
310
|
+
|
311
|
+
|
312
|
+
</span>
|
313
|
+
|
314
|
+
|
315
|
+
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
|
320
|
+
|
321
|
+
|
322
|
+
<span class="summary_desc"><div class='inline'><p>Generate a hash that represents the entry.</p>
|
323
|
+
</div></span>
|
324
|
+
|
325
|
+
</li>
|
326
|
+
|
327
|
+
|
328
|
+
<li class="public ">
|
329
|
+
<span class="summary_signature">
|
330
|
+
|
331
|
+
<a href="#ignore_case-instance_method" title="#ignore_case (instance method)">#<strong>ignore_case</strong>(search, case_type) ⇒ Object </a>
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
</span>
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
346
|
+
|
330
347
|
</li>
|
331
348
|
|
332
349
|
|
@@ -450,7 +467,7 @@
|
|
450
467
|
<li class="public ">
|
451
468
|
<span class="summary_signature">
|
452
469
|
|
453
|
-
<a href="#search-instance_method" title="#search (instance method)">#<strong>search</strong>(search, distance:
|
470
|
+
<a href="#search-instance_method" title="#search (instance method)">#<strong>search</strong>(search, distance: nil, negate: false, case_type: nil) ⇒ Boolean </a>
|
454
471
|
|
455
472
|
|
456
473
|
|
@@ -534,6 +551,28 @@
|
|
534
551
|
<span class="summary_desc"><div class='inline'><p>Add (or remove) tags from the title of the item.</p>
|
535
552
|
</div></span>
|
536
553
|
|
554
|
+
</li>
|
555
|
+
|
556
|
+
|
557
|
+
<li class="public ">
|
558
|
+
<span class="summary_signature">
|
559
|
+
|
560
|
+
<a href="#tag_array-instance_method" title="#tag_array (instance method)">#<strong>tag_array</strong> ⇒ Object </a>
|
561
|
+
|
562
|
+
|
563
|
+
|
564
|
+
</span>
|
565
|
+
|
566
|
+
|
567
|
+
|
568
|
+
|
569
|
+
|
570
|
+
|
571
|
+
|
572
|
+
|
573
|
+
|
574
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
575
|
+
|
537
576
|
</li>
|
538
577
|
|
539
578
|
|
@@ -729,47 +768,6 @@ the item belongs</p>
|
|
729
768
|
<div class="tags">
|
730
769
|
|
731
770
|
|
732
|
-
</div>
|
733
|
-
</div>
|
734
|
-
|
735
|
-
|
736
|
-
<span id=""></span>
|
737
|
-
<div class="method_details ">
|
738
|
-
<h3 class="signature " id="id-instance_method">
|
739
|
-
|
740
|
-
#<strong>id</strong> ⇒ <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt> <span class="extras">(readonly)</span>
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
</h3><div class="docstring">
|
747
|
-
<div class="discussion">
|
748
|
-
<p>Generate a hash that represents the entry</p>
|
749
|
-
|
750
|
-
|
751
|
-
</div>
|
752
|
-
</div>
|
753
|
-
<div class="tags">
|
754
|
-
|
755
|
-
<p class="tag_title">Returns:</p>
|
756
|
-
<ul class="return">
|
757
|
-
|
758
|
-
<li>
|
759
|
-
|
760
|
-
|
761
|
-
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
—
|
766
|
-
<div class='inline'><p>entry hash</p>
|
767
|
-
</div>
|
768
|
-
|
769
|
-
</li>
|
770
|
-
|
771
|
-
</ul>
|
772
|
-
|
773
771
|
</div>
|
774
772
|
</div>
|
775
773
|
|
@@ -969,6 +967,57 @@ the item belongs</p>
|
|
969
967
|
</ul>
|
970
968
|
|
971
969
|
</div>
|
970
|
+
</div>
|
971
|
+
|
972
|
+
<div class="method_details ">
|
973
|
+
<h3 class="signature " id="id-instance_method">
|
974
|
+
|
975
|
+
#<strong>id</strong> ⇒ <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>
|
976
|
+
|
977
|
+
|
978
|
+
|
979
|
+
|
980
|
+
|
981
|
+
</h3><div class="docstring">
|
982
|
+
<div class="discussion">
|
983
|
+
<p>Generate a hash that represents the entry</p>
|
984
|
+
|
985
|
+
|
986
|
+
</div>
|
987
|
+
</div>
|
988
|
+
<div class="tags">
|
989
|
+
|
990
|
+
<p class="tag_title">Returns:</p>
|
991
|
+
<ul class="return">
|
992
|
+
|
993
|
+
<li>
|
994
|
+
|
995
|
+
|
996
|
+
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
|
997
|
+
|
998
|
+
|
999
|
+
|
1000
|
+
—
|
1001
|
+
<div class='inline'><p>entry hash</p>
|
1002
|
+
</div>
|
1003
|
+
|
1004
|
+
</li>
|
1005
|
+
|
1006
|
+
</ul>
|
1007
|
+
|
1008
|
+
</div>
|
1009
|
+
</div>
|
1010
|
+
|
1011
|
+
<div class="method_details ">
|
1012
|
+
<h3 class="signature " id="ignore_case-instance_method">
|
1013
|
+
|
1014
|
+
#<strong>ignore_case</strong>(search, case_type) ⇒ <tt>Object</tt>
|
1015
|
+
|
1016
|
+
|
1017
|
+
|
1018
|
+
|
1019
|
+
|
1020
|
+
</h3>
|
972
1021
|
</div>
|
973
1022
|
|
974
1023
|
<div class="method_details ">
|
@@ -1225,7 +1274,7 @@ value overlaps with another item's</p>
|
|
1225
1274
|
<div class="method_details ">
|
1226
1275
|
<h3 class="signature " id="search-instance_method">
|
1227
1276
|
|
1228
|
-
#<strong>search</strong>(search, distance:
|
1277
|
+
#<strong>search</strong>(search, distance: nil, negate: false, case_type: nil) ⇒ <tt>Boolean</tt>
|
1229
1278
|
|
1230
1279
|
|
1231
1280
|
|
@@ -1282,7 +1331,7 @@ value overlaps with another item's</p>
|
|
1282
1331
|
<span class='type'>(<tt><span class='object_link'><a href="../Symbol.html" title="Symbol (class)">Symbol</a></span></tt>)</span>
|
1283
1332
|
|
1284
1333
|
|
1285
|
-
<em class="default">(defaults to: <tt
|
1334
|
+
<em class="default">(defaults to: <tt>nil</tt>)</em>
|
1286
1335
|
|
1287
1336
|
|
1288
1337
|
—
|
@@ -1421,7 +1470,7 @@ type (:sensitive,
|
|
1421
1470
|
|
1422
1471
|
<li>
|
1423
1472
|
|
1424
|
-
<span class='name'
|
1473
|
+
<span class='name'>options</span>
|
1425
1474
|
|
1426
1475
|
|
1427
1476
|
<span class='type'></span>
|
@@ -1434,21 +1483,6 @@ type (:sensitive,
|
|
1434
1483
|
|
1435
1484
|
</li>
|
1436
1485
|
|
1437
|
-
<li>
|
1438
|
-
|
1439
|
-
<span class='name'>options</span>
|
1440
|
-
|
1441
|
-
|
1442
|
-
<span class='type'>(<tt><span class='object_link'><a href="../Hash.html" title="Hash (class)">Hash</a></span></tt>)</span>
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
—
|
1447
|
-
<div class='inline'><p>a customizable set of options</p>
|
1448
|
-
</div>
|
1449
|
-
|
1450
|
-
</li>
|
1451
|
-
|
1452
1486
|
</ul>
|
1453
1487
|
|
1454
1488
|
|
@@ -1548,6 +1582,18 @@ type (:sensitive,
|
|
1548
1582
|
|
1549
1583
|
|
1550
1584
|
</div>
|
1585
|
+
</div>
|
1586
|
+
|
1587
|
+
<div class="method_details ">
|
1588
|
+
<h3 class="signature " id="tag_array-instance_method">
|
1589
|
+
|
1590
|
+
#<strong>tag_array</strong> ⇒ <tt>Object</tt>
|
1591
|
+
|
1592
|
+
|
1593
|
+
|
1594
|
+
|
1595
|
+
|
1596
|
+
</h3>
|
1551
1597
|
</div>
|
1552
1598
|
|
1553
1599
|
<div class="method_details ">
|
@@ -1708,7 +1754,7 @@ type (:sensitive,
|
|
1708
1754
|
</div>
|
1709
1755
|
|
1710
1756
|
<div id="footer">
|
1711
|
-
Generated on
|
1757
|
+
Generated on Mon Dec 20 15:39:46 2021 by
|
1712
1758
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1713
1759
|
0.9.26 (ruby-3.0.1).
|
1714
1760
|
</div>
|
@@ -177,6 +177,28 @@
|
|
177
177
|
<span class="summary_desc"><div class='inline'><p>Add a new section to the sections array.</p>
|
178
178
|
</div></span>
|
179
179
|
|
180
|
+
</li>
|
181
|
+
|
182
|
+
|
183
|
+
<li class="public ">
|
184
|
+
<span class="summary_signature">
|
185
|
+
|
186
|
+
<a href="#all_tags-instance_method" title="#all_tags (instance method)">#<strong>all_tags</strong> ⇒ Object </a>
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
</span>
|
191
|
+
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
201
|
+
|
180
202
|
</li>
|
181
203
|
|
182
204
|
|
@@ -356,7 +378,7 @@
|
|
356
378
|
|
357
379
|
|
358
380
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></h3>
|
359
|
-
<p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
|
381
|
+
<p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
|
360
382
|
<div id="constructor_details" class="method_details_list">
|
361
383
|
<h2>Constructor Details</h2>
|
362
384
|
|
@@ -497,6 +519,18 @@ creation of the section.</p>
|
|
497
519
|
</ul>
|
498
520
|
|
499
521
|
</div>
|
522
|
+
</div>
|
523
|
+
|
524
|
+
<div class="method_details ">
|
525
|
+
<h3 class="signature " id="all_tags-instance_method">
|
526
|
+
|
527
|
+
#<strong>all_tags</strong> ⇒ <tt>Object</tt>
|
528
|
+
|
529
|
+
|
530
|
+
|
531
|
+
|
532
|
+
|
533
|
+
</h3>
|
500
534
|
</div>
|
501
535
|
|
502
536
|
<div class="method_details ">
|
@@ -792,7 +826,7 @@ specified section</p>
|
|
792
826
|
</div>
|
793
827
|
|
794
828
|
<div id="footer">
|
795
|
-
Generated on
|
829
|
+
Generated on Mon Dec 20 15:39:46 2021 by
|
796
830
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
797
831
|
0.9.26 (ruby-3.0.1).
|
798
832
|
</div>
|
@@ -149,6 +149,7 @@
|
|
149
149
|
</span><span class='tstring_content'>rotated</span><span class='words_sep'>
|
150
150
|
</span><span class='tstring_content'>skipped</span><span class='words_sep'>
|
151
151
|
</span><span class='tstring_content'>updated</span><span class='words_sep'>
|
152
|
+
</span><span class='tstring_content'>exported</span><span class='words_sep'>
|
152
153
|
</span><span class='tstring_end'>]</span></span><span class='period'>.</span><span class='id identifier rubyid_freeze'>freeze</span></pre></dd>
|
153
154
|
|
154
155
|
</dl>
|
@@ -353,6 +354,28 @@
|
|
353
354
|
|
354
355
|
|
355
356
|
|
357
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
358
|
+
|
359
|
+
</li>
|
360
|
+
|
361
|
+
|
362
|
+
<li class="public ">
|
363
|
+
<span class="summary_signature">
|
364
|
+
|
365
|
+
<a href="#benchmark-instance_method" title="#benchmark (instance method)">#<strong>benchmark</strong>(key, state) ⇒ Object </a>
|
366
|
+
|
367
|
+
|
368
|
+
|
369
|
+
</span>
|
370
|
+
|
371
|
+
|
372
|
+
|
373
|
+
|
374
|
+
|
375
|
+
|
376
|
+
|
377
|
+
|
378
|
+
|
356
379
|
<span class="summary_desc"><div class='inline'></div></span>
|
357
380
|
|
358
381
|
</li>
|
@@ -494,6 +517,28 @@
|
|
494
517
|
<span class="summary_desc"><div class='inline'><p>Create a new instance of a log writer.</p>
|
495
518
|
</div></span>
|
496
519
|
|
520
|
+
</li>
|
521
|
+
|
522
|
+
|
523
|
+
<li class="public ">
|
524
|
+
<span class="summary_signature">
|
525
|
+
|
526
|
+
<a href="#log_benchmarks-instance_method" title="#log_benchmarks (instance method)">#<strong>log_benchmarks</strong> ⇒ Object </a>
|
527
|
+
|
528
|
+
|
529
|
+
|
530
|
+
</span>
|
531
|
+
|
532
|
+
|
533
|
+
|
534
|
+
|
535
|
+
|
536
|
+
|
537
|
+
|
538
|
+
|
539
|
+
|
540
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
541
|
+
|
497
542
|
</li>
|
498
543
|
|
499
544
|
|
@@ -949,6 +994,18 @@ omitted)</p>
|
|
949
994
|
|
950
995
|
|
951
996
|
|
997
|
+
</h3>
|
998
|
+
</div>
|
999
|
+
|
1000
|
+
<div class="method_details ">
|
1001
|
+
<h3 class="signature " id="benchmark-instance_method">
|
1002
|
+
|
1003
|
+
#<strong>benchmark</strong>(key, state) ⇒ <tt>Object</tt>
|
1004
|
+
|
1005
|
+
|
1006
|
+
|
1007
|
+
|
1008
|
+
|
952
1009
|
</h3>
|
953
1010
|
</div>
|
954
1011
|
|
@@ -1290,6 +1347,18 @@ omitted)</p>
|
|
1290
1347
|
</ul>
|
1291
1348
|
|
1292
1349
|
</div>
|
1350
|
+
</div>
|
1351
|
+
|
1352
|
+
<div class="method_details ">
|
1353
|
+
<h3 class="signature " id="log_benchmarks-instance_method">
|
1354
|
+
|
1355
|
+
#<strong>log_benchmarks</strong> ⇒ <tt>Object</tt>
|
1356
|
+
|
1357
|
+
|
1358
|
+
|
1359
|
+
|
1360
|
+
|
1361
|
+
</h3>
|
1293
1362
|
</div>
|
1294
1363
|
|
1295
1364
|
<div class="method_details ">
|
@@ -1728,7 +1797,7 @@ message (optional)</p>
|
|
1728
1797
|
</div>
|
1729
1798
|
|
1730
1799
|
<div id="footer">
|
1731
|
-
Generated on
|
1800
|
+
Generated on Mon Dec 20 15:39:46 2021 by
|
1732
1801
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1733
1802
|
0.9.26 (ruby-3.0.1).
|
1734
1803
|
</div>
|
@@ -146,52 +146,6 @@
|
|
146
146
|
<span class="summary_desc"><div class='inline'><p>Add note contents, optionally replacing existing note.</p>
|
147
147
|
</div></span>
|
148
148
|
|
149
|
-
</li>
|
150
|
-
|
151
|
-
|
152
|
-
<li class="public ">
|
153
|
-
<span class="summary_signature">
|
154
|
-
|
155
|
-
<a href="#append-instance_method" title="#append (instance method)">#<strong>append</strong>(lines) ⇒ Object </a>
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
</span>
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
<span class="summary_desc"><div class='inline'><p>Append an array of strings to note.</p>
|
170
|
-
</div></span>
|
171
|
-
|
172
|
-
</li>
|
173
|
-
|
174
|
-
|
175
|
-
<li class="public ">
|
176
|
-
<span class="summary_signature">
|
177
|
-
|
178
|
-
<a href="#append_string-instance_method" title="#append_string (instance method)">#<strong>append_string</strong>(input) ⇒ Object </a>
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
</span>
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
<span class="summary_desc"><div class='inline'><p>Append a string to the note content.</p>
|
193
|
-
</div></span>
|
194
|
-
|
195
149
|
</li>
|
196
150
|
|
197
151
|
|
@@ -212,7 +166,7 @@
|
|
212
166
|
|
213
167
|
|
214
168
|
|
215
|
-
<span class="summary_desc"><div class='inline'><p>Remove blank lines and
|
169
|
+
<span class="summary_desc"><div class='inline'><p>Remove blank lines and comments (#).</p>
|
216
170
|
</div></span>
|
217
171
|
|
218
172
|
</li>
|
@@ -369,7 +323,7 @@
|
|
369
323
|
|
370
324
|
|
371
325
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></h3>
|
372
|
-
<p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
|
326
|
+
<p class="inherited"><span class='object_link'><a href="../Array.html#highlight_tags-instance_method" title="Array#highlight_tags (method)">#highlight_tags</a></span>, <span class='object_link'><a href="../Array.html#log_tags-instance_method" title="Array#log_tags (method)">#log_tags</a></span>, <span class='object_link'><a href="../Array.html#nested_hash-instance_method" title="Array#nested_hash (method)">#nested_hash</a></span>, <span class='object_link'><a href="../Array.html#tags_to_array-instance_method" title="Array#tags_to_array (method)">#tags_to_array</a></span>, <span class='object_link'><a href="../Array.html#to_tags-instance_method" title="Array#to_tags (method)">#to_tags</a></span>, <span class='object_link'><a href="../Array.html#to_tags!-instance_method" title="Array#to_tags! (method)">#to_tags!</a></span></p>
|
373
327
|
<div id="constructor_details" class="method_details_list">
|
374
328
|
<h2>Constructor Details</h2>
|
375
329
|
|
@@ -455,7 +409,7 @@ or array</p>
|
|
455
409
|
|
456
410
|
—
|
457
411
|
<div class='inline'><p>The note to add, can be
|
458
|
-
|
412
|
+
String, Array, or Note</p>
|
459
413
|
</div>
|
460
414
|
|
461
415
|
</li>
|
@@ -481,89 +435,6 @@ content</p>
|
|
481
435
|
</ul>
|
482
436
|
|
483
437
|
|
484
|
-
</div>
|
485
|
-
</div>
|
486
|
-
|
487
|
-
<div class="method_details ">
|
488
|
-
<h3 class="signature " id="append-instance_method">
|
489
|
-
|
490
|
-
#<strong>append</strong>(lines) ⇒ <tt>Object</tt>
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
</h3><div class="docstring">
|
497
|
-
<div class="discussion">
|
498
|
-
<p>Append an array of strings to note</p>
|
499
|
-
|
500
|
-
|
501
|
-
</div>
|
502
|
-
</div>
|
503
|
-
<div class="tags">
|
504
|
-
<p class="tag_title">Parameters:</p>
|
505
|
-
<ul class="param">
|
506
|
-
|
507
|
-
<li>
|
508
|
-
|
509
|
-
<span class='name'>lines</span>
|
510
|
-
|
511
|
-
|
512
|
-
<span class='type'>(<tt><span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></tt>)</span>
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
—
|
517
|
-
<div class='inline'><p>Array of strings</p>
|
518
|
-
</div>
|
519
|
-
|
520
|
-
</li>
|
521
|
-
|
522
|
-
</ul>
|
523
|
-
|
524
|
-
|
525
|
-
</div>
|
526
|
-
</div>
|
527
|
-
|
528
|
-
<div class="method_details ">
|
529
|
-
<h3 class="signature " id="append_string-instance_method">
|
530
|
-
|
531
|
-
#<strong>append_string</strong>(input) ⇒ <tt>Object</tt>
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
</h3><div class="docstring">
|
538
|
-
<div class="discussion">
|
539
|
-
<p>Append a string to the note content</p>
|
540
|
-
|
541
|
-
|
542
|
-
</div>
|
543
|
-
</div>
|
544
|
-
<div class="tags">
|
545
|
-
<p class="tag_title">Parameters:</p>
|
546
|
-
<ul class="param">
|
547
|
-
|
548
|
-
<li>
|
549
|
-
|
550
|
-
<span class='name'>input</span>
|
551
|
-
|
552
|
-
|
553
|
-
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
—
|
558
|
-
<div class='inline'><p>The input string,
|
559
|
-
newlines will be split</p>
|
560
|
-
</div>
|
561
|
-
|
562
|
-
</li>
|
563
|
-
|
564
|
-
</ul>
|
565
|
-
|
566
|
-
|
567
438
|
</div>
|
568
439
|
</div>
|
569
440
|
|
@@ -578,7 +449,7 @@ newlines will be split</p>
|
|
578
449
|
|
579
450
|
</h3><div class="docstring">
|
580
451
|
<div class="discussion">
|
581
|
-
<p>Remove blank lines and
|
452
|
+
<p>Remove blank lines and comments (#)</p>
|
582
453
|
|
583
454
|
|
584
455
|
</div>
|
@@ -756,7 +627,7 @@ newlines will be split</p>
|
|
756
627
|
</div>
|
757
628
|
|
758
629
|
<div id="footer">
|
759
|
-
Generated on
|
630
|
+
Generated on Mon Dec 20 15:39:46 2021 by
|
760
631
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
761
632
|
0.9.26 (ruby-3.0.1).
|
762
633
|
</div>
|
@@ -296,7 +296,7 @@ STDOUT</p>
|
|
296
296
|
</div>
|
297
297
|
|
298
298
|
<div id="footer">
|
299
|
-
Generated on
|
299
|
+
Generated on Mon Dec 20 15:39:45 2021 by
|
300
300
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
301
301
|
0.9.26 (ruby-3.0.1).
|
302
302
|
</div>
|