cocoapods-bb-PodAssistant 0.3.14.8 → 0.3.14.9
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: 73ef5ad2862dd6edb28ab3a663ecd36ced3c9d4ce6e423609e25829291eb3257
|
|
4
|
+
data.tar.gz: c75ff03db8c6f5733ee8b52e0082256b0afd5a292145838e7a91dcde03dc2add
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b352beb694ee1c437eaeaa6c2bf8460f0dc35a037b9c686031f10c213ed577e81cc7304ab3621b422ca5c77fd2f57b60645fa9a47614e37b01c16e203200d74
|
|
7
|
+
data.tar.gz: d0697f337f489b180f29b8634dfe203ebcf5b7d588a264a0265daba1cecbd06633286516d6c12bf12f1cad0232a3f0ee8d3985fbc7f5ad79d05b79e7570178b0
|
|
@@ -106,7 +106,7 @@ module BB
|
|
|
106
106
|
# 合并stable和podfile 中的specs! ⚠️podfile 中的组件会覆盖stable 中的!
|
|
107
107
|
# 比如stable 中AFNetworking 指向标签1.1,而 podfile中AFNetworking 指向develop,那么最终AFNetworking 会指向develop
|
|
108
108
|
def load_stable_specs_to_podfile(podfile_specs, ignore_local_stable = false)
|
|
109
|
-
puts "[PodAssistant] start process pod module..."
|
|
109
|
+
puts "[PodAssistant] start process pod module..."
|
|
110
110
|
local_stable_data = @source_manager.fetch_local_stable_datas # 本地stable配置
|
|
111
111
|
if (local_stable_data.is_a? Hash) && !local_stable_data.empty?
|
|
112
112
|
return merge_module_data(podfile_specs, local_stable_data)
|
|
@@ -231,7 +231,7 @@ module BB
|
|
|
231
231
|
end
|
|
232
232
|
if (branch && !branch.empty?) || (git && !git.empty?)
|
|
233
233
|
# 项目配置指向分支数据,以本项目为主
|
|
234
|
-
puts "[PodAssistant] #{podName} 指向分支数据 => #{podfile_pod}"
|
|
234
|
+
puts "[PodAssistant] #{podName} 指向分支数据 => #{podfile_pod}".yellow
|
|
235
235
|
stable_hash[podCoreName] = podfile_pod
|
|
236
236
|
if podName != podCoreName
|
|
237
237
|
need_update_pod_data[podName] = podfile_pod
|
|
@@ -246,7 +246,7 @@ module BB
|
|
|
246
246
|
is_fuzzy_version = version.include?('~>') ? true : false # 固定版本 pod 'A','~> x.x.x'
|
|
247
247
|
is_fuzzy_versionV2 = (!is_fixed_version && !is_lessthan_version && !is_greaterthan_version && !is_fuzzy_version) ? true : false # 固定版本 pod 'A','x.x.x'
|
|
248
248
|
if (is_fixed_version == true) || (is_lessthan_version == true) || (is_fuzzy_versionV2 == true)
|
|
249
|
-
puts "[PodAssistant] ⚠️ 限制组件版本 '#{podName}', '#{version}' 以项目配置为主. (最新版本=> #{pod.send(:red)})"
|
|
249
|
+
puts "[PodAssistant] ⚠️ 限制组件版本 '#{podName}', '#{version}' 以项目配置为主. (最新版本=> #{pod.send(:red)})".yellow
|
|
250
250
|
stable_hash[podCoreName] = version
|
|
251
251
|
if podName != podCoreName
|
|
252
252
|
need_update_pod_data[podName] = version
|
|
@@ -88,7 +88,7 @@ module BB
|
|
|
88
88
|
project_dir = File.dirname(getXcodeprojPath)
|
|
89
89
|
plist_path = File.expand_path(plist_rel, project_dir)
|
|
90
90
|
if File.exist?(plist_path)
|
|
91
|
-
puts "Info.plist(主Target): #{plist_path}".yellow
|
|
91
|
+
# puts "Info.plist(主Target): #{plist_path}".yellow
|
|
92
92
|
return plist_path
|
|
93
93
|
end
|
|
94
94
|
end
|
|
@@ -120,7 +120,7 @@ module BB
|
|
|
120
120
|
return info_path
|
|
121
121
|
end
|
|
122
122
|
|
|
123
|
-
puts "无法找到工程Info.plist配置文件,工程目录:#{getProjectPath} @hm确认".red
|
|
123
|
+
# puts "无法找到工程Info.plist配置文件,工程目录:#{getProjectPath} @hm确认".red
|
|
124
124
|
return nil
|
|
125
125
|
end
|
|
126
126
|
# 获取info配置key对应的值
|