cocoapods-ykutility 2.0.0 → 2.0.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2edfd4f3d874a31e6f45882f890a432edfad16942958f2eb3c4de451722180f7
|
4
|
+
data.tar.gz: '0771699b838d9fbc3f9f202d31151551d2cca2b503bf5f9ad6e10549b9d10b0e'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d74de998d0da8726358d14bbcb9bdc47d8418f96ac5658e203e57d60a168bf01e416c980dbe1ca0f9d5f384051f3b870d48d3b3250ceb002405e2c153feba4c6
|
7
|
+
data.tar.gz: 96b3510f35aaa538e2773b58cf51e145e9bdf851df59638f9643842456fba2acf19b0482b0a87ac9ccb8bbab6f679b765721f13fb3fa74604715af9d9a1a7243
|
@@ -38,9 +38,15 @@ module Pod
|
|
38
38
|
@config.language = (["objc", "oc"].include? argv.option('language', "swift").downcase) ? "objc" : "swift"
|
39
39
|
@config.with_demo = !argv.flag?('no-demo', false)
|
40
40
|
@config.with_register = argv.flag?('business', false)
|
41
|
-
|
42
|
-
|
43
|
-
@config.
|
41
|
+
author = argv.option('author', open("|git config --global user.name").gets)
|
42
|
+
author = author.blank? ? "defualt_author" : author
|
43
|
+
@config.author = author.strip.gsub('.', '')
|
44
|
+
|
45
|
+
email = argv.option('email', open("|git config --global user.email").gets)
|
46
|
+
email = email.blank? ? "defualt_email" : email
|
47
|
+
@config.author_email = email.strip
|
48
|
+
|
49
|
+
@config.prefix = argv.option('prefix', "ST")
|
44
50
|
@config.path = File.expand_path(argv.option('pod-path', Dir.getwd.to_s))
|
45
51
|
super
|
46
52
|
@additional_args = argv.remainder!
|
@@ -73,4 +79,4 @@ module Pod
|
|
73
79
|
|
74
80
|
end
|
75
81
|
end
|
76
|
-
end
|
82
|
+
end
|
@@ -38,9 +38,16 @@ module Pod
|
|
38
38
|
@config.language = (["objc", "oc"].include? argv.option('language', "swift").downcase) ? "objc" : "swift"
|
39
39
|
@config.with_demo = !argv.flag?('no-demo', false)
|
40
40
|
@config.with_register = argv.flag?('business', false)
|
41
|
-
|
42
|
-
|
43
|
-
|
41
|
+
|
42
|
+
author = argv.option('author', open("|git config --global user.name").gets)
|
43
|
+
author = author.blank? ? "defualt_author" : author
|
44
|
+
@config.author = author.strip.gsub('.', '')
|
45
|
+
|
46
|
+
email = argv.option('email', open("|git config --global user.email").gets)
|
47
|
+
email = email.blank? ? "defualt_email" : email
|
48
|
+
@config.author_email = email.strip
|
49
|
+
|
50
|
+
@config.prefix = argv.option('prefix', "ST")
|
44
51
|
@config.path = File.expand_path(argv.option('pod-path', Dir.getwd.to_s))
|
45
52
|
super
|
46
53
|
@additional_args = argv.remainder!
|
@@ -71,4 +78,4 @@ module Pod
|
|
71
78
|
|
72
79
|
end
|
73
80
|
end
|
74
|
-
end
|
81
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-ykutility
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- stephen.chen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jazzy
|
@@ -255,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
255
255
|
- !ruby/object:Gem::Version
|
256
256
|
version: '0'
|
257
257
|
requirements: []
|
258
|
-
rubygems_version: 3.
|
258
|
+
rubygems_version: 3.2.3
|
259
259
|
signing_key:
|
260
260
|
specification_version: 4
|
261
261
|
summary: 一款cocoapods插件,用于创建定制化标准组件.
|