pod-builder 1.9.0 → 1.9.1
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 +2 -2
- data/lib/pod_builder/analyze.rb +1 -1
- 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: 8c37ff5550761bfe18ada4caad8e9c0556dd5093226a913dc7f66225ddb98692
|
4
|
+
data.tar.gz: 47800fae66cada29332c3ac28a2ccaac6f51c258779b9d46307918459f0a575c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e07db51795f4ae675c168ecc2fda845aef7feba556c48d1dc4b50d4c4b7328187af73fc83bcb17fbe74075c2ef7cd452c831b120f2b0f99111d2cf6e6225eb1
|
7
|
+
data.tar.gz: 86272195b4a0cf17a152517263e449b42d0849d1863e7489fc168df59f961ecf40478cfb4f07597997d06717d64c8a0e2f8c1758a429025e8a1b5b81f9f52f26
|
data/exe/pod_builder
CHANGED
@@ -39,8 +39,8 @@ Command:
|
|
39
39
|
+ update Rebuild frameworks that are outdated
|
40
40
|
+ restore_all Rebuild all pods declared in the Restore-Podfile
|
41
41
|
+ install_sources Install sources of pods to debug into prebuilt frameworks
|
42
|
-
+ update_lldbinit
|
43
|
-
+ clear_lldbinit Clear
|
42
|
+
+ update_lldbinit Generate an lldbinit file with setting target.source-map to debug prebuilt frameworks
|
43
|
+
+ clear_lldbinit Clear an lldbinit file from PodBuilder's customizations
|
44
44
|
+ switch Switch between prebuilt/development/standard pod in the Application-Podfile
|
45
45
|
+ clean Remove prebuild frameworks, dSYMs and source files added by `install_sources` command that are no longer in the PodBuilder-Podfile
|
46
46
|
+ sync_podfile Update your Application-Podfile with all pods declared in the PodBuilder-Podfile
|
data/lib/pod_builder/analyze.rb
CHANGED
@@ -33,7 +33,7 @@ module PodBuilder
|
|
33
33
|
all_podfile_pods = analysis_result.podfile_dependency_cache.podfile_dependencies
|
34
34
|
|
35
35
|
external_source_pods = all_podfile_pods.select(&:external_source)
|
36
|
-
checkout_options = external_source_pods.map { |x| [x.name, x.external_source] }.to_h
|
36
|
+
checkout_options = external_source_pods.map { |x| [x.name.split("/").first, x.external_source] }.to_h
|
37
37
|
|
38
38
|
# this adds the :commit which might be missing in checkout_options
|
39
39
|
# will also overwrite :branch with :commit which is desired
|
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: 1.9.
|
4
|
+
version: 1.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Camin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-02-
|
11
|
+
date: 2020-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|