rubu 0.0.3 → 0.0.4
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/CHANGELOG.rdoc +2 -0
- data/doc/Array.html +28 -28
- data/doc/Rubu.html +2 -2
- data/doc/Rubu/Fork.html +6 -6
- data/doc/Rubu/Info.html +9 -9
- data/doc/Rubu/Mark.html +89 -89
- data/doc/Rubu/Move.html +128 -6
- data/doc/Rubu/MoveStyles.html +28 -28
- data/doc/Rubu/Order.html +9 -9
- data/doc/Rubu/RubyCommand.html +22 -22
- data/doc/Rubu/ShellCommand.html +24 -18
- data/doc/Rubu/State.html +13 -13
- data/doc/Rubu/Step.html +197 -134
- data/doc/Rubu/StepAged.html +7 -7
- data/doc/Rubu/StepAlways.html +7 -7
- data/doc/Rubu/StepMark.html +7 -7
- data/doc/Rubu/Trail.html +90 -90
- data/doc/Rubu/Var.html +9 -9
- data/doc/Rubu/Walk.html +2 -2
- data/doc/_index.html +1 -1
- data/doc/file.CHANGELOG.html +5 -2
- data/doc/file.README.html +1 -1
- data/doc/index.html +1 -1
- data/doc/method_list.html +25 -7
- data/doc/top-level-namespace.html +1 -1
- data/example/bin/gen_world +6 -1
- data/example/bin/rubu_example +2 -1
- data/example/build/hello +0 -0
- data/example/build/hello_world.o +0 -0
- data/example/build/world.o +0 -0
- data/example/gen_cee/world.c +5 -1
- data/example/src/hello_world.c +2 -2
- data/example/src/world.h +1 -0
- data/lib/rubu.rb +18 -1
- data/lib/version.rb +1 -1
- metadata +3 -2
data/doc/Rubu/State.html
CHANGED
@@ -276,14 +276,14 @@ checksums of file content.</p>
|
|
276
276
|
<pre class="lines">
|
277
277
|
|
278
278
|
|
279
|
+
24
|
279
280
|
25
|
280
281
|
26
|
281
282
|
27
|
282
|
-
28
|
283
|
-
29</pre>
|
283
|
+
28</pre>
|
284
284
|
</td>
|
285
285
|
<td>
|
286
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
286
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 24</span>
|
287
287
|
|
288
288
|
<span class='kw'>def</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_load'>load</span>
|
289
289
|
<span class='kw'>if</span> <span class='const'>File</span><span class='period'>.</span><span class='id identifier rubyid_exist?'>exist?</span><span class='lparen'>(</span> <span class='cvar'>@@state_file</span> <span class='rparen'>)</span>
|
@@ -354,6 +354,7 @@ checksums of file content.</p>
|
|
354
354
|
<pre class="lines">
|
355
355
|
|
356
356
|
|
357
|
+
40
|
357
358
|
41
|
358
359
|
42
|
359
360
|
43
|
@@ -365,11 +366,10 @@ checksums of file content.</p>
|
|
365
366
|
49
|
366
367
|
50
|
367
368
|
51
|
368
|
-
52
|
369
|
-
53</pre>
|
369
|
+
52</pre>
|
370
370
|
</td>
|
371
371
|
<td>
|
372
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
372
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 40</span>
|
373
373
|
|
374
374
|
<span class='kw'>def</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_md5_check_and_update?'>md5_check_and_update?</span><span class='lparen'>(</span> <span class='id identifier rubyid_file'>file</span> <span class='rparen'>)</span>
|
375
375
|
<span class='kw'>if</span> <span class='cvar'>@@md5</span><span class='lbracket'>[</span> <span class='id identifier rubyid_file'>file</span> <span class='rbracket'>]</span>
|
@@ -435,12 +435,12 @@ checksums of file content.</p>
|
|
435
435
|
<pre class="lines">
|
436
436
|
|
437
437
|
|
438
|
+
33
|
438
439
|
34
|
439
|
-
35
|
440
|
-
36</pre>
|
440
|
+
35</pre>
|
441
441
|
</td>
|
442
442
|
<td>
|
443
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
443
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 33</span>
|
444
444
|
|
445
445
|
<span class='kw'>def</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_md5_gen'>md5_gen</span><span class='lparen'>(</span> <span class='id identifier rubyid_file'>file</span> <span class='rparen'>)</span>
|
446
446
|
<span class='const'>Digest</span><span class='op'>::</span><span class='const'>MD5</span><span class='period'>.</span><span class='id identifier rubyid_hexdigest'>hexdigest</span><span class='lparen'>(</span> <span class='const'>File</span><span class='period'>.</span><span class='id identifier rubyid_read'>read</span><span class='lparen'>(</span> <span class='id identifier rubyid_file'>file</span> <span class='rparen'>)</span> <span class='rparen'>)</span>
|
@@ -476,14 +476,14 @@ checksums of file content.</p>
|
|
476
476
|
<pre class="lines">
|
477
477
|
|
478
478
|
|
479
|
+
17
|
479
480
|
18
|
480
481
|
19
|
481
482
|
20
|
482
|
-
21
|
483
|
-
22</pre>
|
483
|
+
21</pre>
|
484
484
|
</td>
|
485
485
|
<td>
|
486
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
486
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 17</span>
|
487
487
|
|
488
488
|
<span class='kw'>def</span> <span class='const'>State</span><span class='period'>.</span><span class='id identifier rubyid_save'>save</span>
|
489
489
|
<span class='kw'>if</span> <span class='cvar'>@@md5</span><span class='period'>.</span><span class='id identifier rubyid_any?'>any?</span>
|
@@ -500,7 +500,7 @@ checksums of file content.</p>
|
|
500
500
|
</div>
|
501
501
|
|
502
502
|
<div id="footer">
|
503
|
-
Generated on
|
503
|
+
Generated on Thu Aug 30 16:05:51 2018 by
|
504
504
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
505
505
|
0.8.7.6 (ruby-2.3.3).
|
506
506
|
</div>
|
data/doc/Rubu/Step.html
CHANGED
@@ -548,6 +548,30 @@ more targets.</p>
|
|
548
548
|
<p>Main/only (first) source file.</p>
|
549
549
|
</div></span>
|
550
550
|
|
551
|
+
</li>
|
552
|
+
|
553
|
+
|
554
|
+
<li class="public ">
|
555
|
+
<span class="summary_signature">
|
556
|
+
|
557
|
+
<a href="#step-instance_method" title="#step (instance method)">- (Object) <strong>step</strong> </a>
|
558
|
+
|
559
|
+
|
560
|
+
|
561
|
+
</span>
|
562
|
+
|
563
|
+
|
564
|
+
|
565
|
+
|
566
|
+
|
567
|
+
|
568
|
+
|
569
|
+
|
570
|
+
|
571
|
+
<span class="summary_desc"><div class='inline'>
|
572
|
+
<p>Default to no action.</p>
|
573
|
+
</div></span>
|
574
|
+
|
551
575
|
</li>
|
552
576
|
|
553
577
|
|
@@ -647,7 +671,7 @@ more targets.</p>
|
|
647
671
|
|
648
672
|
|
649
673
|
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="Move.html" title="Rubu::Move (class)">Move</a></span></h3>
|
650
|
-
<p class="inherited"><span class='object_link'><a href="Move.html#display-instance_method" title="Rubu::Move#display (method)">#display</a></span>, <span class='object_link'><a href="Move.html#error-instance_method" title="Rubu::Move#error (method)">#error</a></span>, <span class='object_link'><a href="Move.html#host-instance_method" title="Rubu::Move#host (method)">#host</a></span>, <span class='object_link'><a href="Move.html#host_in-instance_method" title="Rubu::Move#host_in (method)">#host_in</a></span>, <span class='object_link'><a href="Move.html#host_out-instance_method" title="Rubu::Move#host_out (method)">#host_out</a></span>, <span class='object_link'><a href="Move.html#use-instance_method" title="Rubu::Move#use (method)">#use</a></span></p>
|
674
|
+
<p class="inherited"><span class='object_link'><a href="Move.html#display-instance_method" title="Rubu::Move#display (method)">#display</a></span>, <span class='object_link'><a href="Move.html#error-instance_method" title="Rubu::Move#error (method)">#error</a></span>, <span class='object_link'><a href="Move.html#host-instance_method" title="Rubu::Move#host (method)">#host</a></span>, <span class='object_link'><a href="Move.html#host_in-instance_method" title="Rubu::Move#host_in (method)">#host_in</a></span>, <span class='object_link'><a href="Move.html#host_out-instance_method" title="Rubu::Move#host_out (method)">#host_out</a></span>, <span class='object_link'><a href="Move.html#set_show_shell_warning-instance_method" title="Rubu::Move#set_show_shell_warning (method)">#set_show_shell_warning</a></span>, <span class='object_link'><a href="Move.html#use-instance_method" title="Rubu::Move#use (method)">#use</a></span>, <span class='object_link'><a href="Move.html#warn-instance_method" title="Rubu::Move#warn (method)">#warn</a></span></p>
|
651
675
|
<div id="constructor_details" class="method_details_list">
|
652
676
|
<h2>Constructor Details</h2>
|
653
677
|
|
@@ -717,26 +741,26 @@ more targets.</p>
|
|
717
741
|
<pre class="lines">
|
718
742
|
|
719
743
|
|
720
|
-
506
|
721
|
-
507
|
722
|
-
508
|
723
|
-
509
|
724
|
-
510
|
725
|
-
511
|
726
|
-
512
|
727
|
-
513
|
728
|
-
514
|
729
|
-
515
|
730
|
-
516
|
731
|
-
517
|
732
744
|
518
|
733
745
|
519
|
734
746
|
520
|
735
747
|
521
|
736
|
-
522
|
748
|
+
522
|
749
|
+
523
|
750
|
+
524
|
751
|
+
525
|
752
|
+
526
|
753
|
+
527
|
754
|
+
528
|
755
|
+
529
|
756
|
+
530
|
757
|
+
531
|
758
|
+
532
|
759
|
+
533
|
760
|
+
534</pre>
|
737
761
|
</td>
|
738
762
|
<td>
|
739
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
763
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 518</span>
|
740
764
|
|
741
765
|
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span> <span class='id identifier rubyid_sources'>sources</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='id identifier rubyid_targets'>targets</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span> <span class='rparen'>)</span>
|
742
766
|
<span class='kw'>super</span><span class='lparen'>(</span><span class='rparen'>)</span>
|
@@ -793,12 +817,12 @@ more targets.</p>
|
|
793
817
|
<pre class="lines">
|
794
818
|
|
795
819
|
|
796
|
-
|
797
|
-
|
798
|
-
|
820
|
+
511
|
821
|
+
512
|
822
|
+
513</pre>
|
799
823
|
</td>
|
800
824
|
<td>
|
801
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
825
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 511</span>
|
802
826
|
|
803
827
|
<span class='kw'>def</span> <span class='id identifier rubyid_sources'>sources</span>
|
804
828
|
<span class='ivar'>@sources</span>
|
@@ -836,12 +860,12 @@ more targets.</p>
|
|
836
860
|
<pre class="lines">
|
837
861
|
|
838
862
|
|
839
|
-
|
840
|
-
|
841
|
-
|
863
|
+
512
|
864
|
+
513
|
865
|
+
514</pre>
|
842
866
|
</td>
|
843
867
|
<td>
|
844
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
868
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 512</span>
|
845
869
|
|
846
870
|
<span class='kw'>def</span> <span class='id identifier rubyid_targets'>targets</span>
|
847
871
|
<span class='ivar'>@targets</span>
|
@@ -924,12 +948,12 @@ more targets.</p>
|
|
924
948
|
<pre class="lines">
|
925
949
|
|
926
950
|
|
927
|
-
|
928
|
-
|
929
|
-
|
951
|
+
485
|
952
|
+
486
|
953
|
+
487</pre>
|
930
954
|
</td>
|
931
955
|
<td>
|
932
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
956
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 485</span>
|
933
957
|
|
934
958
|
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_use'>use</span><span class='lparen'>(</span> <span class='id identifier rubyid_sources'>sources</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='id identifier rubyid_targets'>targets</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span> <span class='rparen'>)</span>
|
935
959
|
<span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span> <span class='id identifier rubyid_sources'>sources</span><span class='comma'>,</span> <span class='id identifier rubyid_targets'>targets</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_use'>use</span>
|
@@ -1001,14 +1025,14 @@ more targets.</p>
|
|
1001
1025
|
<pre class="lines">
|
1002
1026
|
|
1003
1027
|
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1028
|
+
504
|
1029
|
+
505
|
1030
|
+
506
|
1031
|
+
507
|
1032
|
+
508</pre>
|
1009
1033
|
</td>
|
1010
1034
|
<td>
|
1011
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1035
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 504</span>
|
1012
1036
|
|
1013
1037
|
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_usezip'>usezip</span><span class='lparen'>(</span> <span class='id identifier rubyid_sources'>sources</span><span class='comma'>,</span> <span class='id identifier rubyid_targets'>targets</span> <span class='rparen'>)</span>
|
1014
1038
|
<span class='id identifier rubyid_sources'>sources</span><span class='period'>.</span><span class='id identifier rubyid_zip'>zip</span><span class='lparen'>(</span> <span class='id identifier rubyid_targets'>targets</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_pair'>pair</span><span class='op'>|</span>
|
@@ -1082,14 +1106,14 @@ more targets.</p>
|
|
1082
1106
|
<pre class="lines">
|
1083
1107
|
|
1084
1108
|
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1109
|
+
493
|
1110
|
+
494
|
1111
|
+
495
|
1112
|
+
496
|
1113
|
+
497</pre>
|
1090
1114
|
</td>
|
1091
1115
|
<td>
|
1092
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1116
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 493</span>
|
1093
1117
|
|
1094
1118
|
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_zip'>zip</span><span class='lparen'>(</span> <span class='id identifier rubyid_sources'>sources</span><span class='comma'>,</span> <span class='id identifier rubyid_targets'>targets</span> <span class='rparen'>)</span>
|
1095
1119
|
<span class='id identifier rubyid_sources'>sources</span><span class='period'>.</span><span class='id identifier rubyid_zip'>zip</span><span class='lparen'>(</span> <span class='id identifier rubyid_targets'>targets</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_map'>map</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_pair'>pair</span><span class='op'>|</span>
|
@@ -1146,23 +1170,6 @@ more targets.</p>
|
|
1146
1170
|
<pre class="lines">
|
1147
1171
|
|
1148
1172
|
|
1149
|
-
549
|
1150
|
-
550
|
1151
|
-
551
|
1152
|
-
552
|
1153
|
-
553
|
1154
|
-
554
|
1155
|
-
555
|
1156
|
-
556
|
1157
|
-
557
|
1158
|
-
558
|
1159
|
-
559
|
1160
|
-
560
|
1161
|
-
561
|
1162
|
-
562
|
1163
|
-
563
|
1164
|
-
564
|
1165
|
-
565
|
1166
1173
|
566
|
1167
1174
|
567
|
1168
1175
|
568
|
@@ -1172,10 +1179,27 @@ more targets.</p>
|
|
1172
1179
|
572
|
1173
1180
|
573
|
1174
1181
|
574
|
1175
|
-
575
|
1182
|
+
575
|
1183
|
+
576
|
1184
|
+
577
|
1185
|
+
578
|
1186
|
+
579
|
1187
|
+
580
|
1188
|
+
581
|
1189
|
+
582
|
1190
|
+
583
|
1191
|
+
584
|
1192
|
+
585
|
1193
|
+
586
|
1194
|
+
587
|
1195
|
+
588
|
1196
|
+
589
|
1197
|
+
590
|
1198
|
+
591
|
1199
|
+
592</pre>
|
1176
1200
|
</td>
|
1177
1201
|
<td>
|
1178
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1202
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 566</span>
|
1179
1203
|
|
1180
1204
|
<span class='kw'>def</span> <span class='id identifier rubyid_date_update?'>date_update?</span>
|
1181
1205
|
|
@@ -1235,15 +1259,15 @@ more targets.</p>
|
|
1235
1259
|
<pre class="lines">
|
1236
1260
|
|
1237
1261
|
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1262
|
+
664
|
1263
|
+
665
|
1264
|
+
666
|
1265
|
+
667
|
1266
|
+
668
|
1267
|
+
669</pre>
|
1244
1268
|
</td>
|
1245
1269
|
<td>
|
1246
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1270
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 664</span>
|
1247
1271
|
|
1248
1272
|
<span class='kw'>def</span> <span class='id identifier rubyid_fork'>fork</span><span class='lparen'>(</span> <span class='op'>&</span><span class='id identifier rubyid_blk'>blk</span> <span class='rparen'>)</span>
|
1249
1273
|
<span class='id identifier rubyid_host_in'>host_in</span>
|
@@ -1295,23 +1319,6 @@ more targets.</p>
|
|
1295
1319
|
<pre class="lines">
|
1296
1320
|
|
1297
1321
|
|
1298
|
-
579
|
1299
|
-
580
|
1300
|
-
581
|
1301
|
-
582
|
1302
|
-
583
|
1303
|
-
584
|
1304
|
-
585
|
1305
|
-
586
|
1306
|
-
587
|
1307
|
-
588
|
1308
|
-
589
|
1309
|
-
590
|
1310
|
-
591
|
1311
|
-
592
|
1312
|
-
593
|
1313
|
-
594
|
1314
|
-
595
|
1315
1322
|
596
|
1316
1323
|
597
|
1317
1324
|
598
|
@@ -1323,10 +1330,27 @@ more targets.</p>
|
|
1323
1330
|
604
|
1324
1331
|
605
|
1325
1332
|
606
|
1326
|
-
607
|
1333
|
+
607
|
1334
|
+
608
|
1335
|
+
609
|
1336
|
+
610
|
1337
|
+
611
|
1338
|
+
612
|
1339
|
+
613
|
1340
|
+
614
|
1341
|
+
615
|
1342
|
+
616
|
1343
|
+
617
|
1344
|
+
618
|
1345
|
+
619
|
1346
|
+
620
|
1347
|
+
621
|
1348
|
+
622
|
1349
|
+
623
|
1350
|
+
624</pre>
|
1327
1351
|
</td>
|
1328
1352
|
<td>
|
1329
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1353
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 596</span>
|
1330
1354
|
|
1331
1355
|
<span class='kw'>def</span> <span class='id identifier rubyid_mark_update?'>mark_update?</span>
|
1332
1356
|
|
@@ -1410,12 +1434,12 @@ more targets.</p>
|
|
1410
1434
|
<pre class="lines">
|
1411
1435
|
|
1412
1436
|
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1437
|
+
651
|
1438
|
+
652
|
1439
|
+
653</pre>
|
1416
1440
|
</td>
|
1417
1441
|
<td>
|
1418
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1442
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 651</span>
|
1419
1443
|
|
1420
1444
|
<span class='kw'>def</span> <span class='id identifier rubyid_rbrun'>rbrun</span><span class='lparen'>(</span> <span class='id identifier rubyid_desc'>desc</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span>
|
1421
1445
|
<span class='const'>RubyCommand</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span> <span class='id identifier rubyid_desc'>desc</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_run'>run</span>
|
@@ -1473,13 +1497,13 @@ more targets.</p>
|
|
1473
1497
|
<pre class="lines">
|
1474
1498
|
|
1475
1499
|
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1500
|
+
658
|
1501
|
+
659
|
1502
|
+
660
|
1503
|
+
661</pre>
|
1480
1504
|
</td>
|
1481
1505
|
<td>
|
1482
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1506
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 658</span>
|
1483
1507
|
|
1484
1508
|
<span class='kw'>def</span> <span class='id identifier rubyid_rbuse'>rbuse</span><span class='lparen'>(</span> <span class='id identifier rubyid_desc'>desc</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span>
|
1485
1509
|
<span class='id identifier rubyid_rb'>rb</span> <span class='op'>=</span> <span class='const'>RubyCommand</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span> <span class='id identifier rubyid_desc'>desc</span><span class='comma'>,</span> <span class='op'>&</span><span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span>
|
@@ -1516,17 +1540,17 @@ more targets.</p>
|
|
1516
1540
|
<pre class="lines">
|
1517
1541
|
|
1518
1542
|
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1543
|
+
549
|
1544
|
+
550
|
1545
|
+
551
|
1546
|
+
552
|
1547
|
+
553
|
1548
|
+
554
|
1549
|
+
555
|
1550
|
+
556</pre>
|
1527
1551
|
</td>
|
1528
1552
|
<td>
|
1529
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1553
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 549</span>
|
1530
1554
|
|
1531
1555
|
<span class='kw'>def</span> <span class='id identifier rubyid_run'>run</span>
|
1532
1556
|
<span class='kw'>if</span> <span class='id identifier rubyid_update?'>update?</span>
|
@@ -1567,11 +1591,11 @@ more targets.</p>
|
|
1567
1591
|
<pre class="lines">
|
1568
1592
|
|
1569
1593
|
|
1570
|
-
|
1571
|
-
|
1594
|
+
539
|
1595
|
+
540</pre>
|
1572
1596
|
</td>
|
1573
1597
|
<td>
|
1574
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1598
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 539</span>
|
1575
1599
|
|
1576
1600
|
<span class='kw'>def</span> <span class='id identifier rubyid_setup'>setup</span>
|
1577
1601
|
<span class='kw'>end</span></pre>
|
@@ -1606,12 +1630,12 @@ more targets.</p>
|
|
1606
1630
|
<pre class="lines">
|
1607
1631
|
|
1608
1632
|
|
1609
|
-
|
1610
|
-
|
1611
|
-
|
1633
|
+
638
|
1634
|
+
639
|
1635
|
+
640</pre>
|
1612
1636
|
</td>
|
1613
1637
|
<td>
|
1614
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1638
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 638</span>
|
1615
1639
|
|
1616
1640
|
<span class='kw'>def</span> <span class='id identifier rubyid_shrun'>shrun</span><span class='lparen'>(</span> <span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span>
|
1617
1641
|
<span class='const'>ShellCommand</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span> <span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_run'>run</span>
|
@@ -1647,13 +1671,13 @@ more targets.</p>
|
|
1647
1671
|
<pre class="lines">
|
1648
1672
|
|
1649
1673
|
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1674
|
+
643
|
1675
|
+
644
|
1676
|
+
645
|
1677
|
+
646</pre>
|
1654
1678
|
</td>
|
1655
1679
|
<td>
|
1656
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1680
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 643</span>
|
1657
1681
|
|
1658
1682
|
<span class='kw'>def</span> <span class='id identifier rubyid_shuse'>shuse</span><span class='lparen'>(</span> <span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span>
|
1659
1683
|
<span class='id identifier rubyid_sh'>sh</span> <span class='op'>=</span> <span class='const'>ShellCommand</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span><span class='lparen'>(</span> <span class='id identifier rubyid_cmd'>cmd</span> <span class='rparen'>)</span>
|
@@ -1690,12 +1714,12 @@ more targets.</p>
|
|
1690
1714
|
<pre class="lines">
|
1691
1715
|
|
1692
1716
|
|
1693
|
-
|
1694
|
-
|
1695
|
-
|
1717
|
+
628
|
1718
|
+
629
|
1719
|
+
630</pre>
|
1696
1720
|
</td>
|
1697
1721
|
<td>
|
1698
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1722
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 628</span>
|
1699
1723
|
|
1700
1724
|
<span class='kw'>def</span> <span class='id identifier rubyid_source'>source</span>
|
1701
1725
|
<span class='ivar'>@sources</span><span class='lbracket'>[</span><span class='int'>0</span><span class='rbracket'>]</span>
|
@@ -1703,6 +1727,45 @@ more targets.</p>
|
|
1703
1727
|
</td>
|
1704
1728
|
</tr>
|
1705
1729
|
</table>
|
1730
|
+
</div>
|
1731
|
+
|
1732
|
+
<div class="method_details ">
|
1733
|
+
<h3 class="signature " id="step-instance_method">
|
1734
|
+
|
1735
|
+
- (<tt>Object</tt>) <strong>step</strong>
|
1736
|
+
|
1737
|
+
|
1738
|
+
|
1739
|
+
|
1740
|
+
|
1741
|
+
</h3><div class="docstring">
|
1742
|
+
<div class="discussion">
|
1743
|
+
|
1744
|
+
<p>Default to no action. Typically this method is redefined.</p>
|
1745
|
+
|
1746
|
+
|
1747
|
+
</div>
|
1748
|
+
</div>
|
1749
|
+
<div class="tags">
|
1750
|
+
|
1751
|
+
|
1752
|
+
</div><table class="source_code">
|
1753
|
+
<tr>
|
1754
|
+
<td>
|
1755
|
+
<pre class="lines">
|
1756
|
+
|
1757
|
+
|
1758
|
+
544
|
1759
|
+
545</pre>
|
1760
|
+
</td>
|
1761
|
+
<td>
|
1762
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 544</span>
|
1763
|
+
|
1764
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_step'>step</span>
|
1765
|
+
<span class='kw'>end</span></pre>
|
1766
|
+
</td>
|
1767
|
+
</tr>
|
1768
|
+
</table>
|
1706
1769
|
</div>
|
1707
1770
|
|
1708
1771
|
<div class="method_details ">
|
@@ -1731,12 +1794,12 @@ more targets.</p>
|
|
1731
1794
|
<pre class="lines">
|
1732
1795
|
|
1733
1796
|
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1797
|
+
633
|
1798
|
+
634
|
1799
|
+
635</pre>
|
1737
1800
|
</td>
|
1738
1801
|
<td>
|
1739
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1802
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 633</span>
|
1740
1803
|
|
1741
1804
|
<span class='kw'>def</span> <span class='id identifier rubyid_target'>target</span>
|
1742
1805
|
<span class='ivar'>@targets</span><span class='lbracket'>[</span><span class='int'>0</span><span class='rbracket'>]</span>
|
@@ -1785,12 +1848,12 @@ more targets.</p>
|
|
1785
1848
|
<pre class="lines">
|
1786
1849
|
|
1787
1850
|
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1851
|
+
560
|
1852
|
+
561
|
1853
|
+
562</pre>
|
1791
1854
|
</td>
|
1792
1855
|
<td>
|
1793
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1856
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 560</span>
|
1794
1857
|
|
1795
1858
|
<span class='kw'>def</span> <span class='id identifier rubyid_update?'>update?</span>
|
1796
1859
|
<span class='kw'>true</span>
|
@@ -1826,15 +1889,15 @@ more targets.</p>
|
|
1826
1889
|
<pre class="lines">
|
1827
1890
|
|
1828
1891
|
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1833
|
-
|
1834
|
-
|
1892
|
+
672
|
1893
|
+
673
|
1894
|
+
674
|
1895
|
+
675
|
1896
|
+
676
|
1897
|
+
677</pre>
|
1835
1898
|
</td>
|
1836
1899
|
<td>
|
1837
|
-
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line
|
1900
|
+
<pre class="code"><span class="info file"># File 'lib/rubu.rb', line 672</span>
|
1838
1901
|
|
1839
1902
|
<span class='kw'>def</span> <span class='id identifier rubyid_walk'>walk</span><span class='lparen'>(</span> <span class='op'>&</span><span class='id identifier rubyid_blk'>blk</span> <span class='rparen'>)</span>
|
1840
1903
|
<span class='id identifier rubyid_host_in'>host_in</span>
|
@@ -1852,7 +1915,7 @@ more targets.</p>
|
|
1852
1915
|
</div>
|
1853
1916
|
|
1854
1917
|
<div id="footer">
|
1855
|
-
Generated on
|
1918
|
+
Generated on Thu Aug 30 16:05:51 2018 by
|
1856
1919
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1857
1920
|
0.8.7.6 (ruby-2.3.3).
|
1858
1921
|
</div>
|