rumodule 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.
- data/CHANGELOG.rdoc +3 -0
- data/bin/rumodule +7 -3
- data/doc/CmdAdd.html +56 -56
- data/doc/CmdDisplay.html +7 -7
- data/doc/CmdHelp.html +8 -8
- data/doc/CmdList.html +6 -6
- data/doc/CmdRm.html +54 -54
- data/doc/CmdSadd.html +8 -8
- data/doc/CmdSlist.html +6 -6
- data/doc/CmdSrm.html +8 -8
- data/doc/CmdWhich.html +6 -6
- data/doc/EnvVar.html +13 -5
- data/doc/Rumodule.html +30 -30
- data/doc/RumoduleCommon.html +2 -2
- data/doc/RumoduleMod.html +2 -2
- data/doc/Utility.html +70 -70
- data/doc/_index.html +2 -2
- data/doc/file.CHANGELOG.html +6 -3
- data/doc/file.README.html +2 -2
- data/doc/index.html +2 -2
- data/doc/method_list.html +43 -43
- data/doc/top-level-namespace.html +2 -2
- data/lib/version.rb +1 -1
- metadata +52 -45
- checksums.yaml +0 -7
data/CHANGELOG.rdoc
CHANGED
data/bin/rumodule
CHANGED
@@ -5,7 +5,7 @@ include Como
|
|
5
5
|
require_relative '../lib/version'
|
6
6
|
|
7
7
|
|
8
|
-
Spec.command( 'rumodule', 'Tero Isannainen', '2014', [
|
8
|
+
Spec.command( 'rumodule', 'Tero Isannainen', '2014,2016', [
|
9
9
|
[ :exclusive, 'doc', '-d', "Documentation." ],
|
10
10
|
[ :opt_single, 'shell', '-s', "Shell." ],
|
11
11
|
[ :single, 'command', '-c', "Command." ],
|
@@ -406,8 +406,12 @@ class EnvVar < RumoduleCommon
|
|
406
406
|
else
|
407
407
|
case SHELL
|
408
408
|
when 'zsh', 'sh', 'bash'; "export #{name}=#{@value.join(':')}"
|
409
|
-
|
410
|
-
|
409
|
+
when 'fish';
|
410
|
+
if name == 'PATH'
|
411
|
+
"set -gx #{name} #{@value.join(' ')}"
|
412
|
+
else
|
413
|
+
"set -gx #{name} #{@value.join(':')}"
|
414
|
+
end
|
411
415
|
else raise "Unknown shell: \"#{SHELL}\""
|
412
416
|
end
|
413
417
|
end
|
data/doc/CmdAdd.html
CHANGED
@@ -466,10 +466,6 @@
|
|
466
466
|
<pre class="lines">
|
467
467
|
|
468
468
|
|
469
|
-
822
|
470
|
-
823
|
471
|
-
824
|
472
|
-
825
|
473
469
|
826
|
474
470
|
827
|
475
471
|
828
|
@@ -478,10 +474,14 @@
|
|
478
474
|
831
|
479
475
|
832
|
480
476
|
833
|
481
|
-
834
|
477
|
+
834
|
478
|
+
835
|
479
|
+
836
|
480
|
+
837
|
481
|
+
838</pre>
|
482
482
|
</td>
|
483
483
|
<td>
|
484
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
484
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 826</span>
|
485
485
|
|
486
486
|
<span class='kw'>def</span> <span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='id identifier rubyid_mods'>mods</span><span class='comma'>,</span> <span class='id identifier rubyid_list'>list</span> <span class='op'>=</span> <span class='symbol'>:normal</span> <span class='rparen'>)</span>
|
487
487
|
<span class='id identifier rubyid_mods'>mods</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_mod'>mod</span><span class='op'>|</span>
|
@@ -516,12 +516,12 @@
|
|
516
516
|
<pre class="lines">
|
517
517
|
|
518
518
|
|
519
|
-
|
520
|
-
|
521
|
-
|
519
|
+
901
|
520
|
+
902
|
521
|
+
903</pre>
|
522
522
|
</td>
|
523
523
|
<td>
|
524
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
524
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 901</span>
|
525
525
|
|
526
526
|
<span class='kw'>def</span> <span class='id identifier rubyid_add'>add</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
527
527
|
<span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='lbracket'>[</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rbracket'>]</span><span class='comma'>,</span> <span class='symbol'>:sub</span> <span class='rparen'>)</span>
|
@@ -546,12 +546,12 @@
|
|
546
546
|
<pre class="lines">
|
547
547
|
|
548
548
|
|
549
|
-
|
550
|
-
|
551
|
-
|
549
|
+
857
|
550
|
+
858
|
551
|
+
859</pre>
|
552
552
|
</td>
|
553
553
|
<td>
|
554
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
554
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 857</span>
|
555
555
|
|
556
556
|
<span class='kw'>def</span> <span class='id identifier rubyid_append_path'>append_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
557
557
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>true</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_append_path'>append_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -576,14 +576,14 @@
|
|
576
576
|
<pre class="lines">
|
577
577
|
|
578
578
|
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
579
|
+
889
|
580
|
+
890
|
581
|
+
891
|
582
|
+
892
|
583
|
+
893</pre>
|
584
584
|
</td>
|
585
585
|
<td>
|
586
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
586
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 889</span>
|
587
587
|
|
588
588
|
<span class='kw'>def</span> <span class='id identifier rubyid_conflict'>conflict</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
589
589
|
<span class='kw'>if</span> <span class='id identifier rubyid_is_loaded'>is_loaded</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
@@ -610,12 +610,12 @@
|
|
610
610
|
<pre class="lines">
|
611
611
|
|
612
612
|
|
613
|
-
|
614
|
-
|
615
|
-
|
613
|
+
896
|
614
|
+
897
|
615
|
+
898</pre>
|
616
616
|
</td>
|
617
617
|
<td>
|
618
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
618
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 896</span>
|
619
619
|
|
620
620
|
<span class='kw'>def</span> <span class='id identifier rubyid_is_loaded'>is_loaded</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
621
621
|
<span class='id identifier rubyid__is_loaded'>_is_loaded</span><span class='lparen'>(</span> <span class='id identifier rubyid_findModule'>findModule</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span> <span class='rparen'>)</span>
|
@@ -640,12 +640,12 @@
|
|
640
640
|
<pre class="lines">
|
641
641
|
|
642
642
|
|
643
|
-
|
644
|
-
|
645
|
-
|
643
|
+
862
|
644
|
+
863
|
645
|
+
864</pre>
|
646
646
|
</td>
|
647
647
|
<td>
|
648
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
648
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 862</span>
|
649
649
|
|
650
650
|
<span class='kw'>def</span> <span class='id identifier rubyid_prepend_path'>prepend_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
651
651
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>true</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_prepend_path'>prepend_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -670,14 +670,14 @@
|
|
670
670
|
<pre class="lines">
|
671
671
|
|
672
672
|
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
673
|
+
882
|
674
|
+
883
|
675
|
+
884
|
676
|
+
885
|
677
|
+
886</pre>
|
678
678
|
</td>
|
679
679
|
<td>
|
680
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
680
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 882</span>
|
681
681
|
|
682
682
|
<span class='kw'>def</span> <span class='id identifier rubyid_prereq'>prereq</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
683
683
|
<span class='kw'>unless</span> <span class='id identifier rubyid_is_loaded'>is_loaded</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
@@ -704,17 +704,17 @@
|
|
704
704
|
<pre class="lines">
|
705
705
|
|
706
706
|
|
707
|
-
868
|
708
|
-
869
|
709
|
-
870
|
710
|
-
871
|
711
707
|
872
|
712
708
|
873
|
713
709
|
874
|
714
|
-
875
|
710
|
+
875
|
711
|
+
876
|
712
|
+
877
|
713
|
+
878
|
714
|
+
879</pre>
|
715
715
|
</td>
|
716
716
|
<td>
|
717
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
717
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 872</span>
|
718
718
|
|
719
719
|
<span class='kw'>def</span> <span class='id identifier rubyid_pushenv'>pushenv</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
720
720
|
<span class='comment'># Store old value if it exists.
|
@@ -744,12 +744,12 @@
|
|
744
744
|
<pre class="lines">
|
745
745
|
|
746
746
|
|
747
|
-
|
748
|
-
|
749
|
-
|
747
|
+
867
|
748
|
+
868
|
749
|
+
869</pre>
|
750
750
|
</td>
|
751
751
|
<td>
|
752
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
752
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 867</span>
|
753
753
|
|
754
754
|
<span class='kw'>def</span> <span class='id identifier rubyid_remove_path'>remove_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
755
755
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>true</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_remove_path'>remove_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -774,12 +774,12 @@
|
|
774
774
|
<pre class="lines">
|
775
775
|
|
776
776
|
|
777
|
-
|
778
|
-
|
779
|
-
|
777
|
+
845
|
778
|
+
846
|
779
|
+
847</pre>
|
780
780
|
</td>
|
781
781
|
<td>
|
782
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
782
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 845</span>
|
783
783
|
|
784
784
|
<span class='kw'>def</span> <span class='id identifier rubyid_setenv'>setenv</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
785
785
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>true</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_set'>set</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -804,14 +804,14 @@
|
|
804
804
|
<pre class="lines">
|
805
805
|
|
806
806
|
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
807
|
+
850
|
808
|
+
851
|
809
|
+
852
|
810
|
+
853
|
811
|
+
854</pre>
|
812
812
|
</td>
|
813
813
|
<td>
|
814
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
814
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 850</span>
|
815
815
|
|
816
816
|
<span class='kw'>def</span> <span class='id identifier rubyid_unsetenv'>unsetenv</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='op'>=</span> <span class='kw'>nil</span> <span class='rparen'>)</span>
|
817
817
|
<span class='kw'>if</span> <span class='id identifier rubyid_v'>v</span> <span class='op'>=</span> <span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span> <span class='rparen'>)</span>
|
@@ -828,9 +828,9 @@
|
|
828
828
|
</div>
|
829
829
|
|
830
830
|
<div id="footer">
|
831
|
-
Generated on
|
831
|
+
Generated on Thu May 19 21:56:32 2016 by
|
832
832
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
833
|
-
0.8.7.6 (ruby-2.1
|
833
|
+
0.8.7.6 (ruby-2.3.1).
|
834
834
|
</div>
|
835
835
|
|
836
836
|
</body>
|
data/doc/CmdDisplay.html
CHANGED
@@ -229,13 +229,13 @@
|
|
229
229
|
<pre class="lines">
|
230
230
|
|
231
231
|
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
232
|
+
784
|
233
|
+
785
|
234
|
+
786
|
235
|
+
787</pre>
|
236
236
|
</td>
|
237
237
|
<td>
|
238
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
238
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 784</span>
|
239
239
|
|
240
240
|
<span class='kw'>def</span> <span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
241
241
|
<span class='id identifier rubyid_mod'>mod</span> <span class='op'>=</span> <span class='id identifier rubyid_findModule'>findModule</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
@@ -251,9 +251,9 @@
|
|
251
251
|
</div>
|
252
252
|
|
253
253
|
<div id="footer">
|
254
|
-
Generated on
|
254
|
+
Generated on Thu May 19 21:56:32 2016 by
|
255
255
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
256
|
-
0.8.7.6 (ruby-2.1
|
256
|
+
0.8.7.6 (ruby-2.3.1).
|
257
257
|
</div>
|
258
258
|
|
259
259
|
</body>
|
data/doc/CmdHelp.html
CHANGED
@@ -229,10 +229,6 @@
|
|
229
229
|
<pre class="lines">
|
230
230
|
|
231
231
|
|
232
|
-
747
|
233
|
-
748
|
234
|
-
749
|
235
|
-
750
|
236
232
|
751
|
237
233
|
752
|
238
234
|
753
|
@@ -254,10 +250,14 @@
|
|
254
250
|
769
|
255
251
|
770
|
256
252
|
771
|
257
|
-
772
|
253
|
+
772
|
254
|
+
773
|
255
|
+
774
|
256
|
+
775
|
257
|
+
776</pre>
|
258
258
|
</td>
|
259
259
|
<td>
|
260
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
260
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 751</span>
|
261
261
|
|
262
262
|
<span class='kw'>def</span> <span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='op'>=</span> <span class='kw'>nil</span> <span class='rparen'>)</span>
|
263
263
|
|
@@ -295,9 +295,9 @@
|
|
295
295
|
</div>
|
296
296
|
|
297
297
|
<div id="footer">
|
298
|
-
Generated on
|
298
|
+
Generated on Thu May 19 21:56:32 2016 by
|
299
299
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
300
|
-
0.8.7.6 (ruby-2.1
|
300
|
+
0.8.7.6 (ruby-2.3.1).
|
301
301
|
</div>
|
302
302
|
|
303
303
|
</body>
|
data/doc/CmdList.html
CHANGED
@@ -229,12 +229,12 @@
|
|
229
229
|
<pre class="lines">
|
230
230
|
|
231
231
|
|
232
|
-
|
233
|
-
|
234
|
-
|
232
|
+
805
|
233
|
+
806
|
234
|
+
807</pre>
|
235
235
|
</td>
|
236
236
|
<td>
|
237
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
237
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 805</span>
|
238
238
|
|
239
239
|
<span class='kw'>def</span> <span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='op'>=</span> <span class='kw'>nil</span> <span class='rparen'>)</span>
|
240
240
|
<span class='id identifier rubyid_usage'>usage</span> <span class='id identifier rubyid_loaded'>loaded</span>
|
@@ -249,9 +249,9 @@
|
|
249
249
|
</div>
|
250
250
|
|
251
251
|
<div id="footer">
|
252
|
-
Generated on
|
252
|
+
Generated on Thu May 19 21:56:32 2016 by
|
253
253
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
254
|
-
0.8.7.6 (ruby-2.1
|
254
|
+
0.8.7.6 (ruby-2.3.1).
|
255
255
|
</div>
|
256
256
|
|
257
257
|
</body>
|
data/doc/CmdRm.html
CHANGED
@@ -455,18 +455,18 @@
|
|
455
455
|
<pre class="lines">
|
456
456
|
|
457
457
|
|
458
|
-
925
|
459
|
-
926
|
460
|
-
927
|
461
|
-
928
|
462
458
|
929
|
463
459
|
930
|
464
460
|
931
|
465
461
|
932
|
466
|
-
933
|
462
|
+
933
|
463
|
+
934
|
464
|
+
935
|
465
|
+
936
|
466
|
+
937</pre>
|
467
467
|
</td>
|
468
468
|
<td>
|
469
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
469
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 929</span>
|
470
470
|
|
471
471
|
<span class='kw'>def</span> <span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='id identifier rubyid_mods'>mods</span><span class='comma'>,</span> <span class='id identifier rubyid_list'>list</span> <span class='op'>=</span> <span class='symbol'>:normal</span> <span class='rparen'>)</span>
|
472
472
|
<span class='id identifier rubyid_mods'>mods</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_mod'>mod</span><span class='op'>|</span>
|
@@ -497,12 +497,12 @@
|
|
497
497
|
<pre class="lines">
|
498
498
|
|
499
499
|
|
500
|
-
|
501
|
-
|
502
|
-
|
500
|
+
991
|
501
|
+
992
|
502
|
+
993</pre>
|
503
503
|
</td>
|
504
504
|
<td>
|
505
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
505
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 991</span>
|
506
506
|
|
507
507
|
<span class='kw'>def</span> <span class='id identifier rubyid_add'>add</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
508
508
|
<span class='id identifier rubyid_action'>action</span><span class='lparen'>(</span> <span class='lbracket'>[</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rbracket'>]</span><span class='comma'>,</span> <span class='symbol'>:sub</span> <span class='rparen'>)</span>
|
@@ -527,12 +527,12 @@
|
|
527
527
|
<pre class="lines">
|
528
528
|
|
529
529
|
|
530
|
-
|
531
|
-
|
532
|
-
|
530
|
+
955
|
531
|
+
956
|
532
|
+
957</pre>
|
533
533
|
</td>
|
534
534
|
<td>
|
535
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
535
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 955</span>
|
536
536
|
|
537
537
|
<span class='kw'>def</span> <span class='id identifier rubyid_append_path'>append_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
538
538
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_remove_path'>remove_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -557,12 +557,12 @@
|
|
557
557
|
<pre class="lines">
|
558
558
|
|
559
559
|
|
560
|
-
|
561
|
-
|
562
|
-
|
560
|
+
983
|
561
|
+
984
|
562
|
+
985</pre>
|
563
563
|
</td>
|
564
564
|
<td>
|
565
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
565
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 983</span>
|
566
566
|
|
567
567
|
<span class='kw'>def</span> <span class='id identifier rubyid_conflict'>conflict</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
568
568
|
<span class='kw'>true</span>
|
@@ -587,12 +587,12 @@
|
|
587
587
|
<pre class="lines">
|
588
588
|
|
589
589
|
|
590
|
-
|
591
|
-
|
592
|
-
|
590
|
+
987
|
591
|
+
988
|
592
|
+
989</pre>
|
593
593
|
</td>
|
594
594
|
<td>
|
595
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
595
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 987</span>
|
596
596
|
|
597
597
|
<span class='kw'>def</span> <span class='id identifier rubyid_is_loaded'>is_loaded</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
598
598
|
<span class='kw'>true</span>
|
@@ -617,12 +617,12 @@
|
|
617
617
|
<pre class="lines">
|
618
618
|
|
619
619
|
|
620
|
-
|
621
|
-
|
622
|
-
|
620
|
+
959
|
621
|
+
960
|
622
|
+
961</pre>
|
623
623
|
</td>
|
624
624
|
<td>
|
625
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
625
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 959</span>
|
626
626
|
|
627
627
|
<span class='kw'>def</span> <span class='id identifier rubyid_prepend_path'>prepend_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
628
628
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_remove_path'>remove_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -647,12 +647,12 @@
|
|
647
647
|
<pre class="lines">
|
648
648
|
|
649
649
|
|
650
|
-
|
651
|
-
|
652
|
-
|
650
|
+
979
|
651
|
+
980
|
652
|
+
981</pre>
|
653
653
|
</td>
|
654
654
|
<td>
|
655
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
655
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 979</span>
|
656
656
|
|
657
657
|
<span class='kw'>def</span> <span class='id identifier rubyid_prereq'>prereq</span><span class='lparen'>(</span> <span class='id identifier rubyid_mod'>mod</span> <span class='rparen'>)</span>
|
658
658
|
<span class='kw'>true</span>
|
@@ -677,20 +677,20 @@
|
|
677
677
|
<pre class="lines">
|
678
678
|
|
679
679
|
|
680
|
-
963
|
681
|
-
964
|
682
|
-
965
|
683
|
-
966
|
684
680
|
967
|
685
681
|
968
|
686
682
|
969
|
687
683
|
970
|
688
684
|
971
|
689
685
|
972
|
690
|
-
973
|
686
|
+
973
|
687
|
+
974
|
688
|
+
975
|
689
|
+
976
|
690
|
+
977</pre>
|
691
691
|
</td>
|
692
692
|
<td>
|
693
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
693
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 967</span>
|
694
694
|
|
695
695
|
<span class='kw'>def</span> <span class='id identifier rubyid_pushenv'>pushenv</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
696
696
|
|
@@ -723,12 +723,12 @@
|
|
723
723
|
<pre class="lines">
|
724
724
|
|
725
725
|
|
726
|
-
|
727
|
-
|
728
|
-
|
726
|
+
963
|
727
|
+
964
|
728
|
+
965</pre>
|
729
729
|
</td>
|
730
730
|
<td>
|
731
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
731
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 963</span>
|
732
732
|
|
733
733
|
<span class='kw'>def</span> <span class='id identifier rubyid_remove_path'>remove_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
734
734
|
<span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='kw'>true</span> <span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_prepend_path'>prepend_path</span><span class='lparen'>(</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
@@ -765,14 +765,14 @@
|
|
765
765
|
<pre class="lines">
|
766
766
|
|
767
767
|
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
768
|
+
943
|
769
|
+
944
|
770
|
+
945
|
771
|
+
946
|
772
|
+
947</pre>
|
773
773
|
</td>
|
774
774
|
<td>
|
775
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
775
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 943</span>
|
776
776
|
|
777
777
|
<span class='kw'>def</span> <span class='id identifier rubyid_setenv'>setenv</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='rparen'>)</span>
|
778
778
|
<span class='kw'>if</span> <span class='id identifier rubyid_v'>v</span> <span class='op'>=</span> <span class='id identifier rubyid_getenvar'>getenvar</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span> <span class='rparen'>)</span>
|
@@ -799,14 +799,14 @@
|
|
799
799
|
<pre class="lines">
|
800
800
|
|
801
801
|
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
802
|
+
949
|
803
|
+
950
|
804
|
+
951
|
805
|
+
952
|
806
|
+
953</pre>
|
807
807
|
</td>
|
808
808
|
<td>
|
809
|
-
<pre class="code"><span class="info file"># File 'bin/rumodule', line
|
809
|
+
<pre class="code"><span class="info file"># File 'bin/rumodule', line 949</span>
|
810
810
|
|
811
811
|
<span class='kw'>def</span> <span class='id identifier rubyid_unsetenv'>unsetenv</span><span class='lparen'>(</span> <span class='id identifier rubyid_var'>var</span><span class='comma'>,</span> <span class='id identifier rubyid_value'>value</span> <span class='op'>=</span> <span class='kw'>nil</span> <span class='rparen'>)</span>
|
812
812
|
<span class='kw'>if</span> <span class='id identifier rubyid_value'>value</span>
|
@@ -823,9 +823,9 @@
|
|
823
823
|
</div>
|
824
824
|
|
825
825
|
<div id="footer">
|
826
|
-
Generated on
|
826
|
+
Generated on Thu May 19 21:56:32 2016 by
|
827
827
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
828
|
-
0.8.7.6 (ruby-2.1
|
828
|
+
0.8.7.6 (ruby-2.3.1).
|
829
829
|
</div>
|
830
830
|
|
831
831
|
</body>
|