cocoapods-bb-PodAssistant 0.3.11.0 → 0.3.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 971e70a6988e79249d00c1ceaab66100569a9813a5d55ccf3ffdb1d8f8fe2183
|
4
|
+
data.tar.gz: 40e38c5cf1f4118a5773530715163ffb8201d3868ba39a0cc6e58b9c28d16096
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 222c1d098ca82d2a80ae4f2131a53a4be7643ae4281375ca4d1255090c2e881371a6a2d60f9a8ff69f58b9c2ff716e12a480d4843bcf5a53a75578c42b345dd2
|
7
|
+
data.tar.gz: 637405ffdf27673035be531c77715ecdd8e5c3792bb5b4985c360d3af3052679955add2661432df1719406459133aba45fde69ed363ec39471d3ed826b5ccb88
|
@@ -8,11 +8,13 @@ module BB
|
|
8
8
|
|
9
9
|
def initialize()
|
10
10
|
file_path = customConfigPath
|
11
|
+
puts "开始解析打包机自定义配置 json:#{file_path}".yellow
|
11
12
|
if file_exists?(customConfigPath)
|
12
|
-
puts "开始解析打包机自定义配置 json:#{file_path}".yellow
|
13
13
|
json_parser = BB::JsonParser.new(file_path)
|
14
14
|
@json_data = json_parser.get_json_data
|
15
|
-
puts "json数据:#{@json_data}"
|
15
|
+
puts "配置json数据:#{@json_data}"
|
16
|
+
else
|
17
|
+
puts "没有配置自定义数据"
|
16
18
|
end
|
17
19
|
end
|
18
20
|
|