cocoapods-bb-PodAssistant 0.3.13.1 → 0.3.13.2
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: 63b6ca1a4cb3b1d6f48e9b4e896665a2b399bf4f214a62de80c624ac6828361b
|
4
|
+
data.tar.gz: b5b8c82fe329469db3942a19fc377181b4d2ad7767d6f534963b1c316a101b05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a50db454f49cb248c647d2034db4f7f53a4473ab27ed36d84c1c0e3a502e4daec72822ccf57fe2fb525bfe98a65b952e2ea7d726ffab9ab606640a1b55689e1
|
7
|
+
data.tar.gz: 549c2cee4f1a21a5609049e24c4a40be0d97b7221742f6e38ad7c7d8948a32e163516b5cb1728feeb6cfd7b6c40b7a1b139ac6f05fc9c64fececfa27cf2c7657
|
@@ -11,7 +11,7 @@ module Pod
|
|
11
11
|
常用命令如下:\n
|
12
12
|
更新所有公共组件: `pod stable push`\n
|
13
13
|
更新指定公共组件: `pod stable push <组件名称>`\n
|
14
|
-
更新指定spec公共组件: `pod stable push <组件名称> --stable-specs-index=
|
14
|
+
更新指定spec公共组件: `pod stable push <组件名称> --stable-specs-index=stable_spec索引`\n
|
15
15
|
更新指定公共组件/移除组件: `pod stable push <组件名称> --remove=组件名称` #多个移除名称带`,`\n
|
16
16
|
更新指定公共组件/带依赖关系: `pod stable push <组件名称> --dependencies=组件名称` #多个依赖名称带`,`\n
|
17
17
|
更新指定公共组件/带依赖关系/移除组件: `pod stable push <组件名称> --dependencies=组件名称 --remove=组件名称` #多个依赖名称带`,`\n
|
@@ -31,7 +31,7 @@ module Pod
|
|
31
31
|
[
|
32
32
|
['--dependencies', '依赖组件名称,多个使用`,`隔开'],
|
33
33
|
['--remove', '移除公共组件名称,多个使用`,`隔开'],
|
34
|
-
['--stable-specs-index', '指定业务specs索引-0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4
|
34
|
+
['--stable-specs-index', '指定业务specs索引-0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维 5:abc,参照podfile配置信息'],
|
35
35
|
].concat(super)
|
36
36
|
end
|
37
37
|
|
@@ -123,6 +123,8 @@ module Pod
|
|
123
123
|
return 'science_Common_Stable'
|
124
124
|
when 4 # math产品公共stable目录
|
125
125
|
return 'math_Common_Stable'
|
126
|
+
when 5 # abc产品公共stable目录
|
127
|
+
return 'abc_Common_Stable'
|
126
128
|
else # 公共stable目录
|
127
129
|
@is_public_data = true
|
128
130
|
return 'Common_Stable'
|