cocoapods-bb-PodAssistant 0.3.13.0 → 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: e987c7880cf9a36436c3340d58f869212e12862eb34a7035d65a1240c37fa6e1
4
- data.tar.gz: 6d4ecac719da36fcee693b1f14527245bf8a731d3395e784b071af5c0376adc3
3
+ metadata.gz: 63b6ca1a4cb3b1d6f48e9b4e896665a2b399bf4f214a62de80c624ac6828361b
4
+ data.tar.gz: b5b8c82fe329469db3942a19fc377181b4d2ad7767d6f534963b1c316a101b05
5
5
  SHA512:
6
- metadata.gz: 2654efaca16ff583496a8f218538b65f6e917580599299bbd2f6f476d62ebc680b1f430c0c46efaf5465adfc0dc41b15ff4b92d8d183e50c0641b280fc49b8d6
7
- data.tar.gz: c4212306220fb74f197dd8040e623e9aa7980665e0f3ddf3db0a318c81ee1d94bb7b48eba86628683123b660549b5501e75e18f7daa5c619887db3c0bfdb9305
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=spec 索引`\n
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:思维,参照podfile配置信息'],
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'
@@ -10,8 +10,8 @@ module BB
10
10
  class SourceManager
11
11
  def initialize(verify_stable_env=true, businessSpec=nil)
12
12
  @env = BB::StableEnv.new(verify_stable_env, businessSpec)
13
- @businessSpecName = businessSpec
14
13
  @stableMgr = BB::StableManager.new(@env, verify_stable_env)
14
+ @businessSpecName = @env.business_stable # 从环境变量中获取值
15
15
  end
16
16
 
17
17
  def cache_path
@@ -1,3 +1,3 @@
1
1
  module CocoapodsBbPodassistant
2
- VERSION = "0.3.13.0"
2
+ VERSION = "0.3.13.2"
3
3
  end
@@ -95,7 +95,7 @@ module BB
95
95
  if File.exist?(info_path)
96
96
  return info_path
97
97
  end
98
- puts "无法找打工程Info.plist配置文件,工程目录:#{getProjectPath} @hm确认".red
98
+ puts "无法找到工程Info.plist配置文件,工程目录:#{getProjectPath} @hm确认".red
99
99
  return nil
100
100
  # raise Informative, "#{path} File no exist, please check" unless File.exist?(path)
101
101
  # return path
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.0
4
+ version: 0.3.13.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - humin