cocoapods-binary-cache 0.1.12 → 0.1.13
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 732c3a4179deba8a6f1ffe95e9035c12d80989a1b3edb0581a5d569f1b9ef542
|
4
|
+
data.tar.gz: c72c2d4333f1525d2078896374b2fbe239891dc404ca35dadffc2f22fc4b8aff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ff71c26afc711721ce4360999a94b03a36fcd49f51ead77583c5ef4b07e86c7c841effcfdc023a4968d26d19d33f66ed9ea0891ce046584e9c4bd50e6afa375
|
7
|
+
data.tar.gz: 1c28065aefc4539864e5645d9d01c5b660c03a9df40ca72a05a07be80cba28c28906e11802ff4fcb676057628e4eb4f39a8eee72ec920a04d4acfc336589a9d2
|
@@ -17,7 +17,7 @@ module Pod
|
|
17
17
|
# If the path isn't an absolute path, we add a realtive prefix.
|
18
18
|
old_read_link=`which readlink`
|
19
19
|
readlink () {
|
20
|
-
path=`$old_read_link $1`;
|
20
|
+
path=`$old_read_link "$1"`;
|
21
21
|
if [ $(echo "$path" | cut -c 1-1) = '/' ]; then
|
22
22
|
echo $path;
|
23
23
|
else
|
@@ -14,6 +14,13 @@ module Pod
|
|
14
14
|
@lockfile_wrapper = lockfile && PodPrebuild::Lockfile.new(lockfile)
|
15
15
|
end
|
16
16
|
|
17
|
+
def installation_options
|
18
|
+
# Skip integrating user targets for prebuild Pods project.
|
19
|
+
@installation_options ||= Pod::Installer::InstallationOptions.new(
|
20
|
+
super.to_h.merge(:integrate_targets => false)
|
21
|
+
)
|
22
|
+
end
|
23
|
+
|
17
24
|
def run_code_gen!(targets)
|
18
25
|
return if PodPrebuild.config.prebuild_code_gen.nil?
|
19
26
|
|
@@ -26,7 +26,9 @@ module PodPrebuild
|
|
26
26
|
if DESTINATION_OF_SDK.key?(sdk)
|
27
27
|
cmd << "-destination" << DESTINATION_OF_SDK[sdk]
|
28
28
|
else
|
29
|
-
|
29
|
+
unless platform.nil?
|
30
|
+
cmd << Fourflusher::SimControl.new.destination(:oldest, platform, options[:deployment_target])
|
31
|
+
end
|
30
32
|
end
|
31
33
|
cmd += options[:args] if options[:args]
|
32
34
|
cmd << "build"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-binary-cache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bang Nguyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|