pod-builder 4.4.3 → 4.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exe/pod_builder +36 -0
- data/lib/pod_builder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b997b0b093cce5c58a5b3f7b169bc9c0bf56f7bf45c4305677d5225bcb601fde
|
4
|
+
data.tar.gz: 0dd7183f48fcb9cee574f52b07f1879d027546eaf73f4994455c10c44d4baa9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66f9bf382df640e48f48511d92b78459ffb55a00b66569143b22aa3731393477531c4519911556da40be04cd95a0b31ce68c3d17bb443234e733267b49ef638e
|
7
|
+
data.tar.gz: ad206eebf7ccf4e21d0d5bc990a70bcfb34877863741621f2b0fc545c737991b20baf39aef09791fc114dadfecd1378d065d3ce16163d69ef7c893d9c620cc3b
|
data/exe/pod_builder
CHANGED
@@ -41,6 +41,7 @@ Command:
|
|
41
41
|
+ install_sources Install sources of pods to debug into prebuilt items
|
42
42
|
+ generate_lldbinit Generate an lldbinit file with setting target.source-map to debug prebuilt items
|
43
43
|
+ switch Switch between prebuilt/development/standard pod in the Application-Podfile
|
44
|
+
+ switch_all Switch all pods between prebuilt/development/standard in the Application-Podfile
|
44
45
|
+ clean Remove prebuild items, dSYMs and source files added by `install_sources` command that are no longer in the PodBuilder-Podfile
|
45
46
|
+ sync_podfile Update your Application-Podfile with all pods declared in the PodBuilder-Podfile
|
46
47
|
+ info Print json-formatted informations about prebuilt items
|
@@ -316,6 +317,41 @@ Options:
|
|
316
317
|
]
|
317
318
|
},
|
318
319
|
|
320
|
+
"switch_all" => {
|
321
|
+
:opts => OptionParser.new do |opts|
|
322
|
+
opts.banner = "
|
323
|
+
Usage:
|
324
|
+
|
325
|
+
$ pod_builder switch_all [OPTIONS]
|
326
|
+
|
327
|
+
Switch all pods integration between prebuilt/development/default version.
|
328
|
+
|
329
|
+
Options:
|
330
|
+
"
|
331
|
+
opts.on("-p", "--prebuilt", "Use prebuilt") do |o|
|
332
|
+
OPTIONS[:switch_mode] = "prebuilt"
|
333
|
+
end
|
334
|
+
opts.on("-d", "--development", "Development pod") do |o|
|
335
|
+
OPTIONS[:switch_mode] = "development"
|
336
|
+
end
|
337
|
+
opts.on("-s", "--default", "Default version specified in PodBuilder-Podfile") do |o|
|
338
|
+
OPTIONS[:switch_mode] = "default"
|
339
|
+
end
|
340
|
+
opts.on("-c", "--child-deps", "Include dependencies of the specified <PODNAME...>") do |o|
|
341
|
+
OPTIONS[:resolve_child_dependencies] = true
|
342
|
+
end
|
343
|
+
opts.on("-r", "--parent-deps", "Include all pods that depend on the specified <PODNAME...>") do |o|
|
344
|
+
OPTIONS[:resolve_parent_dependencies] = true
|
345
|
+
end
|
346
|
+
opts.on("-u", "--skip-repo-update", "Skip CocoaPods repo update (only when passing --parent-deps") do |o|
|
347
|
+
OPTIONS[:update_repos] = false
|
348
|
+
end
|
349
|
+
end,
|
350
|
+
:call => [
|
351
|
+
PodBuilder::Command::SwitchAll
|
352
|
+
]
|
353
|
+
},
|
354
|
+
|
319
355
|
"sync_podfile" => {
|
320
356
|
:opts => OptionParser.new do |opts|
|
321
357
|
opts.banner = "
|
data/lib/pod_builder/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pod-builder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.4.
|
4
|
+
version: 4.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Camin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|