cocoapods-fy-bin 0.0.1 → 0.0.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 +4 -4
- data/lib/cocoapods-fy-bin/command/bin/auto.rb +4 -3
- data/lib/cocoapods-fy-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: 61aacc2d04a91891ebf86b0deb886213dcbad4cb588ddc82f5a521395062e9c3
|
|
4
|
+
data.tar.gz: 3a503c41891692935ab52937fe9febc65f63b28789081910313eca5bf2c1307c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a6fd7fbd1eeda2fc4eee1a85b6f5a2420df4f24851148e7e7f54e7c773da19770429cf3bc3c4728729ddfa34d2024e596db9faaf7468b719b8f329ec01c0e73
|
|
7
|
+
data.tar.gz: 4d11cd922b62f8064b9d381ce965404b87e30ab13c946205eb8e3833590f7a9256fa7a27878a9162b61b3610635003c96bae63aa1eb9c3bf85479ec968824729
|
|
@@ -21,7 +21,8 @@ module Pod
|
|
|
21
21
|
['--all-make', '对该组件的依赖库,全部制作为二进制组件'],
|
|
22
22
|
['--configuration', 'Build the specified configuration (e.g. Release ). Defaults to Debug'],
|
|
23
23
|
['--env', "该组件上传的环境 %w[dev debug_iphoneos release_iphoneos]"],
|
|
24
|
-
['--archs', "需要二进制组件的架构"]
|
|
24
|
+
['--archs', "需要二进制组件的架构"],
|
|
25
|
+
['--spec', "指定spec文件"]
|
|
25
26
|
].concat(Pod::Command::Gen.options).concat(super).uniq
|
|
26
27
|
end
|
|
27
28
|
|
|
@@ -29,8 +30,8 @@ module Pod
|
|
|
29
30
|
|
|
30
31
|
@env = argv.option('env') || 'dev'
|
|
31
32
|
CBin.config.set_configuration_env(@env)
|
|
32
|
-
|
|
33
|
-
@podspec
|
|
33
|
+
@podspec = argv.shift_argument || argv.flag?('spec') || find_podspec
|
|
34
|
+
puts @podspec
|
|
34
35
|
@specification = Specification.from_file(@podspec)
|
|
35
36
|
|
|
36
37
|
@code_dependencies = argv.flag?('code-dependencies')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-fy-bin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- dr
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|