doing 2.1.4pre → 2.1.5pre
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 +14 -13
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/CHANGELOG.md +21 -0
- data/Gemfile.lock +3 -1
- data/README.md +1 -1
- data/bin/doing +149 -91
- data/doc/Array.html +63 -1
- data/doc/BooleanTermParser/Clause.html +293 -0
- data/doc/BooleanTermParser/Operator.html +172 -0
- data/doc/BooleanTermParser/Query.html +417 -0
- data/doc/BooleanTermParser/QueryParser.html +135 -0
- data/doc/BooleanTermParser/QueryTransformer.html +124 -0
- data/doc/BooleanTermParser.html +115 -0
- data/doc/Doing/CLIFormat.html +131 -0
- data/doc/Doing/Color.html +2 -2
- data/doc/Doing/Completion.html +1 -1
- data/doc/Doing/Configuration.html +116 -12
- data/doc/Doing/Errors/DoingNoTraceError.html +1 -1
- data/doc/Doing/Errors/DoingRuntimeError.html +1 -1
- data/doc/Doing/Errors/DoingStandardError.html +1 -1
- data/doc/Doing/Errors/EmptyInput.html +1 -1
- data/doc/Doing/Errors/NoResults.html +1 -1
- data/doc/Doing/Errors/PluginException.html +1 -1
- data/doc/Doing/Errors/UserCancelled.html +1 -1
- data/doc/Doing/Errors/WrongCommand.html +1 -1
- data/doc/Doing/Errors.html +1 -1
- data/doc/Doing/Hooks.html +1 -1
- data/doc/Doing/Item.html +100 -73
- data/doc/Doing/Items.html +2 -2
- data/doc/Doing/LogAdapter.html +70 -1
- data/doc/Doing/Note.html +5 -134
- data/doc/Doing/Pager.html +1 -1
- data/doc/Doing/Plugins.html +380 -40
- data/doc/Doing/Prompt.html +1 -1
- data/doc/Doing/Section.html +1 -1
- data/doc/Doing/TemplateString.html +713 -0
- data/doc/Doing/Util/Backup.html +686 -0
- data/doc/Doing/Util.html +1 -1
- data/doc/Doing/WWID.html +5 -5
- data/doc/Doing.html +4 -4
- data/doc/GLI/Commands/MarkdownDocumentListener.html +1 -1
- data/doc/GLI/Commands.html +1 -1
- data/doc/GLI.html +1 -1
- data/doc/Hash.html +1 -1
- data/doc/PhraseParser/Operator.html +172 -0
- data/doc/PhraseParser/PhraseClause.html +303 -0
- data/doc/PhraseParser/Query.html +495 -0
- data/doc/PhraseParser/QueryParser.html +136 -0
- data/doc/PhraseParser/QueryTransformer.html +124 -0
- data/doc/PhraseParser/TermClause.html +293 -0
- data/doc/PhraseParser.html +115 -0
- data/doc/Status.html +1 -1
- data/doc/String.html +182 -12
- data/doc/Symbol.html +35 -1
- data/doc/Time.html +1 -1
- data/doc/_index.html +21 -14
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +2 -2
- data/doc/index.html +2 -2
- data/doc/method_list.html +319 -175
- data/doc/top-level-namespace.html +1 -1
- data/doing.gemspec +1 -0
- data/doing.rdoc +56 -9
- data/lib/doing/array.rb +9 -0
- data/lib/doing/configuration.rb +30 -8
- data/lib/doing/item.rb +12 -3
- data/lib/doing/log_adapter.rb +28 -0
- data/lib/doing/note.rb +31 -30
- data/lib/doing/plugin_manager.rb +57 -13
- data/lib/doing/plugins/export/dayone_export.rb +209 -0
- data/lib/doing/plugins/export/template_export.rb +90 -85
- data/lib/doing/prompt.rb +9 -6
- data/lib/doing/string.rb +68 -27
- data/lib/doing/symbol.rb +4 -0
- data/lib/doing/template_string.rb +197 -0
- data/lib/doing/util.rb +4 -2
- data/lib/doing/util_backup.rb +55 -3
- data/lib/doing/version.rb +1 -1
- data/lib/doing/wwid.rb +27 -18
- data/lib/doing.rb +3 -0
- data/lib/templates/doing-dayone-entry.erb +6 -0
- data/lib/templates/doing-dayone.erb +5 -0
- metadata +42 -2
data/doc/Doing/Item.html
CHANGED
|
@@ -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,29 @@
|
|
|
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
|
+
|
|
330
325
|
</li>
|
|
331
326
|
|
|
332
327
|
|
|
@@ -472,7 +467,7 @@
|
|
|
472
467
|
<li class="public ">
|
|
473
468
|
<span class="summary_signature">
|
|
474
469
|
|
|
475
|
-
<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>
|
|
476
471
|
|
|
477
472
|
|
|
478
473
|
|
|
@@ -556,6 +551,28 @@
|
|
|
556
551
|
<span class="summary_desc"><div class='inline'><p>Add (or remove) tags from the title of the item.</p>
|
|
557
552
|
</div></span>
|
|
558
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
|
+
|
|
559
576
|
</li>
|
|
560
577
|
|
|
561
578
|
|
|
@@ -751,47 +768,6 @@ the item belongs</p>
|
|
|
751
768
|
<div class="tags">
|
|
752
769
|
|
|
753
770
|
|
|
754
|
-
</div>
|
|
755
|
-
</div>
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
<span id=""></span>
|
|
759
|
-
<div class="method_details ">
|
|
760
|
-
<h3 class="signature " id="id-instance_method">
|
|
761
|
-
|
|
762
|
-
#<strong>id</strong> ⇒ <tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt> <span class="extras">(readonly)</span>
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
</h3><div class="docstring">
|
|
769
|
-
<div class="discussion">
|
|
770
|
-
<p>Generate a hash that represents the entry</p>
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
</div>
|
|
774
|
-
</div>
|
|
775
|
-
<div class="tags">
|
|
776
|
-
|
|
777
|
-
<p class="tag_title">Returns:</p>
|
|
778
|
-
<ul class="return">
|
|
779
|
-
|
|
780
|
-
<li>
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
<span class='type'>(<tt><span class='object_link'><a href="../String.html" title="String (class)">String</a></span></tt>)</span>
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
—
|
|
788
|
-
<div class='inline'><p>entry hash</p>
|
|
789
|
-
</div>
|
|
790
|
-
|
|
791
|
-
</li>
|
|
792
|
-
|
|
793
|
-
</ul>
|
|
794
|
-
|
|
795
771
|
</div>
|
|
796
772
|
</div>
|
|
797
773
|
|
|
@@ -990,6 +966,45 @@ the item belongs</p>
|
|
|
990
966
|
|
|
991
967
|
</ul>
|
|
992
968
|
|
|
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
|
+
|
|
993
1008
|
</div>
|
|
994
1009
|
</div>
|
|
995
1010
|
|
|
@@ -1259,7 +1274,7 @@ value overlaps with another item's</p>
|
|
|
1259
1274
|
<div class="method_details ">
|
|
1260
1275
|
<h3 class="signature " id="search-instance_method">
|
|
1261
1276
|
|
|
1262
|
-
#<strong>search</strong>(search, distance:
|
|
1277
|
+
#<strong>search</strong>(search, distance: nil, negate: false, case_type: nil) ⇒ <tt>Boolean</tt>
|
|
1263
1278
|
|
|
1264
1279
|
|
|
1265
1280
|
|
|
@@ -1316,7 +1331,7 @@ value overlaps with another item's</p>
|
|
|
1316
1331
|
<span class='type'>(<tt><span class='object_link'><a href="../Symbol.html" title="Symbol (class)">Symbol</a></span></tt>)</span>
|
|
1317
1332
|
|
|
1318
1333
|
|
|
1319
|
-
<em class="default">(defaults to: <tt
|
|
1334
|
+
<em class="default">(defaults to: <tt>nil</tt>)</em>
|
|
1320
1335
|
|
|
1321
1336
|
|
|
1322
1337
|
—
|
|
@@ -1567,6 +1582,18 @@ type (:sensitive,
|
|
|
1567
1582
|
|
|
1568
1583
|
|
|
1569
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>
|
|
1570
1597
|
</div>
|
|
1571
1598
|
|
|
1572
1599
|
<div class="method_details ">
|
|
@@ -1727,7 +1754,7 @@ type (:sensitive,
|
|
|
1727
1754
|
</div>
|
|
1728
1755
|
|
|
1729
1756
|
<div id="footer">
|
|
1730
|
-
Generated on
|
|
1757
|
+
Generated on Sun Dec 19 12:35:33 2021 by
|
|
1731
1758
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
1732
1759
|
0.9.26 (ruby-3.0.1).
|
|
1733
1760
|
</div>
|
data/doc/Doing/Items.html
CHANGED
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
|
|
379
379
|
|
|
380
380
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="../Array.html" title="Array (class)">Array</a></span></h3>
|
|
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#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>
|
|
382
382
|
<div id="constructor_details" class="method_details_list">
|
|
383
383
|
<h2>Constructor Details</h2>
|
|
384
384
|
|
|
@@ -826,7 +826,7 @@ specified section</p>
|
|
|
826
826
|
</div>
|
|
827
827
|
|
|
828
828
|
<div id="footer">
|
|
829
|
-
Generated on
|
|
829
|
+
Generated on Sun Dec 19 12:35:33 2021 by
|
|
830
830
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
831
831
|
0.9.26 (ruby-3.0.1).
|
|
832
832
|
</div>
|
data/doc/Doing/LogAdapter.html
CHANGED
|
@@ -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 Sun Dec 19 12:35:33 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>
|
data/doc/Doing/Note.html
CHANGED
|
@@ -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 Sun Dec 19 12:35:33 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>
|
data/doc/Doing/Pager.html
CHANGED
|
@@ -296,7 +296,7 @@ STDOUT</p>
|
|
|
296
296
|
</div>
|
|
297
297
|
|
|
298
298
|
<div id="footer">
|
|
299
|
-
Generated on
|
|
299
|
+
Generated on Sun Dec 19 12:35:32 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>
|