cocoapods-bb-bin 0.2.10.1 → 0.2.10.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: adaeaf327c8e0a9cf4a3bb44a19251e339a3ca1ab0ef66150dbc89668ee979ca
4
- data.tar.gz: cdd539303b089e4a4c2f0f7bdc1e33b926bd0119605036a117b5f1ed8c2e9ce6
3
+ metadata.gz: a86176b9de557be72daf23955ba82f1e84fbefd174e780719ff7fb633ccabbd6
4
+ data.tar.gz: 5463cf2e813be9fa85b12533ce3f55bedf8c988f04be66b74f255e2dbc028b2c
5
5
  SHA512:
6
- metadata.gz: 8659db8e50d3093614ae7d66db9a42ae9766ecd030dce9c474daa30b3c4e5214d81f71642ae910c61412a1e6b9b628e1cdd2c33b4e4c6b18491a4f8550de3523
7
- data.tar.gz: 551e4e6c6ac07b842c2938d0c6bc30cf5fbf93738c5f3c4fd0d7beb077929cb982e125017a6e3807142609ae6f74b9b05d3371e68aa162ca8c5b8dc682dc6176
6
+ metadata.gz: 0601513c9214fe3d93f782b909993c9545c465fb86d84ce5e27ab8578b1088d731c1aba007482e65bef04087ff0e6015c03f257509248f881af53db73d2997da
7
+ data.tar.gz: b73df6f71908fb4670111e6c1caa141f47ef63c151dcd99864301838d5a26efcb5dd2a79bc3d7bcd87b611cba6cc5a873c83b27418dcb6793f1383fa7f6d4a15
@@ -1,7 +1,7 @@
1
1
  require 'cocoapods'
2
2
 
3
3
  module CBin
4
- VERSION = '0.2.10.1'
4
+ VERSION = '0.2.10.2'
5
5
  end
6
6
 
7
7
  module Pod
@@ -17,10 +17,10 @@ module CBin
17
17
 
18
18
  # 上传二进制 podspec
19
19
  def push_binary_repo(binary_podsepc_json,isGenDylib=false)
20
- if !@sources.empty?
21
- customsource = custom_business_source(@sources)
22
- else
20
+ if @sources.nil?
23
21
  customsource = binary_source
22
+ else
23
+ customsource = custom_business_source(@sources)
24
24
  end
25
25
  puts "binary customsource=#{customsource}"
26
26
  push_customsource_repo(binary_podsepc_json, customsource, isGenDylib, true)
@@ -28,10 +28,10 @@ module CBin
28
28
 
29
29
  # 上传源码podspec
30
30
  def push_source_repo(source_podsepc_json)
31
- if !@sources.empty?
32
- customsource = custom_business_source(@sources)
33
- else
31
+ if @sources.nil?
34
32
  customsource = code_source
33
+ else
34
+ customsource = custom_business_source(@sources)
35
35
  end
36
36
  puts "source customsource=#{customsource}"
37
37
  push_customsource_repo(source_podsepc_json, customsource, false, false)
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-bb-bin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.10.1
4
+ version: 0.2.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - humin
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-17 00:00:00.000000000 Z
10
+ date: 2025-01-09 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: parallel
@@ -205,7 +204,6 @@ homepage: https://github.com/humin1102/cocoapods-bb-bin
205
204
  licenses:
206
205
  - MIT
207
206
  metadata: {}
208
- post_install_message:
209
207
  rdoc_options: []
210
208
  require_paths:
211
209
  - lib
@@ -220,8 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
220
218
  - !ruby/object:Gem::Version
221
219
  version: '0'
222
220
  requirements: []
223
- rubygems_version: 3.5.23
224
- signing_key:
221
+ rubygems_version: 3.6.2
225
222
  specification_version: 4
226
223
  summary: cocoapods-bb-bin is a plugin which helps develpers switching pods between
227
224
  source code and binary.