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
@@ -45,7 +45,7 @@ module FluentCommandBuilder
|
|
45
45
|
def compare_with_shelveset_version shelveset_item_spec
|
46
46
|
CompareWithShelvesetVersion.new @builder, shelveset_item_spec
|
47
47
|
end
|
48
|
-
def configure_compare_tool
|
48
|
+
def configure_compare_tool
|
49
49
|
@builder.append ' difference -configure'
|
50
50
|
yield @builder if block_given?
|
51
51
|
self
|
@@ -53,13 +53,13 @@ module FluentCommandBuilder
|
|
53
53
|
def dir item_spec
|
54
54
|
Dir.new @builder, item_spec
|
55
55
|
end
|
56
|
-
def eula
|
56
|
+
def eula
|
57
57
|
Eula.new @builder
|
58
58
|
end
|
59
59
|
def get item_spec=nil
|
60
60
|
Get.new @builder, item_spec
|
61
61
|
end
|
62
|
-
def getcs
|
62
|
+
def getcs
|
63
63
|
Getcs.new @builder
|
64
64
|
end
|
65
65
|
def history item_spec
|
@@ -86,7 +86,7 @@ module FluentCommandBuilder
|
|
86
86
|
def print item_spec
|
87
87
|
Print.new @builder, item_spec
|
88
88
|
end
|
89
|
-
def product_key
|
89
|
+
def product_key
|
90
90
|
ProductKey.new @builder
|
91
91
|
end
|
92
92
|
def copy_profile existing_profile_name, new_profile_name
|
@@ -105,13 +105,13 @@ module FluentCommandBuilder
|
|
105
105
|
def new_profile new_profile_name
|
106
106
|
NewProfile.new @builder, new_profile_name
|
107
107
|
end
|
108
|
-
def profiles
|
108
|
+
def profiles
|
109
109
|
Profiles.new @builder
|
110
110
|
end
|
111
111
|
def properties item_spec
|
112
112
|
Properties.new @builder, item_spec
|
113
113
|
end
|
114
|
-
def reconcile
|
114
|
+
def reconcile
|
115
115
|
Reconcile.new @builder
|
116
116
|
end
|
117
117
|
def reconcile_build build_name, item_spec=nil
|
@@ -168,7 +168,7 @@ module FluentCommandBuilder
|
|
168
168
|
def map_folder server_folder, local_folder
|
169
169
|
MapFolder.new @builder, server_folder, local_folder
|
170
170
|
end
|
171
|
-
def unmap_folder
|
171
|
+
def unmap_folder
|
172
172
|
UnmapFolder.new @builder
|
173
173
|
end
|
174
174
|
def cloak_folder server_folder
|
@@ -208,19 +208,18 @@ module FluentCommandBuilder
|
|
208
208
|
yield @builder if block_given?
|
209
209
|
self
|
210
210
|
end
|
211
|
-
def no_prompt
|
211
|
+
def no_prompt
|
212
212
|
@builder.append ' -noPrompt'
|
213
213
|
yield @builder if block_given?
|
214
214
|
self
|
215
215
|
end
|
216
|
-
def recursive
|
216
|
+
def recursive
|
217
217
|
@builder.append ' -recursive'
|
218
218
|
yield @builder if block_given?
|
219
219
|
self
|
220
220
|
end
|
221
|
-
def login username,
|
221
|
+
def login username, password=nil
|
222
222
|
@builder.append " -login:#{@builder.format username}"
|
223
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
224
223
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
225
224
|
yield @builder if block_given?
|
226
225
|
self
|
@@ -236,7 +235,7 @@ module FluentCommandBuilder
|
|
236
235
|
yield @builder if block_given?
|
237
236
|
self
|
238
237
|
end
|
239
|
-
def no_get
|
238
|
+
def no_get
|
240
239
|
@builder.append ' -noGet'
|
241
240
|
yield @builder if block_given?
|
242
241
|
self
|
@@ -246,17 +245,17 @@ module FluentCommandBuilder
|
|
246
245
|
yield @builder if block_given?
|
247
246
|
self
|
248
247
|
end
|
249
|
-
def no_prompt
|
248
|
+
def no_prompt
|
250
249
|
@builder.append ' -noPrompt'
|
251
250
|
yield @builder if block_given?
|
252
251
|
self
|
253
252
|
end
|
254
|
-
def silent
|
253
|
+
def silent
|
255
254
|
@builder.append ' -silent'
|
256
255
|
yield @builder if block_given?
|
257
256
|
self
|
258
257
|
end
|
259
|
-
def checkin
|
258
|
+
def checkin
|
260
259
|
@builder.append ' -checkin'
|
261
260
|
yield @builder if block_given?
|
262
261
|
self
|
@@ -271,9 +270,8 @@ module FluentCommandBuilder
|
|
271
270
|
yield @builder if block_given?
|
272
271
|
self
|
273
272
|
end
|
274
|
-
def login username,
|
273
|
+
def login username, password=nil
|
275
274
|
@builder.append " -login:#{@builder.format username}"
|
276
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
277
275
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
278
276
|
yield @builder if block_given?
|
279
277
|
self
|
@@ -294,9 +292,8 @@ module FluentCommandBuilder
|
|
294
292
|
yield @builder if block_given?
|
295
293
|
self
|
296
294
|
end
|
297
|
-
def login username,
|
295
|
+
def login username, password=nil
|
298
296
|
@builder.append " -login:#{@builder.format username}"
|
299
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
300
297
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
301
298
|
yield @builder if block_given?
|
302
299
|
self
|
@@ -318,7 +315,7 @@ module FluentCommandBuilder
|
|
318
315
|
yield @builder if block_given?
|
319
316
|
self
|
320
317
|
end
|
321
|
-
def no_prompt
|
318
|
+
def no_prompt
|
322
319
|
@builder.append ' -noPrompt'
|
323
320
|
yield @builder if block_given?
|
324
321
|
self
|
@@ -328,14 +325,13 @@ module FluentCommandBuilder
|
|
328
325
|
yield @builder if block_given?
|
329
326
|
self
|
330
327
|
end
|
331
|
-
def latest
|
328
|
+
def latest
|
332
329
|
@builder.append ' -latest'
|
333
330
|
yield @builder if block_given?
|
334
331
|
self
|
335
332
|
end
|
336
|
-
def login username,
|
333
|
+
def login username, password=nil
|
337
334
|
@builder.append " -login:#{@builder.format username}"
|
338
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
339
335
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
340
336
|
yield @builder if block_given?
|
341
337
|
self
|
@@ -357,7 +353,7 @@ module FluentCommandBuilder
|
|
357
353
|
yield @builder if block_given?
|
358
354
|
self
|
359
355
|
end
|
360
|
-
def no_prompt
|
356
|
+
def no_prompt
|
361
357
|
@builder.append ' -noPrompt'
|
362
358
|
yield @builder if block_given?
|
363
359
|
self
|
@@ -372,29 +368,28 @@ module FluentCommandBuilder
|
|
372
368
|
yield @builder if block_given?
|
373
369
|
self
|
374
370
|
end
|
375
|
-
def recursive
|
371
|
+
def recursive
|
376
372
|
@builder.append ' -recursive'
|
377
373
|
yield @builder if block_given?
|
378
374
|
self
|
379
375
|
end
|
380
|
-
def saved
|
376
|
+
def saved
|
381
377
|
@builder.append ' -saved'
|
382
378
|
yield @builder if block_given?
|
383
379
|
self
|
384
380
|
end
|
385
|
-
def validate
|
381
|
+
def validate
|
386
382
|
@builder.append ' -validate'
|
387
383
|
yield @builder if block_given?
|
388
384
|
self
|
389
385
|
end
|
390
|
-
def bypass
|
386
|
+
def bypass
|
391
387
|
@builder.append ' -bypass'
|
392
388
|
yield @builder if block_given?
|
393
389
|
self
|
394
390
|
end
|
395
|
-
def login username,
|
391
|
+
def login username, password=nil
|
396
392
|
@builder.append " -login:#{@builder.format username}"
|
397
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
398
393
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
399
394
|
yield @builder if block_given?
|
400
395
|
self
|
@@ -404,7 +399,7 @@ module FluentCommandBuilder
|
|
404
399
|
yield @builder if block_given?
|
405
400
|
self
|
406
401
|
end
|
407
|
-
def force
|
402
|
+
def force
|
408
403
|
@builder.append ' -force'
|
409
404
|
yield @builder if block_given?
|
410
405
|
self
|
@@ -416,19 +411,18 @@ module FluentCommandBuilder
|
|
416
411
|
@builder.append " checkin -shelveset:#{@builder.format shelveset_name}"
|
417
412
|
@builder.append ";#{@builder.format shelveset_owner}" unless shelveset_owner.nil?
|
418
413
|
end
|
419
|
-
def bypass
|
414
|
+
def bypass
|
420
415
|
@builder.append ' -bypass'
|
421
416
|
yield @builder if block_given?
|
422
417
|
self
|
423
418
|
end
|
424
|
-
def no_prompt
|
419
|
+
def no_prompt
|
425
420
|
@builder.append ' -noPrompt'
|
426
421
|
yield @builder if block_given?
|
427
422
|
self
|
428
423
|
end
|
429
|
-
def login username,
|
424
|
+
def login username, password=nil
|
430
425
|
@builder.append " -login:#{@builder.format username}"
|
431
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
432
426
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
433
427
|
yield @builder if block_given?
|
434
428
|
self
|
@@ -443,7 +437,7 @@ module FluentCommandBuilder
|
|
443
437
|
yield @builder if block_given?
|
444
438
|
self
|
445
439
|
end
|
446
|
-
def force
|
440
|
+
def force
|
447
441
|
@builder.append ' -force'
|
448
442
|
yield @builder if block_given?
|
449
443
|
self
|
@@ -460,7 +454,7 @@ module FluentCommandBuilder
|
|
460
454
|
yield @builder if block_given?
|
461
455
|
self
|
462
456
|
end
|
463
|
-
def recursive
|
457
|
+
def recursive
|
464
458
|
@builder.append ' -recursive'
|
465
459
|
yield @builder if block_given?
|
466
460
|
self
|
@@ -470,9 +464,8 @@ module FluentCommandBuilder
|
|
470
464
|
yield @builder if block_given?
|
471
465
|
self
|
472
466
|
end
|
473
|
-
def login username,
|
467
|
+
def login username, password=nil
|
474
468
|
@builder.append " -login:#{@builder.format username}"
|
475
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
476
469
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
477
470
|
yield @builder if block_given?
|
478
471
|
self
|
@@ -488,14 +481,13 @@ module FluentCommandBuilder
|
|
488
481
|
yield @builder if block_given?
|
489
482
|
self
|
490
483
|
end
|
491
|
-
def recursive
|
484
|
+
def recursive
|
492
485
|
@builder.append ' -recursive'
|
493
486
|
yield @builder if block_given?
|
494
487
|
self
|
495
488
|
end
|
496
|
-
def login username,
|
489
|
+
def login username, password=nil
|
497
490
|
@builder.append " -login:#{@builder.format username}"
|
498
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
499
491
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
500
492
|
yield @builder if block_given?
|
501
493
|
self
|
@@ -506,7 +498,7 @@ module FluentCommandBuilder
|
|
506
498
|
super builder
|
507
499
|
@builder.append " destroy #{@builder.format item_spec}"
|
508
500
|
end
|
509
|
-
def keep_history
|
501
|
+
def keep_history
|
510
502
|
@builder.append ' -keepHistory'
|
511
503
|
yield @builder if block_given?
|
512
504
|
self
|
@@ -516,29 +508,28 @@ module FluentCommandBuilder
|
|
516
508
|
yield @builder if block_given?
|
517
509
|
self
|
518
510
|
end
|
519
|
-
def preview
|
511
|
+
def preview
|
520
512
|
@builder.append ' -preview'
|
521
513
|
yield @builder if block_given?
|
522
514
|
self
|
523
515
|
end
|
524
|
-
def start_cleanup
|
516
|
+
def start_cleanup
|
525
517
|
@builder.append ' -startCleanup'
|
526
518
|
yield @builder if block_given?
|
527
519
|
self
|
528
520
|
end
|
529
|
-
def no_prompt
|
521
|
+
def no_prompt
|
530
522
|
@builder.append ' -noPrompt'
|
531
523
|
yield @builder if block_given?
|
532
524
|
self
|
533
525
|
end
|
534
|
-
def silent
|
526
|
+
def silent
|
535
527
|
@builder.append ' -silent'
|
536
528
|
yield @builder if block_given?
|
537
529
|
self
|
538
530
|
end
|
539
|
-
def login username,
|
531
|
+
def login username, password=nil
|
540
532
|
@builder.append " -login:#{@builder.format username}"
|
541
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
542
533
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
543
534
|
yield @builder if block_given?
|
544
535
|
self
|
@@ -569,39 +560,38 @@ module FluentCommandBuilder
|
|
569
560
|
yield @builder if block_given?
|
570
561
|
self
|
571
562
|
end
|
572
|
-
def ignore_space
|
563
|
+
def ignore_space
|
573
564
|
@builder.append ' -ignoreSpace'
|
574
565
|
yield @builder if block_given?
|
575
566
|
self
|
576
567
|
end
|
577
|
-
def ignore_eol
|
568
|
+
def ignore_eol
|
578
569
|
@builder.append ' -ignoreEol'
|
579
570
|
yield @builder if block_given?
|
580
571
|
self
|
581
572
|
end
|
582
|
-
def ignore_case
|
573
|
+
def ignore_case
|
583
574
|
@builder.append ' -ignoreCase'
|
584
575
|
yield @builder if block_given?
|
585
576
|
self
|
586
577
|
end
|
587
|
-
def recursive
|
578
|
+
def recursive
|
588
579
|
@builder.append ' -recursive'
|
589
580
|
yield @builder if block_given?
|
590
581
|
self
|
591
582
|
end
|
592
|
-
def options
|
583
|
+
def options
|
593
584
|
@builder.append ' -options'
|
594
585
|
yield @builder if block_given?
|
595
586
|
self
|
596
587
|
end
|
597
|
-
def no_prompt
|
588
|
+
def no_prompt
|
598
589
|
@builder.append ' -noPrompt'
|
599
590
|
yield @builder if block_given?
|
600
591
|
self
|
601
592
|
end
|
602
|
-
def login username,
|
593
|
+
def login username, password=nil
|
603
594
|
@builder.append " -login:#{@builder.format username}"
|
604
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
605
595
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
606
596
|
yield @builder if block_given?
|
607
597
|
self
|
@@ -622,39 +612,38 @@ module FluentCommandBuilder
|
|
622
612
|
yield @builder if block_given?
|
623
613
|
self
|
624
614
|
end
|
625
|
-
def ignore_space
|
615
|
+
def ignore_space
|
626
616
|
@builder.append ' -ignoreSpace'
|
627
617
|
yield @builder if block_given?
|
628
618
|
self
|
629
619
|
end
|
630
|
-
def ignore_eol
|
620
|
+
def ignore_eol
|
631
621
|
@builder.append ' -ignoreEol'
|
632
622
|
yield @builder if block_given?
|
633
623
|
self
|
634
624
|
end
|
635
|
-
def ignore_case
|
625
|
+
def ignore_case
|
636
626
|
@builder.append ' -ignoreCase'
|
637
627
|
yield @builder if block_given?
|
638
628
|
self
|
639
629
|
end
|
640
|
-
def recursive
|
630
|
+
def recursive
|
641
631
|
@builder.append ' -recursive'
|
642
632
|
yield @builder if block_given?
|
643
633
|
self
|
644
634
|
end
|
645
|
-
def options
|
635
|
+
def options
|
646
636
|
@builder.append ' -options'
|
647
637
|
yield @builder if block_given?
|
648
638
|
self
|
649
639
|
end
|
650
|
-
def no_prompt
|
640
|
+
def no_prompt
|
651
641
|
@builder.append ' -noPrompt'
|
652
642
|
yield @builder if block_given?
|
653
643
|
self
|
654
644
|
end
|
655
|
-
def login username,
|
645
|
+
def login username, password=nil
|
656
646
|
@builder.append " -login:#{@builder.format username}"
|
657
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
658
647
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
659
648
|
yield @builder if block_given?
|
660
649
|
self
|
@@ -681,39 +670,38 @@ module FluentCommandBuilder
|
|
681
670
|
yield @builder if block_given?
|
682
671
|
self
|
683
672
|
end
|
684
|
-
def ignore_space
|
673
|
+
def ignore_space
|
685
674
|
@builder.append ' -ignoreSpace'
|
686
675
|
yield @builder if block_given?
|
687
676
|
self
|
688
677
|
end
|
689
|
-
def ignore_eol
|
678
|
+
def ignore_eol
|
690
679
|
@builder.append ' -ignoreEol'
|
691
680
|
yield @builder if block_given?
|
692
681
|
self
|
693
682
|
end
|
694
|
-
def ignore_case
|
683
|
+
def ignore_case
|
695
684
|
@builder.append ' -ignoreCase'
|
696
685
|
yield @builder if block_given?
|
697
686
|
self
|
698
687
|
end
|
699
|
-
def recursive
|
688
|
+
def recursive
|
700
689
|
@builder.append ' -recursive'
|
701
690
|
yield @builder if block_given?
|
702
691
|
self
|
703
692
|
end
|
704
|
-
def options
|
693
|
+
def options
|
705
694
|
@builder.append ' -options'
|
706
695
|
yield @builder if block_given?
|
707
696
|
self
|
708
697
|
end
|
709
|
-
def no_prompt
|
698
|
+
def no_prompt
|
710
699
|
@builder.append ' -noPrompt'
|
711
700
|
yield @builder if block_given?
|
712
701
|
self
|
713
702
|
end
|
714
|
-
def login username,
|
703
|
+
def login username, password=nil
|
715
704
|
@builder.append " -login:#{@builder.format username}"
|
716
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
717
705
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
718
706
|
yield @builder if block_given?
|
719
707
|
self
|
@@ -729,24 +717,23 @@ module FluentCommandBuilder
|
|
729
717
|
yield @builder if block_given?
|
730
718
|
self
|
731
719
|
end
|
732
|
-
def recursive
|
720
|
+
def recursive
|
733
721
|
@builder.append ' -recursive'
|
734
722
|
yield @builder if block_given?
|
735
723
|
self
|
736
724
|
end
|
737
|
-
def folders
|
725
|
+
def folders
|
738
726
|
@builder.append ' -folders'
|
739
727
|
yield @builder if block_given?
|
740
728
|
self
|
741
729
|
end
|
742
|
-
def deleted
|
730
|
+
def deleted
|
743
731
|
@builder.append ' -deleted'
|
744
732
|
yield @builder if block_given?
|
745
733
|
self
|
746
734
|
end
|
747
|
-
def login username,
|
735
|
+
def login username, password=nil
|
748
736
|
@builder.append " -login:#{@builder.format username}"
|
749
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
750
737
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
751
738
|
yield @builder if block_given?
|
752
739
|
self
|
@@ -762,7 +749,7 @@ module FluentCommandBuilder
|
|
762
749
|
super builder
|
763
750
|
@builder.append ' eula'
|
764
751
|
end
|
765
|
-
def accept
|
752
|
+
def accept
|
766
753
|
@builder.append ' -accept'
|
767
754
|
yield @builder if block_given?
|
768
755
|
self
|
@@ -779,44 +766,43 @@ module FluentCommandBuilder
|
|
779
766
|
yield @builder if block_given?
|
780
767
|
self
|
781
768
|
end
|
782
|
-
def all
|
769
|
+
def all
|
783
770
|
@builder.append ' -all'
|
784
771
|
yield @builder if block_given?
|
785
772
|
self
|
786
773
|
end
|
787
|
-
def overwrite
|
774
|
+
def overwrite
|
788
775
|
@builder.append ' -overwrite'
|
789
776
|
yield @builder if block_given?
|
790
777
|
self
|
791
778
|
end
|
792
|
-
def force
|
779
|
+
def force
|
793
780
|
@builder.append ' -force'
|
794
781
|
yield @builder if block_given?
|
795
782
|
self
|
796
783
|
end
|
797
|
-
def preview
|
784
|
+
def preview
|
798
785
|
@builder.append ' -preview'
|
799
786
|
yield @builder if block_given?
|
800
787
|
self
|
801
788
|
end
|
802
|
-
def recursive
|
789
|
+
def recursive
|
803
790
|
@builder.append ' -recursive'
|
804
791
|
yield @builder if block_given?
|
805
792
|
self
|
806
793
|
end
|
807
|
-
def remap
|
794
|
+
def remap
|
808
795
|
@builder.append ' -remap'
|
809
796
|
yield @builder if block_given?
|
810
797
|
self
|
811
798
|
end
|
812
|
-
def no_prompt
|
799
|
+
def no_prompt
|
813
800
|
@builder.append ' -noPrompt'
|
814
801
|
yield @builder if block_given?
|
815
802
|
self
|
816
803
|
end
|
817
|
-
def login username,
|
804
|
+
def login username, password=nil
|
818
805
|
@builder.append " -login:#{@builder.format username}"
|
819
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
820
806
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
821
807
|
yield @builder if block_given?
|
822
808
|
self
|
@@ -832,7 +818,7 @@ module FluentCommandBuilder
|
|
832
818
|
yield @builder if block_given?
|
833
819
|
self
|
834
820
|
end
|
835
|
-
def latest
|
821
|
+
def latest
|
836
822
|
@builder.append ' -latest'
|
837
823
|
yield @builder if block_given?
|
838
824
|
self
|
@@ -853,7 +839,7 @@ module FluentCommandBuilder
|
|
853
839
|
yield @builder if block_given?
|
854
840
|
self
|
855
841
|
end
|
856
|
-
def recursive
|
842
|
+
def recursive
|
857
843
|
@builder.append ' -recursive'
|
858
844
|
yield @builder if block_given?
|
859
845
|
self
|
@@ -868,24 +854,23 @@ module FluentCommandBuilder
|
|
868
854
|
yield @builder if block_given?
|
869
855
|
self
|
870
856
|
end
|
871
|
-
def slot_mode
|
857
|
+
def slot_mode
|
872
858
|
@builder.append ' -slotMode'
|
873
859
|
yield @builder if block_given?
|
874
860
|
self
|
875
861
|
end
|
876
|
-
def item_mode
|
862
|
+
def item_mode
|
877
863
|
@builder.append ' -itemMode'
|
878
864
|
yield @builder if block_given?
|
879
865
|
self
|
880
866
|
end
|
881
|
-
def no_prompt
|
867
|
+
def no_prompt
|
882
868
|
@builder.append ' -noPrompt'
|
883
869
|
yield @builder if block_given?
|
884
870
|
self
|
885
871
|
end
|
886
|
-
def login username,
|
872
|
+
def login username, password=nil
|
887
873
|
@builder.append " -login:#{@builder.format username}"
|
888
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
889
874
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
890
875
|
yield @builder if block_given?
|
891
876
|
self
|
@@ -928,14 +913,13 @@ module FluentCommandBuilder
|
|
928
913
|
yield @builder if block_given?
|
929
914
|
self
|
930
915
|
end
|
931
|
-
def recursive
|
916
|
+
def recursive
|
932
917
|
@builder.append ' -recursive'
|
933
918
|
yield @builder if block_given?
|
934
919
|
self
|
935
920
|
end
|
936
|
-
def login username,
|
921
|
+
def login username, password=nil
|
937
922
|
@builder.append " -login:#{@builder.format username}"
|
938
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
939
923
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
940
924
|
yield @builder if block_given?
|
941
925
|
self
|
@@ -953,9 +937,8 @@ module FluentCommandBuilder
|
|
953
937
|
@builder.append "@#{@builder.format scope}" unless scope.nil?
|
954
938
|
@builder.append " #{@builder.format item_spec}"
|
955
939
|
end
|
956
|
-
def login username,
|
940
|
+
def login username, password=nil
|
957
941
|
@builder.append " -login:#{@builder.format username}"
|
958
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
959
942
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
960
943
|
yield @builder if block_given?
|
961
944
|
self
|
@@ -987,9 +970,8 @@ module FluentCommandBuilder
|
|
987
970
|
yield @builder if block_given?
|
988
971
|
self
|
989
972
|
end
|
990
|
-
def login username,
|
973
|
+
def login username, password=nil
|
991
974
|
@builder.append " -login:#{@builder.format username}"
|
992
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
993
975
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
994
976
|
yield @builder if block_given?
|
995
977
|
self
|
@@ -1011,14 +993,13 @@ module FluentCommandBuilder
|
|
1011
993
|
yield @builder if block_given?
|
1012
994
|
self
|
1013
995
|
end
|
1014
|
-
def recursive
|
996
|
+
def recursive
|
1015
997
|
@builder.append ' -recursive'
|
1016
998
|
yield @builder if block_given?
|
1017
999
|
self
|
1018
1000
|
end
|
1019
|
-
def login username,
|
1001
|
+
def login username, password=nil
|
1020
1002
|
@builder.append " -login:#{@builder.format username}"
|
1021
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1022
1003
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1023
1004
|
yield @builder if block_given?
|
1024
1005
|
self
|
@@ -1034,22 +1015,22 @@ module FluentCommandBuilder
|
|
1034
1015
|
super builder
|
1035
1016
|
@builder.append " merge #{@builder.format source} #{@builder.format destination}"
|
1036
1017
|
end
|
1037
|
-
def recursive
|
1018
|
+
def recursive
|
1038
1019
|
@builder.append ' -recursive'
|
1039
1020
|
yield @builder if block_given?
|
1040
1021
|
self
|
1041
1022
|
end
|
1042
|
-
def force
|
1023
|
+
def force
|
1043
1024
|
@builder.append ' -force'
|
1044
1025
|
yield @builder if block_given?
|
1045
1026
|
self
|
1046
1027
|
end
|
1047
|
-
def candidate
|
1028
|
+
def candidate
|
1048
1029
|
@builder.append ' -candidate'
|
1049
1030
|
yield @builder if block_given?
|
1050
1031
|
self
|
1051
1032
|
end
|
1052
|
-
def discard
|
1033
|
+
def discard
|
1053
1034
|
@builder.append ' -discard'
|
1054
1035
|
yield @builder if block_given?
|
1055
1036
|
self
|
@@ -1064,27 +1045,27 @@ module FluentCommandBuilder
|
|
1064
1045
|
yield @builder if block_given?
|
1065
1046
|
self
|
1066
1047
|
end
|
1067
|
-
def preview
|
1048
|
+
def preview
|
1068
1049
|
@builder.append ' -preview'
|
1069
1050
|
yield @builder if block_given?
|
1070
1051
|
self
|
1071
1052
|
end
|
1072
|
-
def baseless
|
1053
|
+
def baseless
|
1073
1054
|
@builder.append ' -baseless'
|
1074
1055
|
yield @builder if block_given?
|
1075
1056
|
self
|
1076
1057
|
end
|
1077
|
-
def no_summary
|
1058
|
+
def no_summary
|
1078
1059
|
@builder.append ' -noSummary'
|
1079
1060
|
yield @builder if block_given?
|
1080
1061
|
self
|
1081
1062
|
end
|
1082
|
-
def no_implicit_baseless
|
1063
|
+
def no_implicit_baseless
|
1083
1064
|
@builder.append ' -noImplicitBaseless'
|
1084
1065
|
yield @builder if block_given?
|
1085
1066
|
self
|
1086
1067
|
end
|
1087
|
-
def conservative
|
1068
|
+
def conservative
|
1088
1069
|
@builder.append ' -conservative'
|
1089
1070
|
yield @builder if block_given?
|
1090
1071
|
self
|
@@ -1094,14 +1075,13 @@ module FluentCommandBuilder
|
|
1094
1075
|
yield @builder if block_given?
|
1095
1076
|
self
|
1096
1077
|
end
|
1097
|
-
def no_prompt
|
1078
|
+
def no_prompt
|
1098
1079
|
@builder.append ' -noPrompt'
|
1099
1080
|
yield @builder if block_given?
|
1100
1081
|
self
|
1101
1082
|
end
|
1102
|
-
def login username,
|
1083
|
+
def login username, password=nil
|
1103
1084
|
@builder.append " -login:#{@builder.format username}"
|
1104
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1105
1085
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1106
1086
|
yield @builder if block_given?
|
1107
1087
|
self
|
@@ -1114,12 +1094,12 @@ module FluentCommandBuilder
|
|
1114
1094
|
@builder.append " #{@builder.format source}" unless source.nil?
|
1115
1095
|
@builder.append " #{@builder.format destination}"
|
1116
1096
|
end
|
1117
|
-
def recursive
|
1097
|
+
def recursive
|
1118
1098
|
@builder.append ' -recursive'
|
1119
1099
|
yield @builder if block_given?
|
1120
1100
|
self
|
1121
1101
|
end
|
1122
|
-
def extended
|
1102
|
+
def extended
|
1123
1103
|
@builder.append ' -extended'
|
1124
1104
|
yield @builder if block_given?
|
1125
1105
|
self
|
@@ -1129,14 +1109,13 @@ module FluentCommandBuilder
|
|
1129
1109
|
yield @builder if block_given?
|
1130
1110
|
self
|
1131
1111
|
end
|
1132
|
-
def login username,
|
1112
|
+
def login username, password=nil
|
1133
1113
|
@builder.append " -login:#{@builder.format username}"
|
1134
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1135
1114
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1136
1115
|
yield @builder if block_given?
|
1137
1116
|
self
|
1138
1117
|
end
|
1139
|
-
def show_all
|
1118
|
+
def show_all
|
1140
1119
|
@builder.append ' -showAll'
|
1141
1120
|
yield @builder if block_given?
|
1142
1121
|
self
|
@@ -1168,7 +1147,7 @@ module FluentCommandBuilder
|
|
1168
1147
|
yield @builder if block_given?
|
1169
1148
|
self
|
1170
1149
|
end
|
1171
|
-
def trial
|
1150
|
+
def trial
|
1172
1151
|
@builder.append ' -trial'
|
1173
1152
|
yield @builder if block_given?
|
1174
1153
|
self
|
@@ -1237,14 +1216,13 @@ module FluentCommandBuilder
|
|
1237
1216
|
yield @builder if block_given?
|
1238
1217
|
self
|
1239
1218
|
end
|
1240
|
-
def recursive
|
1219
|
+
def recursive
|
1241
1220
|
@builder.append ' -recursive'
|
1242
1221
|
yield @builder if block_given?
|
1243
1222
|
self
|
1244
1223
|
end
|
1245
|
-
def login username,
|
1224
|
+
def login username, password=nil
|
1246
1225
|
@builder.append " -login:#{@builder.format username}"
|
1247
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1248
1226
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1249
1227
|
yield @builder if block_given?
|
1250
1228
|
self
|
@@ -1295,7 +1273,7 @@ module FluentCommandBuilder
|
|
1295
1273
|
yield @builder if block_given?
|
1296
1274
|
self
|
1297
1275
|
end
|
1298
|
-
def recursive
|
1276
|
+
def recursive
|
1299
1277
|
@builder.append ' -recursive'
|
1300
1278
|
yield @builder if block_given?
|
1301
1279
|
self
|
@@ -1318,7 +1296,7 @@ module FluentCommandBuilder
|
|
1318
1296
|
yield @builder if block_given?
|
1319
1297
|
self
|
1320
1298
|
end
|
1321
|
-
def recursive
|
1299
|
+
def recursive
|
1322
1300
|
@builder.append ' -recursive'
|
1323
1301
|
yield @builder if block_given?
|
1324
1302
|
self
|
@@ -1341,7 +1319,7 @@ module FluentCommandBuilder
|
|
1341
1319
|
yield @builder if block_given?
|
1342
1320
|
self
|
1343
1321
|
end
|
1344
|
-
def recursive
|
1322
|
+
def recursive
|
1345
1323
|
@builder.append ' -recursive'
|
1346
1324
|
yield @builder if block_given?
|
1347
1325
|
self
|
@@ -1357,9 +1335,8 @@ module FluentCommandBuilder
|
|
1357
1335
|
yield @builder if block_given?
|
1358
1336
|
self
|
1359
1337
|
end
|
1360
|
-
def login username,
|
1338
|
+
def login username, password=nil
|
1361
1339
|
@builder.append " -login:#{@builder.format username}"
|
1362
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1363
1340
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1364
1341
|
yield @builder if block_given?
|
1365
1342
|
self
|
@@ -1376,7 +1353,7 @@ module FluentCommandBuilder
|
|
1376
1353
|
yield @builder if block_given?
|
1377
1354
|
self
|
1378
1355
|
end
|
1379
|
-
def preview
|
1356
|
+
def preview
|
1380
1357
|
@builder.append ' -preview'
|
1381
1358
|
yield @builder if block_given?
|
1382
1359
|
self
|
@@ -1391,7 +1368,7 @@ module FluentCommandBuilder
|
|
1391
1368
|
yield @builder if block_given?
|
1392
1369
|
self
|
1393
1370
|
end
|
1394
|
-
def recursive
|
1371
|
+
def recursive
|
1395
1372
|
@builder.append ' -recursive'
|
1396
1373
|
yield @builder if block_given?
|
1397
1374
|
self
|
@@ -1401,14 +1378,13 @@ module FluentCommandBuilder
|
|
1401
1378
|
yield @builder if block_given?
|
1402
1379
|
self
|
1403
1380
|
end
|
1404
|
-
def no_prompt
|
1381
|
+
def no_prompt
|
1405
1382
|
@builder.append ' -noPrompt'
|
1406
1383
|
yield @builder if block_given?
|
1407
1384
|
self
|
1408
1385
|
end
|
1409
|
-
def login username,
|
1386
|
+
def login username, password=nil
|
1410
1387
|
@builder.append " -login:#{@builder.format username}"
|
1411
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1412
1388
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1413
1389
|
yield @builder if block_given?
|
1414
1390
|
self
|
@@ -1424,19 +1400,18 @@ module FluentCommandBuilder
|
|
1424
1400
|
yield @builder if block_given?
|
1425
1401
|
self
|
1426
1402
|
end
|
1427
|
-
def validate
|
1403
|
+
def validate
|
1428
1404
|
@builder.append ' -validate'
|
1429
1405
|
yield @builder if block_given?
|
1430
1406
|
self
|
1431
1407
|
end
|
1432
|
-
def no_prompt
|
1408
|
+
def no_prompt
|
1433
1409
|
@builder.append ' -noPrompt'
|
1434
1410
|
yield @builder if block_given?
|
1435
1411
|
self
|
1436
1412
|
end
|
1437
|
-
def login username,
|
1413
|
+
def login username, password=nil
|
1438
1414
|
@builder.append " -login:#{@builder.format username}"
|
1439
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1440
1415
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1441
1416
|
yield @builder if block_given?
|
1442
1417
|
self
|
@@ -1447,12 +1422,12 @@ module FluentCommandBuilder
|
|
1447
1422
|
super builder
|
1448
1423
|
@builder.append " shelve #{@builder.format shelveset_name} #{@builder.format item_spec}"
|
1449
1424
|
end
|
1450
|
-
def move
|
1425
|
+
def move
|
1451
1426
|
@builder.append ' -move'
|
1452
1427
|
yield @builder if block_given?
|
1453
1428
|
self
|
1454
1429
|
end
|
1455
|
-
def replace
|
1430
|
+
def replace
|
1456
1431
|
@builder.append ' -replace'
|
1457
1432
|
yield @builder if block_given?
|
1458
1433
|
self
|
@@ -1462,24 +1437,23 @@ module FluentCommandBuilder
|
|
1462
1437
|
yield @builder if block_given?
|
1463
1438
|
self
|
1464
1439
|
end
|
1465
|
-
def recursive
|
1440
|
+
def recursive
|
1466
1441
|
@builder.append ' -recursive'
|
1467
1442
|
yield @builder if block_given?
|
1468
1443
|
self
|
1469
1444
|
end
|
1470
|
-
def validate
|
1445
|
+
def validate
|
1471
1446
|
@builder.append ' -validate'
|
1472
1447
|
yield @builder if block_given?
|
1473
1448
|
self
|
1474
1449
|
end
|
1475
|
-
def no_prompt
|
1450
|
+
def no_prompt
|
1476
1451
|
@builder.append ' -noPrompt'
|
1477
1452
|
yield @builder if block_given?
|
1478
1453
|
self
|
1479
1454
|
end
|
1480
|
-
def login username,
|
1455
|
+
def login username, password=nil
|
1481
1456
|
@builder.append " -login:#{@builder.format username}"
|
1482
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1483
1457
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1484
1458
|
yield @builder if block_given?
|
1485
1459
|
self
|
@@ -1491,9 +1465,8 @@ module FluentCommandBuilder
|
|
1491
1465
|
@builder.append " shelve -delete #{@builder.format shelveset_name}"
|
1492
1466
|
@builder.append ";#{@builder.format shelveset_owner}" unless shelveset_owner.nil?
|
1493
1467
|
end
|
1494
|
-
def login username,
|
1468
|
+
def login username, password=nil
|
1495
1469
|
@builder.append " -login:#{@builder.format username}"
|
1496
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1497
1470
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1498
1471
|
yield @builder if block_given?
|
1499
1472
|
self
|
@@ -1525,9 +1498,8 @@ module FluentCommandBuilder
|
|
1525
1498
|
yield @builder if block_given?
|
1526
1499
|
self
|
1527
1500
|
end
|
1528
|
-
def login username,
|
1501
|
+
def login username, password=nil
|
1529
1502
|
@builder.append " -login:#{@builder.format username}"
|
1530
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1531
1503
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1532
1504
|
yield @builder if block_given?
|
1533
1505
|
self
|
@@ -1543,9 +1515,8 @@ module FluentCommandBuilder
|
|
1543
1515
|
yield @builder if block_given?
|
1544
1516
|
self
|
1545
1517
|
end
|
1546
|
-
def login username,
|
1518
|
+
def login username, password=nil
|
1547
1519
|
@builder.append " -login:#{@builder.format username}"
|
1548
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1549
1520
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1550
1521
|
yield @builder if block_given?
|
1551
1522
|
self
|
@@ -1567,7 +1538,7 @@ module FluentCommandBuilder
|
|
1567
1538
|
yield @builder if block_given?
|
1568
1539
|
self
|
1569
1540
|
end
|
1570
|
-
def recursive
|
1541
|
+
def recursive
|
1571
1542
|
@builder.append ' -recursive'
|
1572
1543
|
yield @builder if block_given?
|
1573
1544
|
self
|
@@ -1584,7 +1555,7 @@ module FluentCommandBuilder
|
|
1584
1555
|
@builder.append " undelete #{@builder.format item_spec}"
|
1585
1556
|
@builder.append ";#{@builder.format deletion_id}" unless deletion_id.nil?
|
1586
1557
|
end
|
1587
|
-
def no_get
|
1558
|
+
def no_get
|
1588
1559
|
@builder.append ' -noGet'
|
1589
1560
|
yield @builder if block_given?
|
1590
1561
|
self
|
@@ -1594,14 +1565,13 @@ module FluentCommandBuilder
|
|
1594
1565
|
yield @builder if block_given?
|
1595
1566
|
self
|
1596
1567
|
end
|
1597
|
-
def recursive
|
1568
|
+
def recursive
|
1598
1569
|
@builder.append ' -recursive'
|
1599
1570
|
yield @builder if block_given?
|
1600
1571
|
self
|
1601
1572
|
end
|
1602
|
-
def login username,
|
1573
|
+
def login username, password=nil
|
1603
1574
|
@builder.append " -login:#{@builder.format username}"
|
1604
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1605
1575
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1606
1576
|
yield @builder if block_given?
|
1607
1577
|
self
|
@@ -1618,19 +1588,18 @@ module FluentCommandBuilder
|
|
1618
1588
|
yield @builder if block_given?
|
1619
1589
|
self
|
1620
1590
|
end
|
1621
|
-
def recursive
|
1591
|
+
def recursive
|
1622
1592
|
@builder.append ' -recursive'
|
1623
1593
|
yield @builder if block_given?
|
1624
1594
|
self
|
1625
1595
|
end
|
1626
|
-
def no_prompt
|
1596
|
+
def no_prompt
|
1627
1597
|
@builder.append ' -noPrompt'
|
1628
1598
|
yield @builder if block_given?
|
1629
1599
|
self
|
1630
1600
|
end
|
1631
|
-
def login username,
|
1601
|
+
def login username, password=nil
|
1632
1602
|
@builder.append " -login:#{@builder.format username}"
|
1633
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1634
1603
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1635
1604
|
yield @builder if block_given?
|
1636
1605
|
self
|
@@ -1651,14 +1620,13 @@ module FluentCommandBuilder
|
|
1651
1620
|
yield @builder if block_given?
|
1652
1621
|
self
|
1653
1622
|
end
|
1654
|
-
def recursive
|
1623
|
+
def recursive
|
1655
1624
|
@builder.append ' -recursive'
|
1656
1625
|
yield @builder if block_given?
|
1657
1626
|
self
|
1658
1627
|
end
|
1659
|
-
def login username,
|
1628
|
+
def login username, password=nil
|
1660
1629
|
@builder.append " -login:#{@builder.format username}"
|
1661
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1662
1630
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1663
1631
|
yield @builder if block_given?
|
1664
1632
|
self
|
@@ -1672,24 +1640,23 @@ module FluentCommandBuilder
|
|
1672
1640
|
@builder.append ";#{@builder.format username}" unless username.nil?
|
1673
1641
|
@builder.append " #{@builder.format item_spec}" unless item_spec.nil?
|
1674
1642
|
end
|
1675
|
-
def move
|
1643
|
+
def move
|
1676
1644
|
@builder.append ' -move'
|
1677
1645
|
yield @builder if block_given?
|
1678
1646
|
self
|
1679
1647
|
end
|
1680
|
-
def recursive
|
1648
|
+
def recursive
|
1681
1649
|
@builder.append ' -recursive'
|
1682
1650
|
yield @builder if block_given?
|
1683
1651
|
self
|
1684
1652
|
end
|
1685
|
-
def no_prompt
|
1653
|
+
def no_prompt
|
1686
1654
|
@builder.append ' -noPrompt'
|
1687
1655
|
yield @builder if block_given?
|
1688
1656
|
self
|
1689
1657
|
end
|
1690
|
-
def login username,
|
1658
|
+
def login username, password=nil
|
1691
1659
|
@builder.append " -login:#{@builder.format username}"
|
1692
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1693
1660
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1694
1661
|
yield @builder if block_given?
|
1695
1662
|
self
|
@@ -1700,9 +1667,8 @@ module FluentCommandBuilder
|
|
1700
1667
|
super builder
|
1701
1668
|
@builder.append " workfold #{@builder.format local_folder}"
|
1702
1669
|
end
|
1703
|
-
def login username,
|
1670
|
+
def login username, password=nil
|
1704
1671
|
@builder.append " -login:#{@builder.format username}"
|
1705
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1706
1672
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1707
1673
|
yield @builder if block_given?
|
1708
1674
|
self
|
@@ -1713,9 +1679,8 @@ module FluentCommandBuilder
|
|
1713
1679
|
super builder
|
1714
1680
|
@builder.append " workfold -workspace:#{@builder.format workspace_name}"
|
1715
1681
|
end
|
1716
|
-
def login username,
|
1682
|
+
def login username, password=nil
|
1717
1683
|
@builder.append " -login:#{@builder.format username}"
|
1718
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1719
1684
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1720
1685
|
yield @builder if block_given?
|
1721
1686
|
self
|
@@ -1726,9 +1691,8 @@ module FluentCommandBuilder
|
|
1726
1691
|
super builder
|
1727
1692
|
@builder.append " workfold #{@builder.format server_folder}"
|
1728
1693
|
end
|
1729
|
-
def login username,
|
1694
|
+
def login username, password=nil
|
1730
1695
|
@builder.append " -login:#{@builder.format username}"
|
1731
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1732
1696
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1733
1697
|
yield @builder if block_given?
|
1734
1698
|
self
|
@@ -1750,9 +1714,8 @@ module FluentCommandBuilder
|
|
1750
1714
|
super builder
|
1751
1715
|
@builder.append " workfold -map #{@builder.format server_folder} #{@builder.format local_folder}"
|
1752
1716
|
end
|
1753
|
-
def login username,
|
1717
|
+
def login username, password=nil
|
1754
1718
|
@builder.append " -login:#{@builder.format username}"
|
1755
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1756
1719
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1757
1720
|
yield @builder if block_given?
|
1758
1721
|
self
|
@@ -1774,9 +1737,8 @@ module FluentCommandBuilder
|
|
1774
1737
|
super builder
|
1775
1738
|
@builder.append ' workfold -unmap'
|
1776
1739
|
end
|
1777
|
-
def login username,
|
1740
|
+
def login username, password=nil
|
1778
1741
|
@builder.append " -login:#{@builder.format username}"
|
1779
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1780
1742
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1781
1743
|
yield @builder if block_given?
|
1782
1744
|
self
|
@@ -1792,7 +1754,7 @@ module FluentCommandBuilder
|
|
1792
1754
|
yield @builder if block_given?
|
1793
1755
|
self
|
1794
1756
|
end
|
1795
|
-
def recursive
|
1757
|
+
def recursive
|
1796
1758
|
@builder.append ' -recursive'
|
1797
1759
|
yield @builder if block_given?
|
1798
1760
|
self
|
@@ -1803,9 +1765,8 @@ module FluentCommandBuilder
|
|
1803
1765
|
super builder
|
1804
1766
|
@builder.append " workfold -cloak #{@builder.format server_folder}"
|
1805
1767
|
end
|
1806
|
-
def login username,
|
1768
|
+
def login username, password=nil
|
1807
1769
|
@builder.append " -login:#{@builder.format username}"
|
1808
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1809
1770
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1810
1771
|
yield @builder if block_given?
|
1811
1772
|
self
|
@@ -1827,9 +1788,8 @@ module FluentCommandBuilder
|
|
1827
1788
|
super builder
|
1828
1789
|
@builder.append " workfold -decloak #{@builder.format server_folder}"
|
1829
1790
|
end
|
1830
|
-
def login username,
|
1791
|
+
def login username, password=nil
|
1831
1792
|
@builder.append " -login:#{@builder.format username}"
|
1832
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1833
1793
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1834
1794
|
yield @builder if block_given?
|
1835
1795
|
self
|
@@ -1852,7 +1812,7 @@ module FluentCommandBuilder
|
|
1852
1812
|
@builder.append " workspace -new #{@builder.format workspace_name}"
|
1853
1813
|
@builder.append ";#{@builder.format workspace_owner}" unless workspace_owner.nil?
|
1854
1814
|
end
|
1855
|
-
def no_prompt
|
1815
|
+
def no_prompt
|
1856
1816
|
@builder.append ' -noPrompt'
|
1857
1817
|
yield @builder if block_given?
|
1858
1818
|
self
|
@@ -1883,9 +1843,8 @@ module FluentCommandBuilder
|
|
1883
1843
|
yield @builder if block_given?
|
1884
1844
|
self
|
1885
1845
|
end
|
1886
|
-
def login username,
|
1846
|
+
def login username, password=nil
|
1887
1847
|
@builder.append " -login:#{@builder.format username}"
|
1888
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1889
1848
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1890
1849
|
yield @builder if block_given?
|
1891
1850
|
self
|
@@ -1902,9 +1861,8 @@ module FluentCommandBuilder
|
|
1902
1861
|
yield @builder if block_given?
|
1903
1862
|
self
|
1904
1863
|
end
|
1905
|
-
def login username,
|
1864
|
+
def login username, password=nil
|
1906
1865
|
@builder.append " -login:#{@builder.format username}"
|
1907
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1908
1866
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1909
1867
|
yield @builder if block_given?
|
1910
1868
|
self
|
@@ -1937,9 +1895,8 @@ module FluentCommandBuilder
|
|
1937
1895
|
yield @builder if block_given?
|
1938
1896
|
self
|
1939
1897
|
end
|
1940
|
-
def login username,
|
1898
|
+
def login username, password=nil
|
1941
1899
|
@builder.append " -login:#{@builder.format username}"
|
1942
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1943
1900
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1944
1901
|
yield @builder if block_given?
|
1945
1902
|
self
|
@@ -1991,9 +1948,8 @@ module FluentCommandBuilder
|
|
1991
1948
|
yield @builder if block_given?
|
1992
1949
|
self
|
1993
1950
|
end
|
1994
|
-
def login username,
|
1951
|
+
def login username, password=nil
|
1995
1952
|
@builder.append " -login:#{@builder.format username}"
|
1996
|
-
@builder.append "@#{@builder.format domain}" unless domain.nil?
|
1997
1953
|
@builder.append ",#{@builder.format password}" unless password.nil?
|
1998
1954
|
yield @builder if block_given?
|
1999
1955
|
self
|
@@ -2010,7 +1966,7 @@ module FluentCommandBuilder
|
|
2010
1966
|
self
|
2011
1967
|
end
|
2012
1968
|
end
|
2013
|
-
def tf
|
1969
|
+
def tf
|
2014
1970
|
builder = CommandBuilder.new COMMAND_NAME
|
2015
1971
|
command = Tf.new builder
|
2016
1972
|
yield builder if block_given?
|
@@ -2018,7 +1974,7 @@ module FluentCommandBuilder
|
|
2018
1974
|
end
|
2019
1975
|
end
|
2020
1976
|
end
|
2021
|
-
def tf_tee_2010
|
1977
|
+
def tf_tee_2010
|
2022
1978
|
builder = CommandBuilder.new Tf::TEE_2010::COMMAND_NAME
|
2023
1979
|
command = Tf::TEE_2010::Tf.new builder
|
2024
1980
|
yield builder if block_given?
|