cocoapods-bb-bin 0.2.7 → 0.2.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6d7ed2b021027dcd6f7ce5b5924e6527eae30107123250bff8bba761a5e5ec1
4
- data.tar.gz: 9f7db13d3bdaecdf92aa5d41d3aaca05b543745ebcd9a6da729c45b9cfe93033
3
+ metadata.gz: cd745f5737fac1b9d1e33c01e1c2f7cdccab288e74cbb74b847ae3351a088520
4
+ data.tar.gz: d979841a04396d51d39d33d979d49551eea54c6b27188ec37db33f410f721363
5
5
  SHA512:
6
- metadata.gz: 74f02d04acc23dc999f9bad0af3d4bd7c4073a18a7f997be946c025ae742340389d2b27959ac84ac210e59c39975fae353face18d0b9fd6cbc68f55258a7b189
7
- data.tar.gz: 379aedee58963ceb87da4de8ac3d83627e00574b8f0a415e9ba3835276a7ec33dbed2489cfe868aa3a99246ee57c5a5348f932e78b3e727424436eecd1e14a4f
6
+ metadata.gz: 24a8e88962d716239b955d5d40e74632346d2d15ef2c7d59e1a686470dbac87d7977c13cc15b41a3068155de81dc83e5956754ea5f0537041da606a3e1d804a5
7
+ data.tar.gz: 9580413e2c955bbc0fcf8619ae7883a689c4548361727c90be8ad8c66e319df5645c504bbe88114425702aa5d8035473efe6a5ea37ab2edf29aadb0c529c1878
data/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
  7. **少数支持swift项目二进制化编译的开源项目之一**
21
21
  8. 静态库支持.a、.framework、.xcframework
22
22
  9. 动态库支持.xcframework
23
-
23
+ 10. 支持三方库上传二进制平台
24
24
 
25
25
  关于 插件具体的架构部署实践和更详细的资源,可以参考
26
26
 
@@ -51,7 +51,16 @@
51
51
  $ pod bin auto [NAME.podspec] --xcframework-output # 生成静态xcframework文件
52
52
  $ pod bin auto [NAME.podspec] --xcframework-dylib-output # 生成动态xcframework文件
53
53
  更多请看
54
- $pod bin auto --help
54
+ $ pod bin auto --help
55
+ 推送标签
56
+ $ pod bin tag --debug
57
+ $ pod bin tag --skip-build-project
58
+ 更多请看
59
+ $ pod bin tag --help
60
+ 推送三方库
61
+ $ pod bin local-push --path=<local framework.zip file> --vendored_framework_name=<name> --dylib
62
+ 更多请看
63
+ $ pod bin local-push --help
55
64
 
56
65
  ## 更新记录
57
66
 
@@ -114,11 +114,11 @@ module Pod
114
114
  def update_uploadpath
115
115
  worksppace_path = Dir.pwd
116
116
  path = @localPath
117
- if File.absolute_path?(path) # 判断文件绝对路径
117
+ if File.file?(path) # 判断文件绝对路径absolute_path 2x版本不支持
118
118
  return path
119
119
  else
120
120
  path = File.join(worksppace_path, @localPath)
121
- if File.absolute_path?(path)
121
+ if File.file?(path)
122
122
  return path
123
123
  end
124
124
  end
@@ -1,6 +1,6 @@
1
1
 
2
2
  module CBin
3
- VERSION = '0.2.7'
3
+ VERSION = '0.2.7.1'
4
4
  end
5
5
 
6
6
  module Pod
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-bb-bin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - humin
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-30 00:00:00.000000000 Z
11
+ date: 2023-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parallel
@@ -191,7 +191,7 @@ homepage: https://github.com/humin1102/cocoapods-bb-bin
191
191
  licenses:
192
192
  - MIT
193
193
  metadata: {}
194
- post_install_message:
194
+ post_install_message:
195
195
  rdoc_options: []
196
196
  require_paths:
197
197
  - lib
@@ -206,8 +206,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  - !ruby/object:Gem::Version
207
207
  version: '0'
208
208
  requirements: []
209
- rubygems_version: 3.4.14
210
- signing_key:
209
+ rubygems_version: 3.0.3.1
210
+ signing_key:
211
211
  specification_version: 4
212
212
  summary: cocoapods-bb-bin is a plugin which helps develpers switching pods between
213
213
  source code and binary.