cocoapods-bb-bin 0.2.7 → 0.2.7.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: a6d7ed2b021027dcd6f7ce5b5924e6527eae30107123250bff8bba761a5e5ec1
4
- data.tar.gz: 9f7db13d3bdaecdf92aa5d41d3aaca05b543745ebcd9a6da729c45b9cfe93033
3
+ metadata.gz: 2ba27ee353fb8afc8faf34326241d9021adad83317e7eae1b65d9765c4d53a10
4
+ data.tar.gz: d62111b697e6b0b29d70ba181a1b37b48a7e46a61a7af31c33b9555785126b5b
5
5
  SHA512:
6
- metadata.gz: 74f02d04acc23dc999f9bad0af3d4bd7c4073a18a7f997be946c025ae742340389d2b27959ac84ac210e59c39975fae353face18d0b9fd6cbc68f55258a7b189
7
- data.tar.gz: 379aedee58963ceb87da4de8ac3d83627e00574b8f0a415e9ba3835276a7ec33dbed2489cfe868aa3a99246ee57c5a5348f932e78b3e727424436eecd1e14a4f
6
+ metadata.gz: 1ddb6ee604a94a15cc9687fada3e2b7da2286ca8e21b7d9dc11485b635f57447b5b07d72adbdf15a8f4b8025a5c53121fedbbf40265e09b3437437be30ca8c12
7
+ data.tar.gz: 87051230e4b8b3a5f4b09690203e11bc6490a6919425a733aa32a662d3fcae5a8f5261b8a449a941f09968eb06883d91832b9a6273d16582d61a536e1d6207e8
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
 
@@ -113,14 +113,13 @@ module Pod
113
113
 
114
114
  def update_uploadpath
115
115
  worksppace_path = Dir.pwd
116
+ path = File.join(worksppace_path, @localPath)
117
+ if File.file?(path)
118
+ return path
119
+ end
116
120
  path = @localPath
117
- if File.absolute_path?(path) # 判断文件绝对路径
121
+ if File.file?(path) # 判断文件绝对路径absolute_path 2x版本不支持
118
122
  return path
119
- else
120
- path = File.join(worksppace_path, @localPath)
121
- if File.absolute_path?(path)
122
- return path
123
- end
124
123
  end
125
124
  return nil
126
125
  end
@@ -1,6 +1,6 @@
1
1
 
2
2
  module CBin
3
- VERSION = '0.2.7'
3
+ VERSION = '0.2.7.2'
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.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - humin
8
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