fluent_command_builder 0.1.22 → 0.1.23
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/lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb +9 -9
- data/lib/fluent_command_builder/command_builders/aspnet_compiler_35.rb +9 -9
- data/lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb +9 -9
- data/lib/fluent_command_builder/command_builders/bundle_11.rb +30 -30
- data/lib/fluent_command_builder/command_builders/cucumber_11.rb +17 -17
- data/lib/fluent_command_builder/command_builders/dotcover_11.rb +2 -2
- data/lib/fluent_command_builder/command_builders/installutil_11.rb +4 -4
- data/lib/fluent_command_builder/command_builders/installutil_20.rb +4 -4
- data/lib/fluent_command_builder/command_builders/installutil_35.rb +4 -4
- data/lib/fluent_command_builder/command_builders/installutil_40.rb +4 -4
- data/lib/fluent_command_builder/command_builders/msbuild_20.rb +5 -5
- data/lib/fluent_command_builder/command_builders/msbuild_30.rb +5 -5
- data/lib/fluent_command_builder/command_builders/msbuild_35.rb +7 -7
- data/lib/fluent_command_builder/command_builders/msbuild_40.rb +6 -6
- data/lib/fluent_command_builder/command_builders/msdeploy_40.rb +8 -8
- data/lib/fluent_command_builder/command_builders/mstest_2005.rb +5 -5
- data/lib/fluent_command_builder/command_builders/mstest_2008.rb +6 -6
- data/lib/fluent_command_builder/command_builders/mstest_2010.rb +7 -7
- data/lib/fluent_command_builder/command_builders/netsh_2008.rb +8 -8
- data/lib/fluent_command_builder/command_builders/nunit_25.rb +7 -7
- data/lib/fluent_command_builder/command_builders/rake_09.rb +13 -13
- data/lib/fluent_command_builder/command_builders/sevenzip_92.rb +25 -25
- data/lib/fluent_command_builder/command_builders/simian_23.rb +2 -2
- data/lib/fluent_command_builder/command_builders/tf_2010.rb +114 -114
- data/lib/fluent_command_builder/command_builders/tf_tee_2010.rb +152 -196
- metadata +2 -2
@@ -48,7 +48,7 @@ module FluentCommandBuilder
|
|
48
48
|
def compare_with_shelveset_version shelveset_item_spec
|
49
49
|
CompareWithShelvesetVersion.new @builder, shelveset_item_spec
|
50
50
|
end
|
51
|
-
def configure_compare_tool
|
51
|
+
def configure_compare_tool
|
52
52
|
@builder.append ' difference /configure'
|
53
53
|
yield @builder if block_given?
|
54
54
|
self
|
@@ -116,12 +116,12 @@ module FluentCommandBuilder
|
|
116
116
|
def list_proxy_records url
|
117
117
|
ListProxyRecords.new @builder, url
|
118
118
|
end
|
119
|
-
def enable_proxy
|
119
|
+
def enable_proxy
|
120
120
|
@builder.append ' proxy /enabled:true'
|
121
121
|
yield @builder if block_given?
|
122
122
|
self
|
123
123
|
end
|
124
|
-
def disable_proxy
|
124
|
+
def disable_proxy
|
125
125
|
@builder.append ' proxy /enabled:false'
|
126
126
|
yield @builder if block_given?
|
127
127
|
self
|
@@ -180,7 +180,7 @@ module FluentCommandBuilder
|
|
180
180
|
def map_folder server_folder, local_folder
|
181
181
|
MapFolder.new @builder, server_folder, local_folder
|
182
182
|
end
|
183
|
-
def unmap_folder
|
183
|
+
def unmap_folder
|
184
184
|
UnmapFolder.new @builder
|
185
185
|
end
|
186
186
|
def cloak_folder server_folder
|
@@ -220,12 +220,12 @@ module FluentCommandBuilder
|
|
220
220
|
yield @builder if block_given?
|
221
221
|
self
|
222
222
|
end
|
223
|
-
def no_prompt
|
223
|
+
def no_prompt
|
224
224
|
@builder.append ' /noPrompt'
|
225
225
|
yield @builder if block_given?
|
226
226
|
self
|
227
227
|
end
|
228
|
-
def recursive
|
228
|
+
def recursive
|
229
229
|
@builder.append ' /recursive'
|
230
230
|
yield @builder if block_given?
|
231
231
|
self
|
@@ -247,7 +247,7 @@ module FluentCommandBuilder
|
|
247
247
|
yield @builder if block_given?
|
248
248
|
self
|
249
249
|
end
|
250
|
-
def no_get
|
250
|
+
def no_get
|
251
251
|
@builder.append ' /noGet'
|
252
252
|
yield @builder if block_given?
|
253
253
|
self
|
@@ -257,17 +257,17 @@ module FluentCommandBuilder
|
|
257
257
|
yield @builder if block_given?
|
258
258
|
self
|
259
259
|
end
|
260
|
-
def no_prompt
|
260
|
+
def no_prompt
|
261
261
|
@builder.append ' /noPrompt'
|
262
262
|
yield @builder if block_given?
|
263
263
|
self
|
264
264
|
end
|
265
|
-
def silent
|
265
|
+
def silent
|
266
266
|
@builder.append ' /silent'
|
267
267
|
yield @builder if block_given?
|
268
268
|
self
|
269
269
|
end
|
270
|
-
def checkin
|
270
|
+
def checkin
|
271
271
|
@builder.append ' /checkin'
|
272
272
|
yield @builder if block_given?
|
273
273
|
self
|
@@ -327,7 +327,7 @@ module FluentCommandBuilder
|
|
327
327
|
yield @builder if block_given?
|
328
328
|
self
|
329
329
|
end
|
330
|
-
def no_prompt
|
330
|
+
def no_prompt
|
331
331
|
@builder.append ' /noPrompt'
|
332
332
|
yield @builder if block_given?
|
333
333
|
self
|
@@ -337,7 +337,7 @@ module FluentCommandBuilder
|
|
337
337
|
yield @builder if block_given?
|
338
338
|
self
|
339
339
|
end
|
340
|
-
def latest
|
340
|
+
def latest
|
341
341
|
@builder.append ' /latest'
|
342
342
|
yield @builder if block_given?
|
343
343
|
self
|
@@ -365,7 +365,7 @@ module FluentCommandBuilder
|
|
365
365
|
yield @builder if block_given?
|
366
366
|
self
|
367
367
|
end
|
368
|
-
def no_prompt
|
368
|
+
def no_prompt
|
369
369
|
@builder.append ' /noPrompt'
|
370
370
|
yield @builder if block_given?
|
371
371
|
self
|
@@ -380,22 +380,22 @@ module FluentCommandBuilder
|
|
380
380
|
yield @builder if block_given?
|
381
381
|
self
|
382
382
|
end
|
383
|
-
def recursive
|
383
|
+
def recursive
|
384
384
|
@builder.append ' /recursive'
|
385
385
|
yield @builder if block_given?
|
386
386
|
self
|
387
387
|
end
|
388
|
-
def saved
|
388
|
+
def saved
|
389
389
|
@builder.append ' /saved'
|
390
390
|
yield @builder if block_given?
|
391
391
|
self
|
392
392
|
end
|
393
|
-
def validate
|
393
|
+
def validate
|
394
394
|
@builder.append ' /validate'
|
395
395
|
yield @builder if block_given?
|
396
396
|
self
|
397
397
|
end
|
398
|
-
def bypass
|
398
|
+
def bypass
|
399
399
|
@builder.append ' /bypass'
|
400
400
|
yield @builder if block_given?
|
401
401
|
self
|
@@ -411,7 +411,7 @@ module FluentCommandBuilder
|
|
411
411
|
yield @builder if block_given?
|
412
412
|
self
|
413
413
|
end
|
414
|
-
def force
|
414
|
+
def force
|
415
415
|
@builder.append ' /force'
|
416
416
|
yield @builder if block_given?
|
417
417
|
self
|
@@ -423,12 +423,12 @@ module FluentCommandBuilder
|
|
423
423
|
@builder.append " checkin /shelveset:#{@builder.format shelveset_name}"
|
424
424
|
@builder.append ";#{@builder.format shelveset_owner}" unless shelveset_owner.nil?
|
425
425
|
end
|
426
|
-
def bypass
|
426
|
+
def bypass
|
427
427
|
@builder.append ' /bypass'
|
428
428
|
yield @builder if block_given?
|
429
429
|
self
|
430
430
|
end
|
431
|
-
def no_prompt
|
431
|
+
def no_prompt
|
432
432
|
@builder.append ' /noPrompt'
|
433
433
|
yield @builder if block_given?
|
434
434
|
self
|
@@ -449,7 +449,7 @@ module FluentCommandBuilder
|
|
449
449
|
yield @builder if block_given?
|
450
450
|
self
|
451
451
|
end
|
452
|
-
def force
|
452
|
+
def force
|
453
453
|
@builder.append ' /force'
|
454
454
|
yield @builder if block_given?
|
455
455
|
self
|
@@ -466,7 +466,7 @@ module FluentCommandBuilder
|
|
466
466
|
yield @builder if block_given?
|
467
467
|
self
|
468
468
|
end
|
469
|
-
def recursive
|
469
|
+
def recursive
|
470
470
|
@builder.append ' /recursive'
|
471
471
|
yield @builder if block_given?
|
472
472
|
self
|
@@ -511,7 +511,7 @@ module FluentCommandBuilder
|
|
511
511
|
yield @builder if block_given?
|
512
512
|
self
|
513
513
|
end
|
514
|
-
def recursive
|
514
|
+
def recursive
|
515
515
|
@builder.append ' /recursive'
|
516
516
|
yield @builder if block_given?
|
517
517
|
self
|
@@ -528,7 +528,7 @@ module FluentCommandBuilder
|
|
528
528
|
super builder
|
529
529
|
@builder.append " destroy #{@builder.format item_spec}"
|
530
530
|
end
|
531
|
-
def keep_history
|
531
|
+
def keep_history
|
532
532
|
@builder.append ' /keepHistory'
|
533
533
|
yield @builder if block_given?
|
534
534
|
self
|
@@ -538,22 +538,22 @@ module FluentCommandBuilder
|
|
538
538
|
yield @builder if block_given?
|
539
539
|
self
|
540
540
|
end
|
541
|
-
def preview
|
541
|
+
def preview
|
542
542
|
@builder.append ' /preview'
|
543
543
|
yield @builder if block_given?
|
544
544
|
self
|
545
545
|
end
|
546
|
-
def start_cleanup
|
546
|
+
def start_cleanup
|
547
547
|
@builder.append ' /startCleanup'
|
548
548
|
yield @builder if block_given?
|
549
549
|
self
|
550
550
|
end
|
551
|
-
def no_prompt
|
551
|
+
def no_prompt
|
552
552
|
@builder.append ' /noPrompt'
|
553
553
|
yield @builder if block_given?
|
554
554
|
self
|
555
555
|
end
|
556
|
-
def silent
|
556
|
+
def silent
|
557
557
|
@builder.append ' /silent'
|
558
558
|
yield @builder if block_given?
|
559
559
|
self
|
@@ -590,32 +590,32 @@ module FluentCommandBuilder
|
|
590
590
|
yield @builder if block_given?
|
591
591
|
self
|
592
592
|
end
|
593
|
-
def ignore_space
|
593
|
+
def ignore_space
|
594
594
|
@builder.append ' /ignoreSpace'
|
595
595
|
yield @builder if block_given?
|
596
596
|
self
|
597
597
|
end
|
598
|
-
def ignore_eol
|
598
|
+
def ignore_eol
|
599
599
|
@builder.append ' /ignoreEol'
|
600
600
|
yield @builder if block_given?
|
601
601
|
self
|
602
602
|
end
|
603
|
-
def ignore_case
|
603
|
+
def ignore_case
|
604
604
|
@builder.append ' /ignoreCase'
|
605
605
|
yield @builder if block_given?
|
606
606
|
self
|
607
607
|
end
|
608
|
-
def recursive
|
608
|
+
def recursive
|
609
609
|
@builder.append ' /recursive'
|
610
610
|
yield @builder if block_given?
|
611
611
|
self
|
612
612
|
end
|
613
|
-
def options
|
613
|
+
def options
|
614
614
|
@builder.append ' /options'
|
615
615
|
yield @builder if block_given?
|
616
616
|
self
|
617
617
|
end
|
618
|
-
def no_prompt
|
618
|
+
def no_prompt
|
619
619
|
@builder.append ' /noPrompt'
|
620
620
|
yield @builder if block_given?
|
621
621
|
self
|
@@ -642,32 +642,32 @@ module FluentCommandBuilder
|
|
642
642
|
yield @builder if block_given?
|
643
643
|
self
|
644
644
|
end
|
645
|
-
def ignore_space
|
645
|
+
def ignore_space
|
646
646
|
@builder.append ' /ignoreSpace'
|
647
647
|
yield @builder if block_given?
|
648
648
|
self
|
649
649
|
end
|
650
|
-
def ignore_eol
|
650
|
+
def ignore_eol
|
651
651
|
@builder.append ' /ignoreEol'
|
652
652
|
yield @builder if block_given?
|
653
653
|
self
|
654
654
|
end
|
655
|
-
def ignore_case
|
655
|
+
def ignore_case
|
656
656
|
@builder.append ' /ignoreCase'
|
657
657
|
yield @builder if block_given?
|
658
658
|
self
|
659
659
|
end
|
660
|
-
def recursive
|
660
|
+
def recursive
|
661
661
|
@builder.append ' /recursive'
|
662
662
|
yield @builder if block_given?
|
663
663
|
self
|
664
664
|
end
|
665
|
-
def options
|
665
|
+
def options
|
666
666
|
@builder.append ' /options'
|
667
667
|
yield @builder if block_given?
|
668
668
|
self
|
669
669
|
end
|
670
|
-
def no_prompt
|
670
|
+
def no_prompt
|
671
671
|
@builder.append ' /noPrompt'
|
672
672
|
yield @builder if block_given?
|
673
673
|
self
|
@@ -700,32 +700,32 @@ module FluentCommandBuilder
|
|
700
700
|
yield @builder if block_given?
|
701
701
|
self
|
702
702
|
end
|
703
|
-
def ignore_space
|
703
|
+
def ignore_space
|
704
704
|
@builder.append ' /ignoreSpace'
|
705
705
|
yield @builder if block_given?
|
706
706
|
self
|
707
707
|
end
|
708
|
-
def ignore_eol
|
708
|
+
def ignore_eol
|
709
709
|
@builder.append ' /ignoreEol'
|
710
710
|
yield @builder if block_given?
|
711
711
|
self
|
712
712
|
end
|
713
|
-
def ignore_case
|
713
|
+
def ignore_case
|
714
714
|
@builder.append ' /ignoreCase'
|
715
715
|
yield @builder if block_given?
|
716
716
|
self
|
717
717
|
end
|
718
|
-
def recursive
|
718
|
+
def recursive
|
719
719
|
@builder.append ' /recursive'
|
720
720
|
yield @builder if block_given?
|
721
721
|
self
|
722
722
|
end
|
723
|
-
def options
|
723
|
+
def options
|
724
724
|
@builder.append ' /options'
|
725
725
|
yield @builder if block_given?
|
726
726
|
self
|
727
727
|
end
|
728
|
-
def no_prompt
|
728
|
+
def no_prompt
|
729
729
|
@builder.append ' /noPrompt'
|
730
730
|
yield @builder if block_given?
|
731
731
|
self
|
@@ -747,17 +747,17 @@ module FluentCommandBuilder
|
|
747
747
|
yield @builder if block_given?
|
748
748
|
self
|
749
749
|
end
|
750
|
-
def recursive
|
750
|
+
def recursive
|
751
751
|
@builder.append ' /recursive'
|
752
752
|
yield @builder if block_given?
|
753
753
|
self
|
754
754
|
end
|
755
|
-
def folders
|
755
|
+
def folders
|
756
756
|
@builder.append ' /folders'
|
757
757
|
yield @builder if block_given?
|
758
758
|
self
|
759
759
|
end
|
760
|
-
def deleted
|
760
|
+
def deleted
|
761
761
|
@builder.append ' /deleted'
|
762
762
|
yield @builder if block_given?
|
763
763
|
self
|
@@ -781,12 +781,12 @@ module FluentCommandBuilder
|
|
781
781
|
@builder.append " #{@builder.format source_path}" unless source_path.nil?
|
782
782
|
@builder.append " #{@builder.format target_path}"
|
783
783
|
end
|
784
|
-
def recursive
|
784
|
+
def recursive
|
785
785
|
@builder.append ' /recursive'
|
786
786
|
yield @builder if block_given?
|
787
787
|
self
|
788
788
|
end
|
789
|
-
def no_prompt
|
789
|
+
def no_prompt
|
790
790
|
@builder.append ' /noPrompt'
|
791
791
|
yield @builder if block_given?
|
792
792
|
self
|
@@ -801,7 +801,7 @@ module FluentCommandBuilder
|
|
801
801
|
yield @builder if block_given?
|
802
802
|
self
|
803
803
|
end
|
804
|
-
def filter_local_paths_only
|
804
|
+
def filter_local_paths_only
|
805
805
|
@builder.append ' /filterLocalPathsOnly'
|
806
806
|
yield @builder if block_given?
|
807
807
|
self
|
@@ -829,37 +829,37 @@ module FluentCommandBuilder
|
|
829
829
|
yield @builder if block_given?
|
830
830
|
self
|
831
831
|
end
|
832
|
-
def all
|
832
|
+
def all
|
833
833
|
@builder.append ' /all'
|
834
834
|
yield @builder if block_given?
|
835
835
|
self
|
836
836
|
end
|
837
|
-
def overwrite
|
837
|
+
def overwrite
|
838
838
|
@builder.append ' /overwrite'
|
839
839
|
yield @builder if block_given?
|
840
840
|
self
|
841
841
|
end
|
842
|
-
def force
|
842
|
+
def force
|
843
843
|
@builder.append ' /force'
|
844
844
|
yield @builder if block_given?
|
845
845
|
self
|
846
846
|
end
|
847
|
-
def preview
|
847
|
+
def preview
|
848
848
|
@builder.append ' /preview'
|
849
849
|
yield @builder if block_given?
|
850
850
|
self
|
851
851
|
end
|
852
|
-
def recursive
|
852
|
+
def recursive
|
853
853
|
@builder.append ' /recursive'
|
854
854
|
yield @builder if block_given?
|
855
855
|
self
|
856
856
|
end
|
857
|
-
def remap
|
857
|
+
def remap
|
858
858
|
@builder.append ' /remap'
|
859
859
|
yield @builder if block_given?
|
860
860
|
self
|
861
861
|
end
|
862
|
-
def no_prompt
|
862
|
+
def no_prompt
|
863
863
|
@builder.append ' /noPrompt'
|
864
864
|
yield @builder if block_given?
|
865
865
|
self
|
@@ -886,7 +886,7 @@ module FluentCommandBuilder
|
|
886
886
|
yield @builder if block_given?
|
887
887
|
self
|
888
888
|
end
|
889
|
-
def recursive
|
889
|
+
def recursive
|
890
890
|
@builder.append ' /recursive'
|
891
891
|
yield @builder if block_given?
|
892
892
|
self
|
@@ -901,17 +901,17 @@ module FluentCommandBuilder
|
|
901
901
|
yield @builder if block_given?
|
902
902
|
self
|
903
903
|
end
|
904
|
-
def slot_mode
|
904
|
+
def slot_mode
|
905
905
|
@builder.append ' /slotMode'
|
906
906
|
yield @builder if block_given?
|
907
907
|
self
|
908
908
|
end
|
909
|
-
def item_mode
|
909
|
+
def item_mode
|
910
910
|
@builder.append ' /itemMode'
|
911
911
|
yield @builder if block_given?
|
912
912
|
self
|
913
913
|
end
|
914
|
-
def no_prompt
|
914
|
+
def no_prompt
|
915
915
|
@builder.append ' /noPrompt'
|
916
916
|
yield @builder if block_given?
|
917
917
|
self
|
@@ -960,7 +960,7 @@ module FluentCommandBuilder
|
|
960
960
|
yield @builder if block_given?
|
961
961
|
self
|
962
962
|
end
|
963
|
-
def recursive
|
963
|
+
def recursive
|
964
964
|
@builder.append ' /recursive'
|
965
965
|
yield @builder if block_given?
|
966
966
|
self
|
@@ -1029,7 +1029,7 @@ module FluentCommandBuilder
|
|
1029
1029
|
super builder
|
1030
1030
|
@builder.append " localVersions #{@builder.format item_spec}"
|
1031
1031
|
end
|
1032
|
-
def recursive
|
1032
|
+
def recursive
|
1033
1033
|
@builder.append ' /recursive'
|
1034
1034
|
yield @builder if block_given?
|
1035
1035
|
self
|
@@ -1067,7 +1067,7 @@ module FluentCommandBuilder
|
|
1067
1067
|
yield @builder if block_given?
|
1068
1068
|
self
|
1069
1069
|
end
|
1070
|
-
def recursive
|
1070
|
+
def recursive
|
1071
1071
|
@builder.append ' /recursive'
|
1072
1072
|
yield @builder if block_given?
|
1073
1073
|
self
|
@@ -1089,22 +1089,22 @@ module FluentCommandBuilder
|
|
1089
1089
|
super builder
|
1090
1090
|
@builder.append " merge #{@builder.format source} #{@builder.format destination}"
|
1091
1091
|
end
|
1092
|
-
def recursive
|
1092
|
+
def recursive
|
1093
1093
|
@builder.append ' /recursive'
|
1094
1094
|
yield @builder if block_given?
|
1095
1095
|
self
|
1096
1096
|
end
|
1097
|
-
def force
|
1097
|
+
def force
|
1098
1098
|
@builder.append ' /force'
|
1099
1099
|
yield @builder if block_given?
|
1100
1100
|
self
|
1101
1101
|
end
|
1102
|
-
def candidate
|
1102
|
+
def candidate
|
1103
1103
|
@builder.append ' /candidate'
|
1104
1104
|
yield @builder if block_given?
|
1105
1105
|
self
|
1106
1106
|
end
|
1107
|
-
def discard
|
1107
|
+
def discard
|
1108
1108
|
@builder.append ' /discard'
|
1109
1109
|
yield @builder if block_given?
|
1110
1110
|
self
|
@@ -1119,27 +1119,27 @@ module FluentCommandBuilder
|
|
1119
1119
|
yield @builder if block_given?
|
1120
1120
|
self
|
1121
1121
|
end
|
1122
|
-
def preview
|
1122
|
+
def preview
|
1123
1123
|
@builder.append ' /preview'
|
1124
1124
|
yield @builder if block_given?
|
1125
1125
|
self
|
1126
1126
|
end
|
1127
|
-
def baseless
|
1127
|
+
def baseless
|
1128
1128
|
@builder.append ' /baseless'
|
1129
1129
|
yield @builder if block_given?
|
1130
1130
|
self
|
1131
1131
|
end
|
1132
|
-
def no_summary
|
1132
|
+
def no_summary
|
1133
1133
|
@builder.append ' /noSummary'
|
1134
1134
|
yield @builder if block_given?
|
1135
1135
|
self
|
1136
1136
|
end
|
1137
|
-
def no_implicit_baseless
|
1137
|
+
def no_implicit_baseless
|
1138
1138
|
@builder.append ' /noImplicitBaseless'
|
1139
1139
|
yield @builder if block_given?
|
1140
1140
|
self
|
1141
1141
|
end
|
1142
|
-
def conservative
|
1142
|
+
def conservative
|
1143
1143
|
@builder.append ' /conservative'
|
1144
1144
|
yield @builder if block_given?
|
1145
1145
|
self
|
@@ -1149,7 +1149,7 @@ module FluentCommandBuilder
|
|
1149
1149
|
yield @builder if block_given?
|
1150
1150
|
self
|
1151
1151
|
end
|
1152
|
-
def no_prompt
|
1152
|
+
def no_prompt
|
1153
1153
|
@builder.append ' /noPrompt'
|
1154
1154
|
yield @builder if block_given?
|
1155
1155
|
self
|
@@ -1168,12 +1168,12 @@ module FluentCommandBuilder
|
|
1168
1168
|
@builder.append " #{@builder.format source}" unless source.nil?
|
1169
1169
|
@builder.append " #{@builder.format destination}"
|
1170
1170
|
end
|
1171
|
-
def recursive
|
1171
|
+
def recursive
|
1172
1172
|
@builder.append ' /recursive'
|
1173
1173
|
yield @builder if block_given?
|
1174
1174
|
self
|
1175
1175
|
end
|
1176
|
-
def extended
|
1176
|
+
def extended
|
1177
1177
|
@builder.append ' /extended'
|
1178
1178
|
yield @builder if block_given?
|
1179
1179
|
self
|
@@ -1189,7 +1189,7 @@ module FluentCommandBuilder
|
|
1189
1189
|
yield @builder if block_given?
|
1190
1190
|
self
|
1191
1191
|
end
|
1192
|
-
def show_all
|
1192
|
+
def show_all
|
1193
1193
|
@builder.append ' /showAll'
|
1194
1194
|
yield @builder if block_given?
|
1195
1195
|
self
|
@@ -1240,12 +1240,12 @@ module FluentCommandBuilder
|
|
1240
1240
|
yield @builder if block_given?
|
1241
1241
|
self
|
1242
1242
|
end
|
1243
|
-
def recursive
|
1243
|
+
def recursive
|
1244
1244
|
@builder.append ' /recursive'
|
1245
1245
|
yield @builder if block_given?
|
1246
1246
|
self
|
1247
1247
|
end
|
1248
|
-
def global
|
1248
|
+
def global
|
1249
1249
|
@builder.append ' /global'
|
1250
1250
|
yield @builder if block_given?
|
1251
1251
|
self
|
@@ -1267,7 +1267,7 @@ module FluentCommandBuilder
|
|
1267
1267
|
yield @builder if block_given?
|
1268
1268
|
self
|
1269
1269
|
end
|
1270
|
-
def recursive
|
1270
|
+
def recursive
|
1271
1271
|
@builder.append ' /recursive'
|
1272
1272
|
yield @builder if block_given?
|
1273
1273
|
self
|
@@ -1406,7 +1406,7 @@ module FluentCommandBuilder
|
|
1406
1406
|
yield @builder if block_given?
|
1407
1407
|
self
|
1408
1408
|
end
|
1409
|
-
def preview
|
1409
|
+
def preview
|
1410
1410
|
@builder.append ' /preview'
|
1411
1411
|
yield @builder if block_given?
|
1412
1412
|
self
|
@@ -1421,7 +1421,7 @@ module FluentCommandBuilder
|
|
1421
1421
|
yield @builder if block_given?
|
1422
1422
|
self
|
1423
1423
|
end
|
1424
|
-
def recursive
|
1424
|
+
def recursive
|
1425
1425
|
@builder.append ' /recursive'
|
1426
1426
|
yield @builder if block_given?
|
1427
1427
|
self
|
@@ -1431,7 +1431,7 @@ module FluentCommandBuilder
|
|
1431
1431
|
yield @builder if block_given?
|
1432
1432
|
self
|
1433
1433
|
end
|
1434
|
-
def no_prompt
|
1434
|
+
def no_prompt
|
1435
1435
|
@builder.append ' /noPrompt'
|
1436
1436
|
yield @builder if block_given?
|
1437
1437
|
self
|
@@ -1448,7 +1448,7 @@ module FluentCommandBuilder
|
|
1448
1448
|
super builder
|
1449
1449
|
@builder.append " rollback /toVersion:#{@builder.format version_spec} #{@builder.format item_spec}"
|
1450
1450
|
end
|
1451
|
-
def recursive
|
1451
|
+
def recursive
|
1452
1452
|
@builder.append ' /recursive'
|
1453
1453
|
yield @builder if block_given?
|
1454
1454
|
self
|
@@ -1463,7 +1463,7 @@ module FluentCommandBuilder
|
|
1463
1463
|
yield @builder if block_given?
|
1464
1464
|
self
|
1465
1465
|
end
|
1466
|
-
def keep_merge_history
|
1466
|
+
def keep_merge_history
|
1467
1467
|
@builder.append ' /keepMergeHistory'
|
1468
1468
|
yield @builder if block_given?
|
1469
1469
|
self
|
@@ -1474,7 +1474,7 @@ module FluentCommandBuilder
|
|
1474
1474
|
yield @builder if block_given?
|
1475
1475
|
self
|
1476
1476
|
end
|
1477
|
-
def no_prompt
|
1477
|
+
def no_prompt
|
1478
1478
|
@builder.append ' /noPrompt'
|
1479
1479
|
yield @builder if block_given?
|
1480
1480
|
self
|
@@ -1487,7 +1487,7 @@ module FluentCommandBuilder
|
|
1487
1487
|
@builder.append "~#{@builder.format changeset_to}" unless changeset_to.nil?
|
1488
1488
|
@builder.append " #{@builder.format item_spec}" unless item_spec.nil?
|
1489
1489
|
end
|
1490
|
-
def recursive
|
1490
|
+
def recursive
|
1491
1491
|
@builder.append ' /recursive'
|
1492
1492
|
yield @builder if block_given?
|
1493
1493
|
self
|
@@ -1502,7 +1502,7 @@ module FluentCommandBuilder
|
|
1502
1502
|
yield @builder if block_given?
|
1503
1503
|
self
|
1504
1504
|
end
|
1505
|
-
def keep_merge_history
|
1505
|
+
def keep_merge_history
|
1506
1506
|
@builder.append ' /keepMergeHistory'
|
1507
1507
|
yield @builder if block_given?
|
1508
1508
|
self
|
@@ -1513,7 +1513,7 @@ module FluentCommandBuilder
|
|
1513
1513
|
yield @builder if block_given?
|
1514
1514
|
self
|
1515
1515
|
end
|
1516
|
-
def no_prompt
|
1516
|
+
def no_prompt
|
1517
1517
|
@builder.append ' /noPrompt'
|
1518
1518
|
yield @builder if block_given?
|
1519
1519
|
self
|
@@ -1529,12 +1529,12 @@ module FluentCommandBuilder
|
|
1529
1529
|
yield @builder if block_given?
|
1530
1530
|
self
|
1531
1531
|
end
|
1532
|
-
def validate
|
1532
|
+
def validate
|
1533
1533
|
@builder.append ' /validate'
|
1534
1534
|
yield @builder if block_given?
|
1535
1535
|
self
|
1536
1536
|
end
|
1537
|
-
def no_prompt
|
1537
|
+
def no_prompt
|
1538
1538
|
@builder.append ' /noPrompt'
|
1539
1539
|
yield @builder if block_given?
|
1540
1540
|
self
|
@@ -1551,12 +1551,12 @@ module FluentCommandBuilder
|
|
1551
1551
|
super builder
|
1552
1552
|
@builder.append " shelve #{@builder.format shelveset_name} #{@builder.format item_spec}"
|
1553
1553
|
end
|
1554
|
-
def move
|
1554
|
+
def move
|
1555
1555
|
@builder.append ' /move'
|
1556
1556
|
yield @builder if block_given?
|
1557
1557
|
self
|
1558
1558
|
end
|
1559
|
-
def replace
|
1559
|
+
def replace
|
1560
1560
|
@builder.append ' /replace'
|
1561
1561
|
yield @builder if block_given?
|
1562
1562
|
self
|
@@ -1566,17 +1566,17 @@ module FluentCommandBuilder
|
|
1566
1566
|
yield @builder if block_given?
|
1567
1567
|
self
|
1568
1568
|
end
|
1569
|
-
def recursive
|
1569
|
+
def recursive
|
1570
1570
|
@builder.append ' /recursive'
|
1571
1571
|
yield @builder if block_given?
|
1572
1572
|
self
|
1573
1573
|
end
|
1574
|
-
def validate
|
1574
|
+
def validate
|
1575
1575
|
@builder.append ' /validate'
|
1576
1576
|
yield @builder if block_given?
|
1577
1577
|
self
|
1578
1578
|
end
|
1579
|
-
def no_prompt
|
1579
|
+
def no_prompt
|
1580
1580
|
@builder.append ' /noPrompt'
|
1581
1581
|
yield @builder if block_given?
|
1582
1582
|
self
|
@@ -1667,7 +1667,7 @@ module FluentCommandBuilder
|
|
1667
1667
|
yield @builder if block_given?
|
1668
1668
|
self
|
1669
1669
|
end
|
1670
|
-
def recursive
|
1670
|
+
def recursive
|
1671
1671
|
@builder.append ' /recursive'
|
1672
1672
|
yield @builder if block_given?
|
1673
1673
|
self
|
@@ -1684,7 +1684,7 @@ module FluentCommandBuilder
|
|
1684
1684
|
@builder.append " undelete #{@builder.format item_spec}"
|
1685
1685
|
@builder.append ";#{@builder.format deletion_id}" unless deletion_id.nil?
|
1686
1686
|
end
|
1687
|
-
def no_get
|
1687
|
+
def no_get
|
1688
1688
|
@builder.append ' /noGet'
|
1689
1689
|
yield @builder if block_given?
|
1690
1690
|
self
|
@@ -1694,7 +1694,7 @@ module FluentCommandBuilder
|
|
1694
1694
|
yield @builder if block_given?
|
1695
1695
|
self
|
1696
1696
|
end
|
1697
|
-
def recursive
|
1697
|
+
def recursive
|
1698
1698
|
@builder.append ' /recursive'
|
1699
1699
|
yield @builder if block_given?
|
1700
1700
|
self
|
@@ -1717,12 +1717,12 @@ module FluentCommandBuilder
|
|
1717
1717
|
yield @builder if block_given?
|
1718
1718
|
self
|
1719
1719
|
end
|
1720
|
-
def recursive
|
1720
|
+
def recursive
|
1721
1721
|
@builder.append ' /recursive'
|
1722
1722
|
yield @builder if block_given?
|
1723
1723
|
self
|
1724
1724
|
end
|
1725
|
-
def no_prompt
|
1725
|
+
def no_prompt
|
1726
1726
|
@builder.append ' /noPrompt'
|
1727
1727
|
yield @builder if block_given?
|
1728
1728
|
self
|
@@ -1749,7 +1749,7 @@ module FluentCommandBuilder
|
|
1749
1749
|
yield @builder if block_given?
|
1750
1750
|
self
|
1751
1751
|
end
|
1752
|
-
def recursive
|
1752
|
+
def recursive
|
1753
1753
|
@builder.append ' /recursive'
|
1754
1754
|
yield @builder if block_given?
|
1755
1755
|
self
|
@@ -1769,17 +1769,17 @@ module FluentCommandBuilder
|
|
1769
1769
|
@builder.append ";#{@builder.format username}" unless username.nil?
|
1770
1770
|
@builder.append " #{@builder.format item_spec}" unless item_spec.nil?
|
1771
1771
|
end
|
1772
|
-
def move
|
1772
|
+
def move
|
1773
1773
|
@builder.append ' /move'
|
1774
1774
|
yield @builder if block_given?
|
1775
1775
|
self
|
1776
1776
|
end
|
1777
|
-
def recursive
|
1777
|
+
def recursive
|
1778
1778
|
@builder.append ' /recursive'
|
1779
1779
|
yield @builder if block_given?
|
1780
1780
|
self
|
1781
1781
|
end
|
1782
|
-
def no_prompt
|
1782
|
+
def no_prompt
|
1783
1783
|
@builder.append ' /noPrompt'
|
1784
1784
|
yield @builder if block_given?
|
1785
1785
|
self
|
@@ -1801,12 +1801,12 @@ module FluentCommandBuilder
|
|
1801
1801
|
yield @builder if block_given?
|
1802
1802
|
self
|
1803
1803
|
end
|
1804
|
-
def console
|
1804
|
+
def console
|
1805
1805
|
@builder.append ' /console'
|
1806
1806
|
yield @builder if block_given?
|
1807
1807
|
self
|
1808
1808
|
end
|
1809
|
-
def recursive
|
1809
|
+
def recursive
|
1810
1810
|
@builder.append ' /recursive'
|
1811
1811
|
yield @builder if block_given?
|
1812
1812
|
self
|
@@ -1822,7 +1822,7 @@ module FluentCommandBuilder
|
|
1822
1822
|
yield @builder if block_given?
|
1823
1823
|
self
|
1824
1824
|
end
|
1825
|
-
def no_prompt
|
1825
|
+
def no_prompt
|
1826
1826
|
@builder.append ' /noPrompt'
|
1827
1827
|
yield @builder if block_given?
|
1828
1828
|
self
|
@@ -1931,7 +1931,7 @@ module FluentCommandBuilder
|
|
1931
1931
|
yield @builder if block_given?
|
1932
1932
|
self
|
1933
1933
|
end
|
1934
|
-
def recursive
|
1934
|
+
def recursive
|
1935
1935
|
@builder.append ' /recursive'
|
1936
1936
|
yield @builder if block_given?
|
1937
1937
|
self
|
@@ -1989,7 +1989,7 @@ module FluentCommandBuilder
|
|
1989
1989
|
@builder.append " workspace /new #{@builder.format workspace_name}"
|
1990
1990
|
@builder.append ";#{@builder.format workspace_owner}" unless workspace_owner.nil?
|
1991
1991
|
end
|
1992
|
-
def no_prompt
|
1992
|
+
def no_prompt
|
1993
1993
|
@builder.append ' /noPrompt'
|
1994
1994
|
yield @builder if block_given?
|
1995
1995
|
self
|
@@ -2143,7 +2143,7 @@ module FluentCommandBuilder
|
|
2143
2143
|
self
|
2144
2144
|
end
|
2145
2145
|
end
|
2146
|
-
def tf
|
2146
|
+
def tf
|
2147
2147
|
builder = CommandBuilder.new COMMAND_NAME
|
2148
2148
|
command = Tf.new builder
|
2149
2149
|
yield builder if block_given?
|
@@ -2151,7 +2151,7 @@ module FluentCommandBuilder
|
|
2151
2151
|
end
|
2152
2152
|
end
|
2153
2153
|
end
|
2154
|
-
def tf_2010
|
2154
|
+
def tf_2010
|
2155
2155
|
builder = CommandBuilder.new Tf::V2010::COMMAND_NAME
|
2156
2156
|
command = Tf::V2010::Tf.new builder
|
2157
2157
|
yield builder if block_given?
|