cocoapods-bin 0.1.14 → 0.1.15
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/lib/cocoapods-bin/command/bin/spec/lint.rb +1 -1
- data/lib/cocoapods-bin/gem_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9944d188cb1a34ed6ffbe971bf61a09c696cdfc
|
4
|
+
data.tar.gz: dd7bcd24ce911c2eab668d84adf2a0cdd918fc34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59b5d8da80719a5a1d613db9979fe0e401c445901e1fcf4730c10fc032d09bfeafaeeaf84b3ce84b601ef451b86da6f2161aadd05d689b0c9b6c235f844a7bc7
|
7
|
+
data.tar.gz: 794ed5db3ecaa3685ed2378d11c0ccab5a02924cff9daef37099e06d31d3698c133c8c5eda7f2e83b76a2517e4df87b02bd0a535c2cb8ad3ea5bd7d5fab5f735
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
|
5
5
|
[基于 CocoaPods 的组件二进制化实践](https://triplecc.github.io/2019/01/21/%E5%9F%BA%E4%BA%8ECocoaPods%E7%9A%84%E7%BB%84%E4%BB%B6%E4%BA%8C%E8%BF%9B%E5%88%B6%E5%8C%96%E5%AE%9E%E8%B7%B5/)
|
6
6
|
|
7
|
+
[Demo 工程](https://github.com/for-example-test/cocoapods-bin-example)
|
8
|
+
|
7
9
|
## 概要
|
8
10
|
|
9
11
|
本插件所关联的组件二进制化策略:
|
@@ -459,6 +461,6 @@ Pod installation complete! There is 1 dependency from the Podfile and 2 total po
|
|
459
461
|
插件默认开启多线程下载组件资源,如果要禁用这个功能,Podfile 添加以下代码即可:
|
460
462
|
|
461
463
|
```ruby
|
462
|
-
install! 'cocoapods', { install_with_multi_threads:
|
464
|
+
install! 'cocoapods', { install_with_multi_threads: false }
|
463
465
|
```
|
464
466
|
|
@@ -23,7 +23,7 @@ module Pod
|
|
23
23
|
['--code-dependencies', '使用源码依赖进行 lint'],
|
24
24
|
['--loose-options', '添加宽松的 options, 包括 --use-libraries (可能会造成 entry point (start) undefined)'],
|
25
25
|
['--allow-prerelease', '允许使用 prerelease 的版本 lint']
|
26
|
-
].concat(Pod::Command::
|
26
|
+
].concat(Pod::Command::Spec::Lint.options).concat(super).uniq
|
27
27
|
end
|
28
28
|
|
29
29
|
def initialize(argv)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-bin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tripleCC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parallel
|