cocoapods-bb-bin 0.2.11.0 → 0.2.11.1
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/cocoapods-bb-bin/gem_version.rb +1 -1
- data/lib/cocoapods-bb-bin/native/resolver.rb +3 -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: f953b910386947eb6941f1e14dafc3f446afb00f1de322cd0d7fcd59a9a3d41c
|
4
|
+
data.tar.gz: 75197fee26017d961e4b595db614037ba0a28516cbf123b303009a28e9eaa449
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 593dc79efc4817dddc129b68b1d6be9e437f41bfbe1ce74376d14eb75f6093451ccb62edf813cc45a9d4fcc6af796abe877560bd489d88c7757766524ccae7f1
|
7
|
+
data.tar.gz: 3eba028e3ee5ede153f04efe8bc91b374971f63f6b7852f27c5da5028df402d5b4e8af295114fc07b2af1f244071c2b8993f156cbc044f01928ffe133c274b2e
|
@@ -91,6 +91,7 @@ module Pod
|
|
91
91
|
# >= 1.5.0 ResolverSpecification 才有 source,供 install 或者其他操作时,输入 source 变更
|
92
92
|
#
|
93
93
|
if Pod.match_version?('~> 1.4')
|
94
|
+
# pod in / up进行拦截,该入口目前使用使用上,如果继续执行pod指令出现异常可以考虑把当前函数删除,避免hook导致异常操作
|
94
95
|
old_resolver_specs_by_target = instance_method(:resolver_specs_by_target)
|
95
96
|
define_method(:resolver_specs_by_target) do
|
96
97
|
specs_by_target = old_resolver_specs_by_target.bind(self).call
|
@@ -135,7 +136,8 @@ module Pod
|
|
135
136
|
specification = source.specification(rspec.root.name, spec_version)
|
136
137
|
UI.message "#{rspec.root.name} #{spec_version} \r\n specification =#{specification} "
|
137
138
|
# 组件是 subspec
|
138
|
-
|
139
|
+
# subspec_by_name 函数远端spec查找subspec,如果第一次生成组件不会存在,故做条件过滤 by hm 25/4/9
|
140
|
+
if use_binary && rspec.spec.subspec?
|
139
141
|
specification = specification.subspec_by_name(rspec.name, false, true)
|
140
142
|
end
|
141
143
|
# 这里可能出现分析依赖的 source 和切换后的 source 对应 specification 的 subspec 对应不上
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-bb-bin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.11.
|
4
|
+
version: 0.2.11.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- humin
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-09 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: parallel
|