cocoapods-fy-bin 0.2.6 → 0.2.8
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: 5cf4634e93d2256b52669e964ec5929ce43dce307ec6b8f70e2076ce8eea84a2
|
|
4
|
+
data.tar.gz: 7e7c9b9fc0d768d2d7a0252b52c836898c71e9ab7ccc937a4f59afe87bcbc90f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b66a54121f89baec2ee0120b289a708eac9731b22e42bd36a08814560b2ab92e49bbd19b82854ecfc4ed7e3d5153ca6fcff8c72446ca46118cef8d15101a996f
|
|
7
|
+
data.tar.gz: e3439efa9f6d88f57ae70adcdc42ed54d5c2bf01a2e3264eae8372667733a6300931149b4b9f9e2d47efe491d68c0009b27e3c0492c01413c121058ae9799613
|
|
@@ -377,6 +377,7 @@ module CBin
|
|
|
377
377
|
items = item.split(" ")
|
|
378
378
|
item_last = items.last
|
|
379
379
|
if !exclude_frameworks.include?(item_last)
|
|
380
|
+
`find . -name "*.swiftinterface" -exec sed -i -e 's/import #{item_last}\\./import #{item_last}BDF\\./g' {} \\;`
|
|
380
381
|
`find . -name "*.swiftinterface" -exec sed -i -e 's/#{item_last}\\.Method/#{item_last}BDF\\.Method/g' {} \\;`
|
|
381
382
|
`find . -name "*.swiftinterface" -exec sed -i -e 's/#{item_last}\\.#{item_last}/#{item_last}ACE\\.#{item_last}BDF/g' {} \\;`
|
|
382
383
|
`find . -name "*.swiftinterface" -exec sed -i -e 's/#{item_last}\\./#{item_last}ACE\\./g' {} \\;`
|
|
@@ -66,15 +66,19 @@ module Pod
|
|
|
66
66
|
old_valid_possibility_version_for_root_name?(requirement, activated, spec)
|
|
67
67
|
end
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
69
|
+
alias old_requirement_satisfied_by? requirement_satisfied_by?
|
|
70
|
+
def requirement_satisfied_by?(requirement, activated, spec)
|
|
71
|
+
podfile = Pod::Config.instance.podfile
|
|
72
|
+
# 如果没有使用全局二进制字段 则进入局部二进制判断 删除framework文件夹 二进制源码之间切换时候用到
|
|
73
|
+
begin
|
|
74
|
+
if !podfile.use_binaries_selector.nil? && !podfile.use_binaries_selector.call(spec) && spec.spec_source.url == @sources_manager.binary_source.url && !podfile.use_binaries?
|
|
75
|
+
return false
|
|
76
|
+
end
|
|
77
|
+
rescue
|
|
78
|
+
puts spec
|
|
79
|
+
end
|
|
80
|
+
old_requirement_satisfied_by?(requirement, activated, spec)
|
|
81
|
+
end
|
|
78
82
|
|
|
79
83
|
elsif Pod.match_version?('~> 1.4')
|
|
80
84
|
def requirement_satisfied_by?(requirement, activated, spec)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-fy-bin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dr
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|