term_utils 0.3.0 → 0.3.1

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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -1
  3. data/Rakefile +22 -13
  4. data/doc/TermUtils/AP/Article.html +1 -1
  5. data/doc/TermUtils/AP/Element.html +1 -1
  6. data/doc/TermUtils/AP/Flag.html +1 -1
  7. data/doc/TermUtils/AP/Level.html +1 -1
  8. data/doc/TermUtils/AP/NoSuchValueError.html +1 -1
  9. data/doc/TermUtils/AP/Parameter.html +1 -1
  10. data/doc/TermUtils/AP/ParseError.html +1 -1
  11. data/doc/TermUtils/AP/Parser.html +1 -1
  12. data/doc/TermUtils/AP/Result.html +202 -67
  13. data/doc/TermUtils/AP/Syntax.html +1 -1
  14. data/doc/TermUtils/AP/SyntaxError.html +1 -1
  15. data/doc/TermUtils/AP.html +1 -1
  16. data/doc/TermUtils/FF/Config.html +1 -1
  17. data/doc/TermUtils/FF/Cursor/Context.html +1 -1
  18. data/doc/TermUtils/FF/Cursor.html +1 -1
  19. data/doc/TermUtils/FF/Query.html +1 -1
  20. data/doc/TermUtils/FF.html +1 -1
  21. data/doc/TermUtils/PropertyTreeNode.html +1 -1
  22. data/doc/TermUtils/Tab/Column.html +170 -199
  23. data/doc/TermUtils/Tab/Header.html +536 -0
  24. data/doc/TermUtils/Tab/Holder.html +570 -34
  25. data/doc/TermUtils/Tab/Printer.html +50 -50
  26. data/doc/TermUtils/Tab/Table.html +675 -119
  27. data/doc/TermUtils/Tab/TableError.html +217 -0
  28. data/doc/TermUtils/Tab.html +1016 -45
  29. data/doc/TermUtils.html +1 -1
  30. data/doc/_index.html +15 -1
  31. data/doc/class_list.html +1 -1
  32. data/doc/file.README.html +1 -1
  33. data/doc/index.html +1 -1
  34. data/doc/method_list.html +261 -69
  35. data/doc/top-level-namespace.html +1 -1
  36. data/lib/term_utils/ap/result.rb +23 -1
  37. data/lib/term_utils/tab.rb +255 -68
  38. data/term_utils.gemspec +2 -2
  39. metadata +4 -3
  40. data/doc/TermUtils/AP/ResultView.html +0 -597
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8ac69046c33a7b62969bc75b19bf43102ef1bd4f2a6bf631cf284b366b10467
4
- data.tar.gz: e376dc377aadadafb18ed56f22f11b1f37a61cb90a8b6cfc7022c27c23b90405
3
+ metadata.gz: ba8eb9fb7b9dce8b0c61682620ec1b85b765f6c43251e683a4300d46ce495336
4
+ data.tar.gz: cb7ec1918605d91700f7462d372043e01509214cec860d0600125cb4fbbf1d67
5
5
  SHA512:
6
- metadata.gz: 35751fc1b2e804e9a1e3cc105cb095cbe33de2b4f950417a7adafdbfe0d7a3dee599aefb18a0a8dfd7a9363c8a2bcd213c136ef466bf12075f828525a8de701e
7
- data.tar.gz: 03d4d5270f9f0e2a0a5d92aa2b3db24c046f5786f6e0eb9a7bb9fc1e7ee646cb2749b7a791c013e9180e2da7f21840edff8dd3107e82f59554851b4c63475520
6
+ metadata.gz: 305d1a457ff603a4f49e566bb620b4e7ae2572c36518a6216064747fe95d0140a80162e20cd08f9ebba36acce5fb8f043f65cf47036a29ba899d64dbc39cf945
7
+ data.tar.gz: dca463081558cfa71f395e9a96bcb3d9615e64868bf1d7081094616d3ee7532c0216800949c16d4dee2f00e318efd6dfdf343b742305b0e1aa9b58b7b415cae2
data/CHANGELOG.md CHANGED
@@ -1,4 +1,17 @@
1
- # Changelog
1
+ # Changelog for term_utils
2
+
3
+ ## 0.3.1 - 2019-11-16
4
+
5
+ ### Added
6
+
7
+ - Added Tab::Table#set_table_defaults to set table default properties.
8
+ - Added Tab::Table#set_column_defaults to set column default properties.
9
+ - Added column header (Tab).
10
+ - Added AP::Result#collect.
11
+
12
+ ### Fixed
13
+
14
+ - Fixed ellipsis greater than column width.
2
15
 
3
16
  ## 0.3.0 - 2019-11-10
4
17
 
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # Rakefile for tab
1
+ # Rakefile for term_utils
2
2
 
3
3
  require 'rubygems'
4
4
 
@@ -8,32 +8,41 @@ GEM_VERSION = GEM_SPEC.version
8
8
 
9
9
  GEM = "#{GEM_NAME}-#{GEM_VERSION}.gem"
10
10
 
11
- task :default => :build
11
+ task :default => :help
12
12
 
13
13
  task :help do
14
14
  puts <<-EOS
15
- usage: rake TARGET...
15
+ usage: rake <target>...
16
16
 
17
17
  Available targets:
18
- build Build gem.
19
- clean Remove gem.
20
- install Install gem.
21
- uninstall Uninstall gem.
22
-
18
+ doc Build doc.
19
+ gem Build gem.
20
+ clean Remove doc and gem.
21
+ install Install gem.
22
+ uninstall Uninstall gem.
23
+
24
+ To deploy a gem:
25
+ rm .doc
26
+ rake doc
27
+ rake gem
28
+ gem push #{GEM}
23
29
  EOS
24
30
  end
25
31
 
26
- task :build => GEM
32
+ task :gem => GEM
33
+
34
+ task :doc => %w[.doc]
27
35
 
28
- task :doc do
36
+ file ".doc" do
29
37
  sh "yardoc"
38
+ sh "touch .doc"
30
39
  end
31
40
 
32
- file GEM => :doc do
41
+ file GEM => %w[.doc] do
33
42
  sh "gem build #{GEM_NAME}"
34
43
  end
35
44
 
36
- task :install => :build do
45
+ task :install => :gem do
37
46
  sh "gem install #{GEM}"
38
47
  end
39
48
 
@@ -42,5 +51,5 @@ task :uninstall do
42
51
  end
43
52
 
44
53
  task :clean do
45
- sh "rm -rf doc #{GEM}"
54
+ sh "rm -rf .doc doc #{GEM}"
46
55
  end
@@ -981,7 +981,7 @@
981
981
  </div>
982
982
 
983
983
  <div id="footer">
984
- Generated on Sun Nov 10 18:36:20 2019 by
984
+ Generated on Sat Nov 16 17:06:17 2019 by
985
985
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
986
986
  0.9.20 (ruby-2.6.5).
987
987
  </div>
@@ -1015,7 +1015,7 @@
1015
1015
  </div>
1016
1016
 
1017
1017
  <div id="footer">
1018
- Generated on Sun Nov 10 18:36:20 2019 by
1018
+ Generated on Sat Nov 16 17:06:18 2019 by
1019
1019
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1020
1020
  0.9.20 (ruby-2.6.5).
1021
1021
  </div>
@@ -529,7 +529,7 @@
529
529
  </div>
530
530
 
531
531
  <div id="footer">
532
- Generated on Sun Nov 10 18:36:19 2019 by
532
+ Generated on Sat Nov 16 17:06:16 2019 by
533
533
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
534
534
  0.9.20 (ruby-2.6.5).
535
535
  </div>
@@ -628,7 +628,7 @@
628
628
  </div>
629
629
 
630
630
  <div id="footer">
631
- Generated on Sun Nov 10 18:36:19 2019 by
631
+ Generated on Sat Nov 16 17:06:16 2019 by
632
632
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
633
633
  0.9.20 (ruby-2.6.5).
634
634
  </div>
@@ -207,7 +207,7 @@
207
207
  </div>
208
208
 
209
209
  <div id="footer">
210
- Generated on Sun Nov 10 18:36:20 2019 by
210
+ Generated on Sat Nov 16 17:06:18 2019 by
211
211
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
212
212
  0.9.20 (ruby-2.6.5).
213
213
  </div>
@@ -794,7 +794,7 @@
794
794
  </div>
795
795
 
796
796
  <div id="footer">
797
- Generated on Sun Nov 10 18:36:20 2019 by
797
+ Generated on Sat Nov 16 17:06:18 2019 by
798
798
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
799
799
  0.9.20 (ruby-2.6.5).
800
800
  </div>
@@ -207,7 +207,7 @@
207
207
  </div>
208
208
 
209
209
  <div id="footer">
210
- Generated on Sun Nov 10 18:36:20 2019 by
210
+ Generated on Sat Nov 16 17:06:18 2019 by
211
211
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
212
212
  0.9.20 (ruby-2.6.5).
213
213
  </div>
@@ -562,7 +562,7 @@
562
562
  </div>
563
563
 
564
564
  <div id="footer">
565
- Generated on Sun Nov 10 18:36:19 2019 by
565
+ Generated on Sat Nov 16 17:06:16 2019 by
566
566
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
567
567
  0.9.20 (ruby-2.6.5).
568
568
  </div>
@@ -158,6 +158,30 @@
158
158
  <li class="public ">
159
159
  <span class="summary_signature">
160
160
 
161
+ <a href="#collect-instance_method" title="#collect (instance method)">#<strong>collect</strong>(id, &amp;block) &#x21d2; Array&lt;Symbol&gt; </a>
162
+
163
+
164
+
165
+ </span>
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+ <span class="summary_desc"><div class='inline'>
176
+ <p>Collects IDs.</p>
177
+ </div></span>
178
+
179
+ </li>
180
+
181
+
182
+ <li class="public ">
183
+ <span class="summary_signature">
184
+
161
185
  <a href="#eval_occurs-instance_method" title="#eval_occurs (instance method)">#<strong>eval_occurs</strong>(id) &#x21d2; Integer </a>
162
186
 
163
187
 
@@ -461,7 +485,113 @@
461
485
 
462
486
 
463
487
  <div class="method_details first">
464
- <h3 class="signature first" id="eval_occurs-instance_method">
488
+ <h3 class="signature first" id="collect-instance_method">
489
+
490
+ #<strong>collect</strong>(id, &amp;block) &#x21d2; <tt>Array&lt;Symbol&gt;</tt>
491
+
492
+
493
+
494
+
495
+
496
+ </h3><div class="docstring">
497
+ <div class="discussion">
498
+
499
+ <p>Collects IDs.</p>
500
+
501
+
502
+ </div>
503
+ </div>
504
+ <div class="tags">
505
+ <p class="tag_title">Parameters:</p>
506
+ <ul class="param">
507
+
508
+ <li>
509
+
510
+ <span class='name'>id</span>
511
+
512
+
513
+ <span class='type'>(<tt>Symbol</tt>, <tt>Array&lt;Symbol&gt;</tt>)</span>
514
+
515
+
516
+
517
+ &mdash;
518
+ <div class='inline'>
519
+ <p>ID path.</p>
520
+ </div>
521
+
522
+ </li>
523
+
524
+ </ul>
525
+
526
+ <p class="tag_title">Returns:</p>
527
+ <ul class="return">
528
+
529
+ <li>
530
+
531
+
532
+ <span class='type'>(<tt>Array&lt;Symbol&gt;</tt>)</span>
533
+
534
+
535
+
536
+ </li>
537
+
538
+ </ul>
539
+
540
+ </div><table class="source_code">
541
+ <tr>
542
+ <td>
543
+ <pre class="lines">
544
+
545
+
546
+ 41
547
+ 42
548
+ 43
549
+ 44
550
+ 45
551
+ 46
552
+ 47
553
+ 48
554
+ 49
555
+ 50
556
+ 51
557
+ 52
558
+ 53
559
+ 54
560
+ 55
561
+ 56
562
+ 57
563
+ 58
564
+ 59</pre>
565
+ </td>
566
+ <td>
567
+ <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 41</span>
568
+
569
+ <span class='kw'>def</span> <span class='id identifier rubyid_collect'>collect</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='comma'>,</span> <span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
570
+ <span class='id identifier rubyid_node'>node</span> <span class='op'>=</span> <span class='ivar'>@value</span>
571
+ <span class='kw'>if</span> <span class='id identifier rubyid_id'>id</span>
572
+ <span class='id identifier rubyid_id'>id</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='id identifier rubyid_id'>id</span><span class='rbracket'>]</span> <span class='kw'>if</span> <span class='id identifier rubyid_id'>id</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span> <span class='const'>Symbol</span>
573
+ <span class='id identifier rubyid_node'>node</span> <span class='op'>=</span> <span class='ivar'>@value</span><span class='period'>.</span><span class='id identifier rubyid_find_node'>find_node</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='rparen'>)</span>
574
+ <span class='kw'>end</span>
575
+ <span class='id identifier rubyid_res'>res</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
576
+ <span class='kw'>return</span> <span class='id identifier rubyid_res'>res</span> <span class='kw'>unless</span> <span class='id identifier rubyid_node'>node</span> <span class='op'>&amp;&amp;</span> <span class='id identifier rubyid_node'>node</span><span class='period'>.</span><span class='id identifier rubyid_child_nodes'>child_nodes</span>
577
+ <span class='kw'>if</span> <span class='id identifier rubyid_block'>block</span>
578
+ <span class='id identifier rubyid_node'>node</span><span class='period'>.</span><span class='id identifier rubyid_child_nodes'>child_nodes</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_n'>n</span><span class='op'>|</span>
579
+ <span class='id identifier rubyid_res'>res</span> <span class='op'>&lt;&lt;</span> <span class='id identifier rubyid_n'>n</span><span class='period'>.</span><span class='id identifier rubyid_key'>key</span> <span class='kw'>if</span> <span class='id identifier rubyid_block'>block</span><span class='period'>.</span><span class='id identifier rubyid_call'>call</span><span class='lparen'>(</span><span class='id identifier rubyid_n'>n</span><span class='period'>.</span><span class='id identifier rubyid_key'>key</span><span class='rparen'>)</span>
580
+ <span class='kw'>end</span>
581
+ <span class='kw'>else</span>
582
+ <span class='id identifier rubyid_node'>node</span><span class='period'>.</span><span class='id identifier rubyid_child_nodes'>child_nodes</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_n'>n</span><span class='op'>|</span>
583
+ <span class='id identifier rubyid_res'>res</span> <span class='op'>&lt;&lt;</span> <span class='id identifier rubyid_n'>n</span><span class='period'>.</span><span class='id identifier rubyid_key'>key</span>
584
+ <span class='kw'>end</span>
585
+ <span class='kw'>end</span>
586
+ <span class='id identifier rubyid_res'>res</span>
587
+ <span class='kw'>end</span></pre>
588
+ </td>
589
+ </tr>
590
+ </table>
591
+ </div>
592
+
593
+ <div class="method_details ">
594
+ <h3 class="signature " id="eval_occurs-instance_method">
465
595
 
466
596
  #<strong>eval_occurs</strong>(id) &#x21d2; <tt>Integer</tt>
467
597
 
@@ -527,19 +657,19 @@
527
657
  <pre class="lines">
528
658
 
529
659
 
530
- 51
531
- 52
532
- 53
533
- 54
534
- 55
535
- 56
536
- 57
537
- 58
538
- 59
539
- 60</pre>
660
+ 73
661
+ 74
662
+ 75
663
+ 76
664
+ 77
665
+ 78
666
+ 79
667
+ 80
668
+ 81
669
+ 82</pre>
540
670
  </td>
541
671
  <td>
542
- <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 51</span>
672
+ <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 73</span>
543
673
 
544
674
  <span class='kw'>def</span> <span class='id identifier rubyid_eval_occurs'>eval_occurs</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='rparen'>)</span>
545
675
  <span class='id identifier rubyid_id'>id</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='id identifier rubyid_id'>id</span><span class='rbracket'>]</span> <span class='kw'>if</span> <span class='id identifier rubyid_id'>id</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span> <span class='const'>Symbol</span>
@@ -678,28 +808,6 @@
678
808
  <pre class="lines">
679
809
 
680
810
 
681
- 68
682
- 69
683
- 70
684
- 71
685
- 72
686
- 73
687
- 74
688
- 75
689
- 76
690
- 77
691
- 78
692
- 79
693
- 80
694
- 81
695
- 82
696
- 83
697
- 84
698
- 85
699
- 86
700
- 87
701
- 88
702
- 89
703
811
  90
704
812
  91
705
813
  92
@@ -722,10 +830,32 @@
722
830
  109
723
831
  110
724
832
  111
725
- 112</pre>
833
+ 112
834
+ 113
835
+ 114
836
+ 115
837
+ 116
838
+ 117
839
+ 118
840
+ 119
841
+ 120
842
+ 121
843
+ 122
844
+ 123
845
+ 124
846
+ 125
847
+ 126
848
+ 127
849
+ 128
850
+ 129
851
+ 130
852
+ 131
853
+ 132
854
+ 133
855
+ 134</pre>
726
856
  </td>
727
857
  <td>
728
- <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 68</span>
858
+ <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 90</span>
729
859
 
730
860
  <span class='kw'>def</span> <span class='id identifier rubyid_fetch_value'>fetch_value</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='comma'>,</span> <span class='id identifier rubyid_opts'>opts</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span><span class='rparen'>)</span>
731
861
  <span class='id identifier rubyid_index'>index</span> <span class='op'>=</span> <span class='id identifier rubyid_opts'>opts</span><span class='period'>.</span><span class='id identifier rubyid_fetch'>fetch</span><span class='lparen'>(</span><span class='symbol'>:index</span><span class='comma'>,</span> <span class='kw'>nil</span><span class='rparen'>)</span>
@@ -807,6 +937,11 @@
807
937
 
808
938
 
809
939
 
940
+ &mdash;
941
+ <div class='inline'>
942
+ <p>ID path.</p>
943
+ </div>
944
+
810
945
  </li>
811
946
 
812
947
  </ul>
@@ -831,16 +966,16 @@
831
966
  <pre class="lines">
832
967
 
833
968
 
834
- 41
835
- 42
836
- 43
837
- 44
838
- 45
839
- 46
840
- 47</pre>
969
+ 63
970
+ 64
971
+ 65
972
+ 66
973
+ 67
974
+ 68
975
+ 69</pre>
841
976
  </td>
842
977
  <td>
843
- <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 41</span>
978
+ <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 63</span>
844
979
 
845
980
  <span class='kw'>def</span> <span class='id identifier rubyid_present?'>present?</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='rparen'>)</span>
846
981
  <span class='kw'>if</span> <span class='id identifier rubyid_id'>id</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span> <span class='const'>Symbol</span>
@@ -963,30 +1098,30 @@
963
1098
  <pre class="lines">
964
1099
 
965
1100
 
966
- 119
967
- 120
968
- 121
969
- 122
970
- 123
971
- 124
972
- 125
973
- 126
974
- 127
975
- 128
976
- 129
977
- 130
978
- 131
979
- 132
980
- 133
981
- 134
982
- 135
983
- 136
984
- 137
985
- 138
986
- 139</pre>
1101
+ 141
1102
+ 142
1103
+ 143
1104
+ 144
1105
+ 145
1106
+ 146
1107
+ 147
1108
+ 148
1109
+ 149
1110
+ 150
1111
+ 151
1112
+ 152
1113
+ 153
1114
+ 154
1115
+ 155
1116
+ 156
1117
+ 157
1118
+ 158
1119
+ 159
1120
+ 160
1121
+ 161</pre>
987
1122
  </td>
988
1123
  <td>
989
- <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 119</span>
1124
+ <pre class="code"><span class="info file"># File 'lib/term_utils/ap/result.rb', line 141</span>
990
1125
 
991
1126
  <span class='kw'>def</span> <span class='id identifier rubyid_shift'>shift</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='comma'>,</span> <span class='id identifier rubyid_opts'>opts</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span><span class='rparen'>)</span>
992
1127
  <span class='id identifier rubyid_index'>index</span> <span class='op'>=</span> <span class='id identifier rubyid_opts'>opts</span><span class='period'>.</span><span class='id identifier rubyid_fetch'>fetch</span><span class='lparen'>(</span><span class='symbol'>:index</span><span class='comma'>,</span> <span class='kw'>nil</span><span class='rparen'>)</span>
@@ -1019,7 +1154,7 @@
1019
1154
  </div>
1020
1155
 
1021
1156
  <div id="footer">
1022
- Generated on Sun Nov 10 18:36:19 2019 by
1157
+ Generated on Sat Nov 16 17:06:17 2019 by
1023
1158
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1024
1159
  0.9.20 (ruby-2.6.5).
1025
1160
  </div>
@@ -1041,7 +1041,7 @@
1041
1041
  </div>
1042
1042
 
1043
1043
  <div id="footer">
1044
- Generated on Sun Nov 10 18:36:19 2019 by
1044
+ Generated on Sat Nov 16 17:06:17 2019 by
1045
1045
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1046
1046
  0.9.20 (ruby-2.6.5).
1047
1047
  </div>
@@ -207,7 +207,7 @@
207
207
  </div>
208
208
 
209
209
  <div id="footer">
210
- Generated on Sun Nov 10 18:36:20 2019 by
210
+ Generated on Sat Nov 16 17:06:18 2019 by
211
211
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
212
212
  0.9.20 (ruby-2.6.5).
213
213
  </div>
@@ -495,7 +495,7 @@
495
495
  </div>
496
496
 
497
497
  <div id="footer">
498
- Generated on Sun Nov 10 18:36:19 2019 by
498
+ Generated on Sat Nov 16 17:06:14 2019 by
499
499
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
500
500
  0.9.20 (ruby-2.6.5).
501
501
  </div>
@@ -596,7 +596,7 @@
596
596
  </div>
597
597
 
598
598
  <div id="footer">
599
- Generated on Sun Nov 10 18:36:19 2019 by
599
+ Generated on Sat Nov 16 17:06:17 2019 by
600
600
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
601
601
  0.9.20 (ruby-2.6.5).
602
602
  </div>
@@ -399,7 +399,7 @@
399
399
  </div>
400
400
 
401
401
  <div id="footer">
402
- Generated on Sun Nov 10 18:36:20 2019 by
402
+ Generated on Sat Nov 16 17:06:17 2019 by
403
403
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
404
404
  0.9.20 (ruby-2.6.5).
405
405
  </div>
@@ -919,7 +919,7 @@
919
919
  </div>
920
920
 
921
921
  <div id="footer">
922
- Generated on Sun Nov 10 18:36:20 2019 by
922
+ Generated on Sat Nov 16 17:06:17 2019 by
923
923
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
924
924
  0.9.20 (ruby-2.6.5).
925
925
  </div>
@@ -739,7 +739,7 @@
739
739
  </div>
740
740
 
741
741
  <div id="footer">
742
- Generated on Sun Nov 10 18:36:19 2019 by
742
+ Generated on Sat Nov 16 17:06:16 2019 by
743
743
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
744
744
  0.9.20 (ruby-2.6.5).
745
745
  </div>
@@ -118,7 +118,7 @@
118
118
  </div>
119
119
 
120
120
  <div id="footer">
121
- Generated on Sun Nov 10 18:36:19 2019 by
121
+ Generated on Sat Nov 16 17:06:15 2019 by
122
122
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
123
123
  0.9.20 (ruby-2.6.5).
124
124
  </div>
@@ -1989,7 +1989,7 @@
1989
1989
  </div>
1990
1990
 
1991
1991
  <div id="footer">
1992
- Generated on Sun Nov 10 18:36:20 2019 by
1992
+ Generated on Sat Nov 16 17:06:18 2019 by
1993
1993
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1994
1994
  0.9.20 (ruby-2.6.5).
1995
1995
  </div>