-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpod.sh
768 lines (715 loc) · 30.2 KB
/
pod.sh
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
#!/usr/bin/env bash
# Automatic generated, DON'T MODIFY IT.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --version Show the version of the tool
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# {{ pod cache
# @cmd Manipulate the CocoaPods cache
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
cache() {
:;
}
# {{{ pod cache clean
# @cmd Remove the cache for pods
# @flag --all Remove all the cached pods without asking
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
cache::clean() {
:;
}
# }}} pod cache clean
# {{{ pod cache list
# @cmd List the paths of pod caches for each known pod
# @flag --short Only print the path relative to the cache root
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
cache::list() {
:;
}
# }}} pod cache list
# }} pod cache
# {{ pod deintegrate
# @cmd Deintegrate CocoaPods from your project
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg xcode_project
deintegrate() {
:;
}
# }} pod deintegrate
# {{ pod env
# @cmd Display pod environment
# @flag --allow-root Allows CocoaPods to run as root
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
env() {
:;
}
# }} pod env
# {{ pod init
# @cmd Generate a Podfile for the current directory
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg xcodeproj
init() {
:;
}
# }} pod init
# {{ pod install
# @cmd Install project dependencies according to versions from a Podfile.lock
# @flag --repo-update Force running `pod repo update` before install
# @flag --deployment Disallow any changes to the Podfile or the Podfile.lock during installation
# @flag --clean-install Ignore the contents of the project cache and force a full pod installation.
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
install() {
:;
}
# }} pod install
# {{ pod ipc
# @cmd Inter-process communication
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
ipc() {
:;
}
# {{{ pod ipc list
# @cmd Lists the specifications known to CocoaPods
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
ipc::list() {
:;
}
# }}} pod ipc list
# {{{ pod ipc podfile
# @cmd Converts a Podfile to YAML
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg path
ipc::podfile() {
:;
}
# }}} pod ipc podfile
# {{{ pod ipc podfile-json
# @cmd Converts a Podfile to JSON
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg path
ipc::podfile-json() {
:;
}
# }}} pod ipc podfile-json
# {{{ pod ipc repl
# @cmd The repl listens to commands on standard input
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
ipc::repl() {
:;
}
# }}} pod ipc repl
# {{{ pod ipc spec
# @cmd Converts a podspec to JSON
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg path
ipc::spec() {
:;
}
# }}} pod ipc spec
# {{{ pod ipc update-search-index
# @cmd Updates the search index
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
ipc::update-search-index() {
:;
}
# }}} pod ipc update-search-index
# }} pod ipc
# {{ pod lib
# @cmd Develop pods
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
lib() {
:;
}
# {{{ pod lib create
# @cmd Creates a new Pod
# @option --template-url <URL> The URL of the git repo containing a compatible template
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
lib::create() {
:;
}
# }}} pod lib create
# {{{ pod lib lint
# @cmd Validates a Pod
# @flag --quick Lint skips checks that would require to download and build the spec
# @flag --allow-warnings Lint validates even if warnings are present
# @option --subspec <NAME> Lint validates only the given subspec
# @flag --no-subspecs Lint skips validation of subspecs
# @flag --no-clean Lint leaves the build directory intact for inspection
# @flag --fail-fast Lint stops on the first failing platform or subspec
# @flag --use-libraries Lint uses static libraries to install the spec
# @flag --use-modular-headers Lint uses modular headers during installation
# @flag --use-static-frameworks Lint uses static frameworks during installation
# @option --sources <https://cdn.cocoapods.org/> The sources from which to pull dependent pods (defaults to https://cdn.cocoapods.org/).
# @option --platforms <ios,macos,visionos> Lint against specific platforms (defaults to all platforms supported by the podspec).
# @flag --private Lint skips checks that apply only to public specs
# @option --swift-version <VERSION> The `SWIFT_VERSION` that should be used to lint the spec.
# @option --include-podspecs <**/*.podspec> Additional ancillary podspecs which are used for linting via :path
# @option --external-podspecs <**/*.podspec> Additional ancillary podspecs which are used for linting via :podspec.
# @flag --skip-import-validation Lint skips validating that the pod can be imported
# @flag --skip-tests Lint skips building and running tests during validation
# @option --test-specs <test-spec1,test-spec2,etc> List of test specs to run
# @flag --analyze Validate with the Xcode Static Analysis tool
# @option --configuration Build using the given configuration (defaults to Release)
# @flag --validation-dir The directory to use for validation.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg podspec_paths*
lib::lint() {
:;
}
# }}} pod lib lint
# }} pod lib
# {{ pod list
# @cmd List pods
# @flag --update Run `pod repo update` before listing
# @flag --stats Show additional stats (like GitHub watchers and forks)
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
list() {
:;
}
# }} pod list
# {{ pod outdated
# @cmd Show outdated project dependencies
# @flag --ignore-prerelease Don't consider prerelease versions to be updates
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --no-repo-update Skip running `pod repo update` before install
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
outdated() {
:;
}
# }} pod outdated
# {{ pod plugins
# @cmd Show available CocoaPods plugins
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
plugins() {
:;
}
# {{{ pod plugins create
# @cmd Creates a new plugin
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
# @arg template_url
plugins::create() {
:;
}
# }}} pod plugins create
# {{{ pod plugins installed
# @cmd List plugins installed on your machine
# @flag --allow-root Allows CocoaPods to run as root
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
plugins::installed() {
:;
}
# }}} pod plugins installed
# {{{ pod plugins publish
# @cmd Request to add the plugin to the official plugins list
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
plugins::publish() {
:;
}
# }}} pod plugins publish
# {{{ pod plugins search
# @cmd Search for known plugins
# @flag --full Search by name, author, and description
# @flag --allow-root Allows CocoaPods to run as root
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg query
plugins::search() {
:;
}
# }}} pod plugins search
# }} pod plugins
# {{ pod repo
# @cmd Manage spec-repositories
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
repo() {
:;
}
# {{{ pod repo add
# @cmd Add a spec repo
# @flag --progress Show the progress of cloning the spec repository
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
# @arg url
# @arg branch
repo::add() {
:;
}
# }}} pod repo add
# {{{ pod repo add-cdn
# @cmd Add a spec repo backed by a CDN
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
# @arg url
repo::add-cdn() {
:;
}
# }}} pod repo add-cdn
# {{{ pod repo lint
# @cmd Validates all specs in a repo
# @flag --only-errors Lint presents only the errors
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name-directory <NAME|DIRECTORY>
repo::lint() {
:;
}
# }}} pod repo lint
# {{{ pod repo push
# @cmd Push new specifications to a spec-repo
# @flag --allow-warnings Allows pushing even if there are warnings
# @flag --use-libraries Linter uses static libraries to install the spec
# @flag --use-modular-headers Lint uses modular headers during installation
# @option --sources <https://cdn.cocoapods.org/> The sources from which to pull dependent pods (defaults to all available repos).
# @flag --local-only Does not perform the step of pushing REPO to its remote
# @flag --no-private Lint includes checks that apply only to public repos
# @flag --skip-import-validation Lint skips validating that the pod can be imported
# @flag --skip-tests Lint skips building and running tests during validation
# @option --commit-message <"Fix> <bug> <in> <pod"> Add custom commit message.
# @flag --use-json Convert the podspec to JSON before pushing it to the repo
# @option --swift-version <VERSION> The `SWIFT_VERSION` that should be used when linting the spec.
# @flag --no-overwrite Disallow pushing that would overwrite an existing spec
# @flag --update-sources Make sure sources are up-to-date before a push
# @flag --validation-dir The directory to use for validation.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg repo
# @arg name-podspec <NAME.podspec>
repo::push() {
:;
}
# }}} pod repo push
# {{{ pod repo remove
# @cmd Remove a spec repo
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
repo::remove() {
:;
}
# }}} pod repo remove
# {{{ pod repo update
# @cmd Update a spec repo
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
repo::update() {
:;
}
# }}} pod repo update
# }} pod repo
# {{ pod search
# @cmd Search for pods
# @flag --regex Interpret the `QUERY` as a regular expression
# @flag --simple Search only by name
# @flag --stats Show additional stats (like GitHub watchers and forks)
# @flag --web Searches on cocoapods.org
# @flag --ios Restricts the search to Pods supported on iOS
# @flag --osx Restricts the search to Pods supported on macOS
# @flag --watchos Restricts the search to Pods supported on watchOS
# @flag --visionos Restricts the search to Pods supported on visionOS
# @flag --tvos Restricts the search to Pods supported on tvOS
# @flag --no-pager Do not pipe search results into a pager
# @flag --allow-root Allows CocoaPods to run as root
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg query
search() {
:;
}
# }} pod search
# {{ pod setup
# @cmd Set up the CocoaPods environment
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
setup() {
:;
}
# }} pod setup
# {{ pod spec
# @cmd Manage pod specs
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
spec() {
:;
}
# {{{ pod spec cat
# @cmd Prints a spec file
# @flag --regex Interpret the `QUERY` as a regular expression
# @flag --show-all Pick from all versions of the given podspec
# @flag --version Print a specific version of the given podspec
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg query
spec::cat_() {
:;
}
# }}} pod spec cat
# {{{ pod spec create
# @cmd Create spec file stub.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name-https-github-com-user-repo <NAME|https://github.com/USER/REPO>
spec::create() {
:;
}
# }}} pod spec create
# {{{ pod spec edit
# @cmd Edit a spec file
# @flag --regex Interpret the `QUERY` as a regular expression
# @flag --show-all Pick from all versions of the given podspec
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg query
spec::edit() {
:;
}
# }}} pod spec edit
# {{{ pod spec lint
# @cmd Validates a spec file
# @flag --quick Lint skips checks that would require to download and build the spec
# @flag --allow-warnings Lint validates even if warnings are present
# @option --subspec <NAME> Lint validates only the given subspec
# @flag --no-subspecs Lint skips validation of subspecs
# @flag --no-clean Lint leaves the build directory intact for inspection
# @flag --fail-fast Lint stops on the first failing platform or subspec
# @flag --use-libraries Lint uses static libraries to install the spec
# @flag --use-modular-headers Lint uses modular headers during installation
# @flag --use-static-frameworks Lint uses static frameworks during installation
# @option --sources <https://cdn.cocoapods.org/> The sources from which to pull dependent pods (defaults to https://cdn.cocoapods.org/).
# @option --platforms <ios,macos> Lint against specific platforms (defaults to all platforms supported by the podspec).
# @flag --private Lint skips checks that apply only to public specs
# @option --swift-version <VERSION> The `SWIFT_VERSION` that should be used to lint the spec.
# @flag --skip-import-validation Lint skips validating that the pod can be imported
# @flag --skip-tests Lint skips building and running tests during validation
# @option --test-specs <test-spec1,test-spec2,etc> List of test specs to run
# @flag --analyze Validate with the Xcode Static Analysis tool
# @option --configuration Build using the given configuration (defaults to Release)
# @flag --validation-dir The directory to use for validation.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name-podspec-directory-http-path-name-podspec* <NAME.podspec|DIRECTORY|http://PATH/NAME.podspec>
spec::lint() {
:;
}
# }}} pod spec lint
# {{{ pod spec which
# @cmd Prints the path of the given spec
# @flag --regex Interpret the `QUERY` as a regular expression
# @flag --show-all Print all versions of the given podspec
# @flag --version Print a specific version of the given podspec
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg query
spec::which() {
:;
}
# }}} pod spec which
# }} pod spec
# {{ pod trunk
# @cmd Interact with the CocoaPods API (e.g. publishing new specs)
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
trunk() {
:;
}
# {{{ pod trunk add-owner
# @cmd Add an owner to a pod
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg pod
# @arg owner-email
trunk::add-owner() {
:;
}
# }}} pod trunk add-owner
# {{{ pod trunk delete
# @cmd Deletes a version of a pod.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
# @arg version
trunk::delete() {
:;
}
# }}} pod trunk delete
# {{{ pod trunk deprecate
# @cmd Deprecates a pod.
# @option --in-favor-of <OTHER_NAME> The pod to deprecate this pod in favor of.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
trunk::deprecate() {
:;
}
# }}} pod trunk deprecate
# {{{ pod trunk info
# @cmd Returns information about a Pod.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name
trunk::info() {
:;
}
# }}} pod trunk info
# {{{ pod trunk me
# @cmd Display information about your sessions
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
trunk::me() {
:;
}
# {{{{ pod trunk me clean-sessions
# @cmd Remove sessions
# @flag --all Removes all your sessions, except for the current one
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
trunk::me::clean-sessions() {
:;
}
# }}}} pod trunk me clean-sessions
# }}} pod trunk me
# {{{ pod trunk push
# @cmd Publish a podspec
# @flag --allow-warnings Allows push even if there are lint warnings
# @flag --use-libraries Linter uses static libraries to install the spec
# @flag --use-modular-headers Lint uses modular headers during installation
# @option --swift-version <VERSION> The SWIFT_VERSION that should be used to lint the spec.
# @flag --skip-import-validation Lint skips validating that the pod can be imported
# @flag --skip-tests Lint skips building and running tests during validation
# @flag --synchronous If validation depends on other recently pushed pods, synchronize
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg path
trunk::push() {
:;
}
# }}} pod trunk push
# {{{ pod trunk register
# @cmd Manage sessions
# @option --description An arbitrary description to easily identify your session later on.
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg email
# @arg your_name
trunk::register() {
:;
}
# }}} pod trunk register
# {{{ pod trunk remove-owner
# @cmd Remove an owner from a pod
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg pod
# @arg owner-email
trunk::remove-owner() {
:;
}
# }}} pod trunk remove-owner
# }} pod trunk
# {{ pod try
# @cmd Try a Pod!
# @option --podspec_name <name> The name of the podspec file within the Git Repository
# @flag --no-repo-update Skip running `pod repo update` before install
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg name-url <NAME|URL>
try() {
:;
}
# }} pod try
# {{ pod update
# @cmd Update outdated project dependencies and create new Podfile.lock
# @option --sources <https://cdn.cocoapods.org/> The sources from which to update dependent pods.
# @option --exclude-pods <podName> Pods to exclude during update.
# @flag --clean-install Ignore the contents of the project cache and force a full pod installation.
# @option --project-directory </project/dir/> The path to the root of the project directory
# @flag --no-repo-update Skip running `pod repo update` before install
# @flag --allow-root Allows CocoaPods to run as root
# @flag --silent Show nothing
# @flag --verbose Show more debugging information
# @flag --no-ansi Show output without ANSI codes
# @flag --help Show help banner of specified command
# @arg pod_names*
update() {
:;
}
# }} pod update
command eval "$(argc --argc-eval "$0" "$@")"