cocoapods-bb-PodAssistant 0.3.13.2 → 0.3.13.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: 4b2c4c762ca4f37962e45c660d57801e289a99b9bd00b3c0bb5bdf504643af03
|
4
|
+
data.tar.gz: b4b9c26b664f9d3ebb3226facacfd84bafbb01940fce7fe78870d2160fd4a82a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc274b43b2dd6eb73602e56a0c4ef5c4f4d07eee7aaedf32666369b597950604eb4885492a34cc3da17c262296bc91ca8a65f74ff3273bd38e22f3ef681ec4fe
|
7
|
+
data.tar.gz: 3fad8402f8ec5c718714862f26bf4a7acdeeffa8964e8007be5f0226838beb1195514e068b57ff39a48eb206bafd93a29246d239d1b3916b64fdd3a3e53a7a15
|
@@ -130,12 +130,19 @@ def isGameWorldApp
|
|
130
130
|
bundleId = getProjectBundleIdentifier()
|
131
131
|
return bundleId === "com.sinyee.babybus.gameworld"
|
132
132
|
end
|
133
|
+
|
133
134
|
# 是否创意世界产品(国内)
|
134
135
|
def isBingoworldApp
|
135
136
|
bundleId = getProjectBundleIdentifier()
|
136
137
|
return bundleId === "com.joltrix.bingoworld"
|
137
138
|
end
|
138
139
|
|
140
|
+
# 是否可露优产品
|
141
|
+
def isKalliuWorldApp
|
142
|
+
bundleId = getProjectBundleIdentifier()
|
143
|
+
return bundleId === "com.joltrix.kalliuworld"
|
144
|
+
end
|
145
|
+
|
139
146
|
# 是否矩阵产品
|
140
147
|
def isMatrixApp
|
141
148
|
bundleId = getProjectBundleIdentifier()
|
@@ -446,7 +446,7 @@ module BB
|
|
446
446
|
sub_pods.push(dependencies_pod_name)
|
447
447
|
end
|
448
448
|
tmp_whitelist_pod_names = whitelist_pods[podCoreName]
|
449
|
-
if (podCoreName != name) && !tmp_whitelist_pod_names.include?(dependencies_pod_name)
|
449
|
+
if (podCoreName != name) && tmp_whitelist_pod_names != nil && !tmp_whitelist_pod_names.include?(dependencies_pod_name)
|
450
450
|
dependencies_core_pod_name = subspec_podname(dependencies_pod_name)
|
451
451
|
if (podCoreName != dependencies_core_pod_name) && !whitelist.include?(dependencies_core_pod_name) && !filter_pod_names.include?(dependencies_core_pod_name)
|
452
452
|
filter_pod_names.push(dependencies_core_pod_name)
|