cocoapods-xp-binary-debug 0.0.3 → 0.0.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53ea70ced4c2a5f6d45a6b857a781fdedabdafc828abb3d4bee3afd7445c58df
|
4
|
+
data.tar.gz: 1e17ffe511fb61a4007bc6b9b971e54e86876dda8d23d90a2e2a0a0f64035953
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11eaaaad0714c112c78c544f0281c3380a99596382e72922f3cf2a27368c63cd2297479679d95ff4bb3b5129573e3f7d3a70ec0d7de3575540fc0ff1fbed1817
|
7
|
+
data.tar.gz: e4a165fb8a205fffc45faaf701895a9d8fddeb6a7fa30dbca0edf267020df41ba0245c7a8d55fe03ccbd8fa6bca26afd7dde825a844c59ac7a436f6267a280b9
|
@@ -51,7 +51,6 @@ module Pod
|
|
51
51
|
|
52
52
|
|
53
53
|
def run
|
54
|
-
|
55
54
|
podfile_lock = File.join(Pathname.pwd,"Podfile.lock")
|
56
55
|
raise "podfile.lock,不存在,请先pod install/update" unless File.exist?(podfile_lock)
|
57
56
|
@lockfile ||= Lockfile.from_file(Pathname.new(podfile_lock) )
|
@@ -177,11 +176,16 @@ module Pod
|
|
177
176
|
# lib_name = "lib#{name}.a"
|
178
177
|
#lib_path = File.join(dir,lib_name)
|
179
178
|
|
180
|
-
# framework
|
179
|
+
# framework
|
181
180
|
dir = Pathname.new(File.join(Pathname.pwd,"Pods", name))
|
182
181
|
lib_name = name
|
183
|
-
|
182
|
+
UI.puts "dir #{dir}"
|
183
|
+
|
184
|
+
framework_path = "#{dir}/#{lib_name}.framework"
|
185
|
+
UI.puts "framework_path: #{framework_path}"
|
186
|
+
|
184
187
|
lib_path = File.join(framework_path, lib_name)
|
188
|
+
UI.puts "lib_path: #{lib_path}"
|
185
189
|
|
186
190
|
unless File.exist?(lib_path)
|
187
191
|
lib_path = File.join(dir.children.first,lib_name)
|