cocoapods-bb-PodAssistant 0.3.7.0 → 0.3.7.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c05511614be707f5cfee282c3d4beaac8d1aa1fadc7803e5b5d8cea957b5d557
|
4
|
+
data.tar.gz: 7bd4674f79a97cb62acb9c6bc7b28ee70c3c5fb8c2337cb00403d5bd021d2c1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c909195ec59c9c1b0c10e5c2681cd04be0db0f82f9813ad82396d036105eb0dc978483a639d611718abd992bcadf51e78bd9f7da8573d807bee294ecfb825d4f
|
7
|
+
data.tar.gz: 7a81e1511ad9cc43bf7eb8f208f08e056fd88a04d270732a47566775db124e1b4c71ef6194c4bd34b2a64004cc81e7063262b120dd1e35da999659b18b625fd9
|
@@ -24,16 +24,16 @@ module BB
|
|
24
24
|
# ignore_dependencies_pod_names 过滤组件,不受stable版本控制
|
25
25
|
def initialize(all_modules, member_modules = {}, member_configs = [], ignore_local_stable = false, skip_stable_check = false, ignore_dependencies_pod_names=[])
|
26
26
|
@source_manager = BB::SourceManager.new()
|
27
|
+
BB::DataConfig.config.set_ignore_dependencies_pod_names(ignore_dependencies_pod_names)
|
27
28
|
#加载远程稳定仓库 和本地podfile 指定的仓库进行合并
|
28
29
|
if skip_stable_check == true
|
29
30
|
# 过滤带:remove数据
|
30
31
|
@@all_modules = filter_origin_pod_modules(all_modules)
|
31
32
|
else
|
32
|
-
@@all_modules = load_stable_specs_to_podfile(all_modules, ignore_local_stable
|
33
|
+
@@all_modules = load_stable_specs_to_podfile(all_modules, ignore_local_stable)
|
33
34
|
end
|
34
35
|
@@member_modules = member_modules
|
35
36
|
@@member_configs = member_configs
|
36
|
-
@@ignore_dependencies_pod_names = ignore_dependencies_pod_names
|
37
37
|
end
|
38
38
|
private def filter_origin_pod_modules(all_modules)
|
39
39
|
result_modules = []
|
@@ -102,9 +102,8 @@ module BB
|
|
102
102
|
|
103
103
|
# 合并stable和podfile 中的specs! ⚠️podfile 中的组件会覆盖stable 中的!
|
104
104
|
# 比如stable 中AFNetworking 指向标签1.1,而 podfile中AFNetworking 指向develop,那么最终AFNetworking 会指向develop
|
105
|
-
def load_stable_specs_to_podfile(podfile_specs, ignore_local_stable = false
|
105
|
+
def load_stable_specs_to_podfile(podfile_specs, ignore_local_stable = false)
|
106
106
|
puts "[PodAssistant] start process pod module...".yellow
|
107
|
-
BB::DataConfig.config.set_ignore_dependencies_pod_names(ignore_dependencies_pod_names)
|
108
107
|
local_stable_data = @source_manager.fetch_local_stable_datas # 本地stable配置
|
109
108
|
if (local_stable_data.is_a? Hash) && !local_stable_data.empty?
|
110
109
|
return merge_module_data(podfile_specs, local_stable_data)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-bb-PodAssistant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.7.
|
4
|
+
version: 0.3.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- humin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods-core
|
@@ -162,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
162
|
- !ruby/object:Gem::Version
|
163
163
|
version: '0'
|
164
164
|
requirements: []
|
165
|
-
rubygems_version: 3.5.
|
165
|
+
rubygems_version: 3.5.21
|
166
166
|
signing_key:
|
167
167
|
specification_version: 4
|
168
168
|
summary: A longer description of cocoapods-bb-PodAssistant.
|