cocoapods-bb-PodAssistant 0.3.13.6 → 0.3.13.7

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: 03d3f0efc5a385df0a2c3267a8dfbf9d5c24082b16dee36c1b5961850b3ff57e
4
- data.tar.gz: db77ff2bb877ba8b30beb9f2978e223b86bafeb705489734c0a4d21f2d251858
3
+ metadata.gz: 102aa35c78ffa3121a1f68e5f6a1088d8b7e28e3188bd750bb1e76d1a5be6729
4
+ data.tar.gz: 830d025d1c94a14b67623d76feb7667e7e924b5e2d295ed39685aa59be4e6c36
5
5
  SHA512:
6
- metadata.gz: e1ef81673494f0c42cbe2ebd650384b81dbdd3835d0e8da92e936b48e5325c5c4e1391d893d455c6a802d208ff2312e29263e9bb79f6f68bc45c2225b492a630
7
- data.tar.gz: 5bd478aa988c4154ffdf3b3419d73aec44e8609c9099af6db4b81e8a906802d8fc0848a8bacb95e57b6a5f66ee9f32d8ce4e065abad3d590f339a358b4b91011
6
+ metadata.gz: bcdc894bfa1fa36fe3267c6128b179acd1e34d83454fc2510d6ff40e96d66566a3eab03caaa9b87990e285b57d7f4ba57ded07ad8d2ac3f46ceab6f9bec18e47
7
+ data.tar.gz: 5ef76f99e6b600f965a4b012f7df95008b08ee5fb1350792e36b51e9e974bb53d02f5fc2912eed30e95fc835a6c3dcc6c25fe98d158bc699ab1b17d4333ef1c1
@@ -187,8 +187,10 @@ class PodPostInstaller
187
187
  # xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
188
188
  # File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
189
189
  # end
190
-
191
- config.build_settings['DEAD_CODE_STRIPPING'] = 'YES'
190
+ # Only enable BUILD_LIBRARY_FOR_DISTRIBUTION for binary static libraries
191
+ # if (target.name.include? 'BBNativeContainer') || (target.name.include? 'BBSchemeDispatcher') || (target.name.include? 'BBComponentServicesKit') || (target.name.include? 'BBSecurityProtectionKit')
192
+ # config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
193
+ # end
192
194
  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = ios_deployment_target
193
195
  config.build_settings['ARCHS'] = "$(ARCHS_STANDARD)"
194
196
  # fix xcode14手动签名问题 https://github.com/CocoaPods/CocoaPods/issues/11402
@@ -18,7 +18,7 @@ module Pod
18
18
  参数说明:\n
19
19
  --dependencies=依赖组件\n
20
20
  --remove=需要移除组件\n
21
- --stable-specs-index=指定业务specs索引-0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维\n
21
+ --stable-specs-index=指定业务specs索引-0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维 5:abc 6:大全 7:世界\n
22
22
  DESC
23
23
  # --update-matrix 更新矩阵产品公共业务线\n
24
24
  # --update-common 更新公共组件\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:思维 5:abc,参照podfile配置信息'],
34
+ ['--stable-specs-index', '指定业务specs索引-0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维 5:abc 6:大全 7:世界,参照podfile配置信息'],
35
35
  ].concat(super)
36
36
  end
37
37
 
@@ -97,7 +97,7 @@ module Pod
97
97
  end
98
98
  }
99
99
  end
100
- # 0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维
100
+ # 0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维 5:abc 6:大全 7:世界
101
101
  private def get_stable_spec_name
102
102
  case @stable_specs_index
103
103
  when 1 # 全线矩阵产品公共stable目录
@@ -108,11 +108,17 @@ module Pod
108
108
  return 'science_stable_specs'
109
109
  when 4 # math产品公共stable目录
110
110
  return 'math_stable_specs'
111
+ when 5 # abc产品公共stable目录
112
+ return 'abc_stable_specs'
113
+ when 6 # 大全产品公共stable目录
114
+ return 'br_stable_specs'
115
+ when 7 # 世界产品公共stable目录
116
+ return 'bw_stable_specs'
111
117
  else # 公共stable目录
112
118
  return 'stable_specs'
113
119
  end
114
120
  end
115
- # 0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维
121
+ # 0:公共(默认) 1:矩阵全线升级 2:拉布 3:科学 4:思维 5:abc 6:大全 7:世界
116
122
  private def get_stable_project_name
117
123
  case @stable_specs_index
118
124
  when 1 # 全线矩阵产品公共stable目录
@@ -125,6 +131,10 @@ module Pod
125
131
  return 'math_Common_Stable'
126
132
  when 5 # abc产品公共stable目录
127
133
  return 'abc_Common_Stable'
134
+ when 6 # 大全产品公共stable目录
135
+ return 'br_Common_Stable'
136
+ when 7 # 世界产品公共stable目录
137
+ return 'bw_Common_Stable'
128
138
  else # 公共stable目录
129
139
  @is_public_data = true
130
140
  return 'Common_Stable'
@@ -1,3 +1,3 @@
1
1
  module CocoapodsBbPodassistant
2
- VERSION = "0.3.13.6"
2
+ VERSION = "0.3.13.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-bb-PodAssistant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.13.6
4
+ version: 0.3.13.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - humin