cocoapods-bin 0.1.20 → 0.1.21
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/lib/cocoapods-bin/command/bin/archive.rb +3 -5
- data/lib/cocoapods-bin/gem_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51cbb730ffaa921ff5aad17ec7d5537e43d977b6085b4be7cbf790db65b2d128
|
|
4
|
+
data.tar.gz: d591635037cbb74e971a7d5ed8bd485449765b36f817755ef1ef6c95cde537a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fda7fe0adc0b24c1304d9ed570b98ee0d7de5f2786c0ed8675774b865147afb6573b5b5a52a12028df1b2f0aee7ef5b83357ee4cb0c34338468a14cf9f095ff
|
|
7
|
+
data.tar.gz: c884716d5edc15cd17b88b430981df10f3dc15c900211a577bd2474a555ea9a38bf659fec6f1b90f7e3515769e87cc6a1d9e9316e7a6cf32fb9be2ae73516507
|
data/Gemfile.lock
CHANGED
|
@@ -17,10 +17,9 @@ module Pod
|
|
|
17
17
|
[
|
|
18
18
|
['--code-dependencies', '使用源码依赖'],
|
|
19
19
|
['--allow-prerelease', '允许使用 prerelease 的版本'],
|
|
20
|
-
['--use-modular-headers', '使用 modular headers (modulemap)'],
|
|
21
20
|
['--no-clean', '保留构建中间产物'],
|
|
22
21
|
['--no-zip', '不压缩静态 framework 为 zip'],
|
|
23
|
-
].concat(super)
|
|
22
|
+
].concat(Pod::Command::Gen.options).concat(super).uniq
|
|
24
23
|
end
|
|
25
24
|
|
|
26
25
|
self.arguments = [
|
|
@@ -32,7 +31,7 @@ module Pod
|
|
|
32
31
|
@allow_prerelease = argv.flag?('allow-prerelease')
|
|
33
32
|
@clean = argv.flag?('clean', true)
|
|
34
33
|
@zip = argv.flag?('zip', true)
|
|
35
|
-
@
|
|
34
|
+
@sources = argv.option('sources') || []
|
|
36
35
|
@platform = Platform.new(:ios)
|
|
37
36
|
super
|
|
38
37
|
|
|
@@ -61,9 +60,8 @@ module Pod
|
|
|
61
60
|
*@additional_args
|
|
62
61
|
]
|
|
63
62
|
|
|
64
|
-
argvs << '--use-modular-headers' if @use_modular_headers
|
|
65
63
|
argvs << spec_file if spec_file
|
|
66
|
-
|
|
64
|
+
|
|
67
65
|
gen = Pod::Command::Gen.new(CLAide::ARGV.new(argvs))
|
|
68
66
|
gen.validate!
|
|
69
67
|
gen.run
|
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.21
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tripleCC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-09-
|
|
11
|
+
date: 2019-09-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|