cocoapods-hmap-simple 1.0.2 → 1.0.3
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/hmap_optimize.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25a712f2bbda85f5c9c28c4d34c1d48666d9f6485fe688533d6ba028b6d78b1a
|
4
|
+
data.tar.gz: 1d2086d27a19d1d8872924be8161dafd8e7da37b01cc1caba337ed5fae9dde29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ee2903119b65f1c552671e9d19b40e8fdbb477e8bc065a48fbe2aa64c6f19f78e44b206c5cb9f4f8e6035d8358ebf48188d3913df827ce79b6b580fe97b8eee
|
7
|
+
data.tar.gz: 956a599aec20ec0af62992b9127a794fe3b4d8253d645d83c0800ca36de889f1b0420be7f8dcbe57eb9a8e48ab0d438e054830cf754d6db894019de6c4939257
|
data/lib/hmap_optimize.rb
CHANGED
@@ -72,7 +72,7 @@ module Pod
|
|
72
72
|
return if hmap_md5.blank?
|
73
73
|
|
74
74
|
xcconfig_path = target.xcconfig_path(config)
|
75
|
-
xcconfig = Xcodeproj::Config.new(xcconfig_path)
|
75
|
+
xcconfig = File.exist?(xcconfig_path) ? Xcodeproj::Config.new(xcconfig_path) : target.xcconfigs[config]
|
76
76
|
|
77
77
|
hmap_path = File.expand_path("Headers/hmap/#{hmap_md5}.hmap", installer.sandbox.root.to_s)
|
78
78
|
return unless File.exist?(hmap_path)
|