tworingtools 1.5.3 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/release-podspec +4 -0
- 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: 3d5ba068c26f5404bb471ff620f0319663a18844d650f6d940a0820bfe9c1e5a
|
4
|
+
data.tar.gz: 5b99e3580f0c348d4a988a68b21e851d3730daca051830e24a7029dc67434851
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb6513944b8be8052f394659bf64eb277e678c4ce083c9b105a2ef1b796119db6d68b6e1b8379ab9cf22d79e2a9ffd71241a775f812b5282e98cb01a01759633
|
7
|
+
data.tar.gz: 532052a792f881fe971d21f0ff617345e302d6852586081f92964bf050c9ae9ff168e61ed5f8268ed85668c6ca5636d2fb70d63ded231d5f0252d807a18169c1
|
data/bin/release-podspec
CHANGED
@@ -18,6 +18,7 @@ parser = OptionParser.new do |opts|
|
|
18
18
|
|
19
19
|
BANNER
|
20
20
|
opts.on('-w', '--allow-warnings', 'Pass \'--allow-warnings\' to \'cocoapods spec lint\'.') do |force| options[:allow_warnings] = true end
|
21
|
+
opts.on('-s', '--skip-tests', 'Pass \'--skip-tests\' to \'cocoapods spec lint\'.') do |skip_tests| options[:skip_tests] = true end
|
21
22
|
opts.on('-v', '--verbose', 'Pass \'--verbose\' to \'cocoapods spec lint\'.') do |name| options[:verbose] = true end
|
22
23
|
opts.on('-rREPO', '--repo=REPO', 'By default, release-podspec pushes the podspec to CocoaPods trunk. By supplying this argument, instead of \`pod trunk push\`, \`pod repo push\` is used instead.') do |repo| options[:repo] = repo end
|
23
24
|
opts.on('-h', '--help', 'Print this help message.') do
|
@@ -44,6 +45,9 @@ end
|
|
44
45
|
if options[:verbose] != nil then
|
45
46
|
spec_lint_flags << '--verbose'
|
46
47
|
end
|
48
|
+
if options[:skip_tests] != nil then
|
49
|
+
spec_lint_flags << '--skip-tests'
|
50
|
+
end
|
47
51
|
|
48
52
|
command = String.new
|
49
53
|
if options[:repo] != nil then
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tworingtools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew McKnight
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: github_api
|