-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathgem.ts
1587 lines (1580 loc) · 42.6 KB
/
gem.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const gems: Fig.Generator = {
trigger: () => true,
custom: async (tokens, executeShellCommand) => {
const searchTerm = tokens[tokens.length - 1];
const { stdout } = await executeShellCommand({
command: "gem",
args: [
"search",
"--both",
"--no-versions",
"--no-details",
"--quiet",
"--norc",
searchTerm,
],
});
return stdout
.trim()
.split("\n")
.filter((line) => line && !line.startsWith("*"))
.map((name) => ({ name }));
},
};
const httpProxyOptions: Fig.Option[] = [
{
name: ["-p", "--http-proxy"],
description: "Use HTTP proxy for remote operations",
exclusiveOn: ["--no-http-proxy"],
args: {
name: "URL",
description: "The URL",
isOptional: true,
},
},
{
name: "--no-http-proxy",
description: "Do not use HTTP proxy for remote operations",
exclusiveOn: ["--http-proxy"],
},
];
const localRemoteOptions: Fig.Option[] = [
{
name: ["-l", "--local"],
description: "Restrict operations to the LOCAL domain",
exclusiveOn: ["--remote", "--both"],
},
{
name: ["-r", "--remote"],
description: "Restrict operations to the REMOTE domain",
exclusiveOn: ["--local", "--both"],
},
{
name: ["-b", "--both"],
description: "Allow LOCAL and REMOTE operations",
exclusiveOn: ["--remote", "--local"],
},
{
name: ["-B", "--bulk-threshold"],
description:
"Threshold for switching to bulk synchronization (default 1000)",
args: {
name: "COUNT",
description: "The threshold",
},
},
{
name: "--clear-sources",
description: "Clear the gem sources",
},
{
name: ["-s", "--source"],
description: "Append URL to list of remote gem sources",
args: {
name: "URL",
description: "The URL",
},
},
...httpProxyOptions,
];
const installedOptions: Fig.Option[] = [
{
name: ["-i", "--installed"],
description: "Check for installed gem",
exclusiveOn: ["--no-installed"],
},
{
name: ["-I", "--no-installed"],
description: "Check for not installed gem",
exclusiveOn: ["--installed"],
},
{
name: ["-v", "--version"],
description: "Specify version of gem to list for use with --installed",
args: {
name: "VERSION",
description: "The version of gem",
},
},
];
const displayOptions: Fig.Option[] = [
{
name: ["-a", "--all"],
description: "Display all gem versions",
},
{
name: ["-e", "--exact"],
description: "Name of gem(s) to query on matches the provided STRING",
},
{
name: "--prerelease",
description: "Allow prerelease versions of a gem",
exclusiveOn: ["--no-prerelease"],
},
{
name: "--no-prerelease",
description: "Do not allow prerelease versions of a gem",
exclusiveOn: ["--prerelease"],
},
];
const versionsOptions: Fig.Option[] = [
{
name: "--versions",
description: "Display only gem names",
exclusiveOn: ["--no-versions"],
},
{
name: "--no-versions",
description: "Display not only gem names",
exclusiveOn: ["--versions"],
},
];
const authenticationOptions: Fig.Option[] = [
{
name: "--host",
description:
"Use another gemcutter-compatible host (e.g. https://rubygems.org)",
args: {
name: "HOST",
description: "The host",
},
},
{
name: ["-k", "--key"],
description: "Use the given API key",
args: {
name: "KEYNAME",
description: "The API key",
},
},
{
name: "--otp",
description:
"Digit code for multifactor authentication You can also use the environment variable GEM_HOST_OTP_CODE",
args: {
name: "CODE",
description: "The GEM host otp code",
},
},
];
const completionSpec: Fig.Spec = {
name: "gem",
description: "Ruby package manager",
subcommands: [
{
name: "help",
description: "Help about any command",
args: { name: "command", isOptional: true, template: "help" },
},
{
name: ["install", "i"],
description: "Install a gem into the local repository",
args: {
name: "GEMNAME",
generators: gems,
debounce: true,
},
options: [
{
name: "--platform",
description: "Specify the platform of gem to install",
args: {
name: "PLATFORM",
description: "The platform of gem",
},
},
],
},
{
name: "cert",
description: "Manage RubyGems certificates and signing settings",
options: [
{
name: ["-a", "--add"],
description: "Add a trusted certificate",
args: {
name: "CERT",
description: "The trusted certificate",
template: "filepaths",
},
},
{
name: ["-l", "--list"],
description:
"List trusted certificates where the subject contains FILTER",
args: {
name: "FILTER",
description: "The filter",
isOptional: true,
},
},
{
name: ["-r", "--remove"],
description:
"Remove trusted certificates where the subject contains FILTER",
args: {
name: "FILTER",
description: "The filter",
},
},
{
name: ["-b", "--build"],
description:
"Build private key and self-signed certificate for EMAIL_ADDR",
args: {
name: "EMAIL_ADDR",
description: "The email address",
},
},
{
name: ["-C", "--certificate"],
description: "Signing certificate for --sign",
args: {
name: "CERT",
description: "The certificate",
template: "filepaths",
},
},
{
name: ["-K", "--private-key"],
description: "Key for --sign or --build",
args: {
name: "KEY",
description: "The key",
template: "filepaths",
},
},
{
name: ["-A", "--key-algorithm"],
description: "Select which key algorithm to use for --build",
args: {
name: "ALGORITHM",
description: "The algorithm",
},
},
{
name: ["-s", "--sign"],
description:
"Signs CERT with the key from -K and the certificate from -C",
args: {
name: "CERT",
description: "The certificate",
template: "filepaths",
},
},
{
name: ["-d", "--days"],
description: "Days before the certificate expires",
args: {
name: "NUMBER_OF_DAYS",
description: "The number of days",
},
},
{
name: ["-R", "--re-sign"],
description: "Re-signs the certificate from -C with the key from -K",
},
],
},
{
name: "check",
description: "Check a gem repository for added or missing files",
args: {
name: "GEMNAME",
generators: gems,
debounce: true,
isOptional: true,
},
options: [
{
name: ["-a", "--alien"],
description:
"Report 'unmanaged' or rogue files in the gem repository",
exclusiveOn: ["--no-alien"],
},
{
name: "--no-alien",
description: "Report 'managed' or rogue files in the gem repository",
exclusiveOn: ["--alien"],
},
{
name: "--doctor",
description: "Clean up uninstalled gems and broken specifications",
exclusiveOn: ["--no-doctor"],
},
{
name: "--no-doctor",
description:
"Do not clean up uninstalled gems and broken specifications",
exclusiveOn: ["--doctor"],
},
{
name: "--dry-run",
description: "Do not remove files, only report what would be removed",
exclusiveOn: ["--no-dry-run"],
},
{
name: "--no-dry-run",
description: "Remove files",
exclusiveOn: ["--dry-run"],
},
{
name: "--gems",
description: "Check installed gems for problems",
exclusiveOn: ["--no-gems"],
},
{
name: "--no-gems",
description: "Check not installed gems for problems",
exclusiveOn: ["--gems"],
},
{
name: ["-v", "--version"],
description: "Specify version of gem to check",
args: {
name: "VERSION",
description: "The version of the gem",
},
},
],
},
{
name: "cleanup",
description: "Clean up old versions of installed gems",
args: {
name: "GEMNAME",
description: "Name of gem to cleanup",
generators: gems,
debounce: true,
isOptional: true,
},
options: [
{
name: ["-n", "-d", "--dry-run"],
description: "Do not uninstall gems",
},
{
name: ["-D", "--check-development"],
description:
"Check development dependencies while uninstalling (default: true)",
exclusiveOn: ["--no-check-development"],
},
{
name: "--no-check-development",
description:
"Do not check development dependencies while uninstalling",
exclusiveOn: ["--check-development"],
},
{
name: "--user-install",
description: "Cleanup in user’s home directory instead of GEM_HOME",
exclusiveOn: ["--no-user-install"],
},
{
name: "--no-user-install",
description: "Cleanup in GEM_HOME instead of user’s home directory",
exclusiveOn: ["--user-install"],
},
],
},
{
name: "contents",
description: "Display the contents of the installed gems",
args: {
name: "GEMNAME",
description: "Name of gem to list contents for",
generators: gems,
debounce: true,
},
options: [
{
name: ["-v", "--version"],
description: "Specify version of gem to contents",
args: {
name: "VERSION",
description: "The version of the gem",
},
},
{
name: "--all",
description: "Contents for all gems",
},
{
name: ["-s", "--spec-dir"],
description: "Search for gems under specific paths",
args: {
name: "DIR",
template: "filepaths",
},
},
{
name: ["-l", "--lib-only"],
description: "Only return files in the Gem’s lib_dirs",
exclusiveOn: ["--no-lib-only"],
},
{
name: "--no-lib-only",
description: "Not only return files in the Gem’s lib_dirs",
exclusiveOn: ["--lib-only"],
},
{
name: "--prefix",
description: "Don’t include installed path prefix",
exclusiveOn: ["--no-prefix"],
},
{
name: "--no-prefix",
description: "Include installed path prefix",
exclusiveOn: ["--prefix"],
},
{
name: "--show-install-dir",
description: "Show only the gem install dir",
exclusiveOn: ["--no-show-install-dir"],
},
{
name: "--no-show-install-dir",
description: "Do not show only the gem install dir",
exclusiveOn: ["--show-install-dir"],
},
],
},
{
name: "dependency",
description: "Show the dependencies of an installed gem",
args: {
name: "REGEXP",
description: "Show dependencies for gems whose names start with REGEXP",
},
options: [
{
name: ["-v", "--version"],
description: "Specify version of gem to dependency",
args: {
name: "VERSION",
description: "The version of gem",
},
},
{
name: "--platform",
description: "Specify the platform of gem to dependency",
args: {
name: "PLATFORM",
description: "The platform of gem",
},
},
{
name: "--prerelease",
description: "Allow prerelease versions of a gem",
exclusiveOn: ["--no-prerelease"],
},
{
name: "--no-prerelease",
description: "Do not allow prerelease versions of a gem",
exclusiveOn: ["--prerelease"],
},
{
name: ["-R", "--reverse-dependencies"],
description: "Include reverse dependencies in the output",
exclusiveOn: ["--no-reverse-dependencies"],
},
{
name: "--no-reverse-dependencies",
description: "Do not include reverse dependencies in the output",
exclusiveOn: ["--reverse-dependencies"],
},
{
name: "--pipe",
description: "Pipe Format (name --version ver)",
},
...localRemoteOptions,
],
},
{
name: "environment",
description: "Display information about the RubyGems environment",
args: {
suggestions: [
{
name: "home",
description:
"Display the path where gems are installed. Aliases: gemhome, gemdir, GEM_HOME",
},
{
name: "path",
description:
"Display path used to search for gems. Aliases: gempath, GEM_PATH",
},
{
name: "user_gemhome",
description:
"Display the path where gems are installed when --user-install is given. Aliases: user_gemdir",
},
{
name: "version",
description: "Display the gem format version",
},
{
name: "remotesources",
description: "Display the remote gem servers",
},
{
name: "platform",
description: "Display the supported gem platforms",
},
],
isOptional: true,
},
},
{
name: "fetch",
description: "Download a gem and place it in the current directory",
args: {
name: "GEMNAME",
description: "Name of gem to download",
generators: gems,
debounce: true,
},
options: [
{
name: ["-v", "--version"],
description: "Specify version of gem to fetch",
args: {
name: "VERSION",
description: "The version of the gem",
},
},
{
name: "--platform",
description: "Specify the platform of gem to fetch",
args: {
name: "PLATFORM",
description: "The platform of gem",
},
},
{
name: "--prerelease",
description: "Allow prerelease versions of a gem",
exclusiveOn: ["--no-prerelease"],
},
{
name: "--no-prerelease",
description: "Do not allow prerelease versions of a gem",
exclusiveOn: ["--prerelease"],
},
{
name: "--suggestions",
description: "Suggest alternates when gems are not found",
exclusiveOn: ["--no-suggestions"],
},
{
name: "--no-suggestions",
description: "Do not suggest alternates when gems are not found",
exclusiveOn: ["--suggestions"],
},
{
name: ["-B", "--bulk-threshold"],
description:
"Threshold for switching to bulk synchronization (default 1000)",
args: {
name: "COUNT",
description: "The threshold",
},
},
{
name: ["-s", "--source"],
description: "Append URL to list of remote gem sources",
args: {
name: "URL",
description: "The URL",
},
},
{
name: "--clear-sources",
description: "Clear the gem sources",
},
...httpProxyOptions,
],
},
{
name: "generate_index",
description: "Generates the index files for a gem server directory",
options: [
{
name: ["-d", "--directory"],
description: "Repository base dir containing gems subdir",
args: {
name: "DIRNAME",
template: "folders",
filterStrategy: "fuzzy",
},
requiresSeparator: true,
},
{
name: "--modern",
description: "Generate indexes for RubyGems (always true)",
exclusiveOn: ["--no-modern"],
},
{
name: "--no-modern",
description: "Do not generate indexes for RubyGems",
exclusiveOn: ["--modern"],
},
{
name: "--update",
description:
"Update modern indexes with gems added since the last update",
},
],
},
{
name: "info",
description: "Show information for the given gem",
args: {
name: "GEMNAME",
description: "Name of the gem to print information about",
generators: gems,
debounce: true,
},
options: [
{
name: "-I",
description: "Equivalent to --no-installed",
exclusiveOn: ["--installed"],
},
...displayOptions,
...installedOptions,
...versionsOptions,
],
},
{
name: "lock",
description: "Generate a lockdown list of gems",
args: {
name: "GEMNAME-VERSION",
description: "Name and the version of gem to lock, ex: rails-1.0.0",
},
options: [
{
name: ["-s", "--strict"],
description: "Fail if unable to satisfy a dependency",
exclusiveOn: ["--no-strict"],
},
{
name: "--no-strict",
description: "Do not fail if unable to satisfy a dependency",
exclusiveOn: ["--strict"],
},
],
},
{
name: "mirror",
description: "Mirror all gem files (requires rubygems-mirror)",
},
{
name: "open",
description: "Open gem sources in editor",
args: {
name: "GEMNAME",
description: "Name of the gem to print information about",
generators: gems,
debounce: true,
},
options: [
{
name: ["-e", "--editor"],
description:
"Prepends COMMAND to gem path. Could be used to specify editor",
args: {
name: "COMMAND",
description: "The prepends command to gem path",
},
},
{
name: ["-v", "--version"],
description: "Opens specific gem version",
args: {
name: "VERSION",
description: "The specify version of gem",
},
},
],
},
{
name: "pristine",
description:
"Restores installed gems to pristine condition from files located in the gem cache",
args: {
name: "GEMNAME",
description: "Name of the gem to print information about",
generators: gems,
debounce: true,
isOptional: true,
},
options: [
{
name: "--all",
description: "Restore all installed gems to pristine condition",
},
{
name: "--skip",
description: "Restore all installed gems to pristine condition",
args: {
name: "GEMNAME",
description: "Name of the gem to print information about",
generators: gems,
debounce: true,
},
requiresSeparator: true,
dependsOn: ["--all"],
},
{
name: "--extensions",
description:
"Restore gems with extensions in addition to regular gems",
exclusiveOn: ["--no-extensions"],
},
{
name: "--no-extensions",
description:
"Do not restore gems with extensions in addition to regular gems",
exclusiveOn: ["--extensions"],
},
{
name: "--only-executables",
description: "Only restore executables",
},
{
name: "--only-plugins",
description: "Only restore plugins",
},
{
name: ["-E", "--env-shebang"],
description: "Rewrite executables with a shebang of /usr/bin/env",
exclusiveOn: ["--no-env-shebang"],
},
{
name: "--no-env-shebang",
description:
"Do not rewrite executables with a shebang of /usr/bin/env",
exclusiveOn: ["--env-shebang"],
},
{
name: ["-i", "--install-dir"],
description: "Gem repository to get binstubs and plugins installed",
args: {
name: "DIR",
template: "folders",
filterStrategy: "fuzzy",
},
},
{
name: ["-n", "--bindir"],
description: "Directory where executables are located",
args: {
name: "DIR",
template: "folders",
filterStrategy: "fuzzy",
},
},
{
name: ["-v", "--version"],
description:
"Specify version of gem to restore to pristine condition",
args: {
name: "VERSION",
description: "The specify version of gem",
},
},
],
},
{
name: "query",
description: "Query gem information in local or remote repositories",
options: [
{
name: ["-n", "--name-matches"],
description: "Name of gem(s) to query on matches the provided REGEXP",
args: {
name: "REGEXP",
description: "The rule of the regexp",
},
},
{
name: "-I",
description: "Equivalent to --no-installed",
exclusiveOn: ["--installed"],
},
{
name: ["-d", "--details"],
description: "Display detailed information of gem(s)",
exclusiveOn: ["--no-details"],
},
{
name: "--no-details",
description: "Do not display detailed information of gem(s)",
exclusiveOn: ["--details"],
},
...displayOptions,
...installedOptions,
...versionsOptions,
...localRemoteOptions,
],
},
{
name: "rdoc",
description: "Generates RDoc for pre-installed gems",
args: {
name: "GEMNAME",
description: "Gem to generate documentation for (unless –all)",
generators: gems,
debounce: true,
isOptional: true,
},
options: [
{
name: "--all",
description: "Generate RDoc/RI documentation for all installed gems",
},
{
name: "--rdoc",
description: "Generate RDoc HTML",
exclusiveOn: ["--no-rdoc"],
},
{
name: "--no-rdoc",
description: "Do not generate RDoc HTML",
exclusiveOn: ["--rdoc"],
},
{
name: "--ri",
description: "Generate RI data",
exclusiveOn: ["--no-ri"],
},
{
name: "--no-ri",
description: "Do not generate RI data",
exclusiveOn: ["--ri"],
},
{
name: "--overwrite",
description: "Overwrite installed documents",
exclusiveOn: ["--no-overwrite"],
},
{
name: "--no-overwrite",
description: "Do not overwrite installed documents",
exclusiveOn: ["--overwrite"],
},
{
name: ["-v", "--version"],
description: "Specify version of gem to rdoc",
args: {
name: "VERSION",
description: "The specify version of gem",
},
},
],
},
{
name: "search",
description: "Display remote gems whose name matches REGEXP",
args: {
name: "REGEXP",
description: "Regexp to look for in gem name",
isOptional: true,
},
options: [
{
name: "-I",
description: "Equivalent to --no-installed",
exclusiveOn: ["--installed"],
},
{
name: ["-d", "--details"],
description: "Display detailed information of gem(s)",
exclusiveOn: ["--no-details"],
},
{
name: "--no-details",
description: "Do not display detailed information of gem(s)",
exclusiveOn: ["--details"],
},
...displayOptions,
...installedOptions,
...versionsOptions,
...localRemoteOptions,
],
},
{
name: "signin",
description:
"Sign in to any gemcutter-compatible host. It defaults to https://rubygems.org",
options: [
{
name: "--host",
description:
"Use another gemcutter-compatible host (e.g. https://rubygems.org)",
args: {
name: "HOST",
description: "The host",
},
},
{
name: "--otp",
description:
"Digit code for multifactor authentication You can also use the environment variable GEM_HOST_OTP_CODE",
args: {
name: "CODE",
description: "The GEM host otp code",
},
},
],
},
{
name: "signout",
description: "Sign out from all the current sessions",
},
{
name: "sources",
description:
"Manage the sources and cache file RubyGems uses to search for gems",
options: [
{
name: ["-a", "--add"],
description: "Add source",
args: {
name: "SOURCE_URI",
description: "The source URI",
},
},
{
name: ["-l", "--list"],
description: "List sources",
},
{
name: ["-r", "--remove"],
description: "Remove source",
args: {
name: "SOURCE_URI",
description: "The source URI",
},
},
{
name: ["-c", "--clear-all"],
description: "Remove all sources (clear the cache)",
},
{
name: ["-u", "--update"],
description: "Update source cache",
},
{
name: ["-f", "--force"],
description:
"Do not show any confirmation prompts and behave as if 'yes' was always answered",
exclusiveOn: ["--no-force"],
},
{
name: "--no-force",
description:
"Show any confirmation prompts and behave as if 'yes' was always answered",
exclusiveOn: ["--force"],
},
...httpProxyOptions,
],
},
{
name: "specification",
description: "Display gem specification (in yaml)",
args: [
{
name: "GEMFILE",
description: "Name of gem to show the gemspec for",
generators: gems,