pod-builder 6.0.1 → 6.0.2
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/lib/pod_builder/command/generate_lldbinit.rb +1 -1
- data/lib/pod_builder/swizzles.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: 1fed719cee7d859bf10cd194913e5814f3b0bcd91371bdd11952123bff998caa
|
|
4
|
+
data.tar.gz: b2767ef27bc60333be2c62c4e07fc4fba007af810cac78d8862ef3017b25186a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7b18e54ac32ce7e4bdc9ddf00c2026f35a0965ba44030216a26a028384dda4a74dca769d476778e4680c118023c8666bda2914f61a292a62ace2825fb19d2b4
|
|
7
|
+
data.tar.gz: 42f4e22b67180fbeb45290028341227139bf40dbbb5071260457c5530932108972d95101e73d23f5c3ae633e40692b740464da7902d37993bcefd0767ce658c1
|
|
@@ -55,7 +55,7 @@ module PodBuilder
|
|
|
55
55
|
destination = PodBuilder::prebuiltpath(pod_name)
|
|
56
56
|
|
|
57
57
|
info_path = "#{pod_path}/#{Configuration.prebuilt_info_filename}"
|
|
58
|
-
next unless File.
|
|
58
|
+
next unless File.exist?(info_path)
|
|
59
59
|
data = JSON.parse(File.read(info_path))
|
|
60
60
|
|
|
61
61
|
build_source_path_matches = data["entry"].match(/:path => '(.*?)'/)
|
data/lib/pod_builder/swizzles.rb
CHANGED
|
@@ -166,7 +166,7 @@ class Pod::Generator::CopyResourcesScript
|
|
|
166
166
|
# check that files are identical.
|
|
167
167
|
# For files with paths that are resolved (e.g containing ${PODS_ROOT}) we use the file hash
|
|
168
168
|
# we fallback to the filename for the others
|
|
169
|
-
hashes = resources.map { |t| (File.
|
|
169
|
+
hashes = resources.map { |t| (File.exist?(t) && File.file?(t)) ? Digest::MD5.hexdigest(File.read(t)) : File.basename(t) }
|
|
170
170
|
if hashes.uniq.count > 1
|
|
171
171
|
message += resources.join("\n") + "\n"
|
|
172
172
|
end
|
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: 6.0.
|
|
4
|
+
version: 6.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tomas Camin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|