tworingtools 1.5.3 → 1.6.0

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/release-podspec +4 -0
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd53b47fac97210d36507586b60613dfd1886c2081df83e24a6e1f905430357a
4
- data.tar.gz: 8388faefdd26fb4e113d67dd42f0cce329b16016d3d73e079c8aaa85fced23f4
3
+ metadata.gz: 3d5ba068c26f5404bb471ff620f0319663a18844d650f6d940a0820bfe9c1e5a
4
+ data.tar.gz: 5b99e3580f0c348d4a988a68b21e851d3730daca051830e24a7029dc67434851
5
5
  SHA512:
6
- metadata.gz: 4be6f6a1b0e3af6dbc62e5fff37db7ef5d0cefbe1ebc23cfd9636df4572a052225acecbb6745161e0e990e94625244d416540a7af46808f47ca65e4c7b168162
7
- data.tar.gz: 6424b47ffe3b8dd0800302d6886e67c3174a4514c124c62c3b815a106023b4ee1f123014a67526b65fe5ec8631b94ffb51d473021e8c2e14b8b236396db61353
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.5.3
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-10-05 00:00:00.000000000 Z
11
+ date: 2019-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github_api