flakey_spec_catcher 0.12.0 → 0.12.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/flakey_spec_catcher.gemspec +7 -3
- data/lib/flakey_spec_catcher/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c372506dc001281381c2da00adfbb57630541aec3ef03a537becb9330da6a47
|
4
|
+
data.tar.gz: '041469dd05911ac067396527eed5bc5de0c480c3e981a1d6688eb4070abe188d'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4390187c9364ebe61355e0de7f821bfac2331baa85435ec7afceffe02500baea8b79ccc126d448c5f97cb20093e4bcbf097ba281e81fdc7461f18c06bacca337
|
7
|
+
data.tar.gz: 7599cda6777957328931ba99f50369ca6c567e8f1d947c85862971ac504170e256617ac61de68e099b22516d5af133c0736044d3809d711f2df891dff282c481
|
data/flakey_spec_catcher.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# rubocop:disable Layout/ExtraSpacing, Layout/SpaceAroundOperators
|
3
|
+
# rubocop:disable Layout/ExtraSpacing, Layout/SpaceAroundOperators, Metrics/BlockLength
|
4
4
|
require './lib/flakey_spec_catcher/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
@@ -27,7 +27,11 @@ Gem::Specification.new do |gem|
|
|
27
27
|
gem.executables = 'flakey_spec_catcher'
|
28
28
|
gem.require_paths = ['lib']
|
29
29
|
|
30
|
-
gem.metadata
|
30
|
+
gem.metadata = {
|
31
|
+
'allowed_push_host' => 'https://rubygems.org',
|
32
|
+
'rubygems_mfa_required' => 'true'
|
33
|
+
}
|
34
|
+
|
31
35
|
gem.required_ruby_version = '>= 2.6'
|
32
36
|
|
33
37
|
gem.add_dependency 'rspec', '~> 3.10'
|
@@ -38,4 +42,4 @@ Gem::Specification.new do |gem|
|
|
38
42
|
gem.add_development_dependency 'rubocop', '~> 0.93.1'
|
39
43
|
gem.add_development_dependency 'simplecov', '~> 0.19'
|
40
44
|
end
|
41
|
-
# rubocop:enable Layout/ExtraSpacing, Layout/SpaceAroundOperators
|
45
|
+
# rubocop:enable Layout/ExtraSpacing, Layout/SpaceAroundOperators, Metrics/BlockLength
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flakey_spec_catcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Watson
|
8
8
|
- Mikey Hargiss
|
9
9
|
- Ben Nelson
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-11-
|
13
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rspec
|
@@ -110,7 +110,7 @@ dependencies:
|
|
110
110
|
- - "~>"
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: '0.19'
|
113
|
-
description:
|
113
|
+
description:
|
114
114
|
email:
|
115
115
|
- bwatson@instructure.com
|
116
116
|
- mhargiss@instructure.com
|
@@ -145,12 +145,13 @@ files:
|
|
145
145
|
- lib/flakey_spec_catcher/version.rb
|
146
146
|
- lib/helpers/colorize.rb
|
147
147
|
- lib/helpers/indent_string.rb
|
148
|
-
homepage:
|
148
|
+
homepage:
|
149
149
|
licenses:
|
150
150
|
- MIT
|
151
151
|
metadata:
|
152
152
|
allowed_push_host: https://rubygems.org
|
153
|
-
|
153
|
+
rubygems_mfa_required: 'true'
|
154
|
+
post_install_message:
|
154
155
|
rdoc_options: []
|
155
156
|
require_paths:
|
156
157
|
- lib
|
@@ -165,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
166
|
- !ruby/object:Gem::Version
|
166
167
|
version: '0'
|
167
168
|
requirements: []
|
168
|
-
rubygems_version: 3.
|
169
|
-
signing_key:
|
169
|
+
rubygems_version: 3.1.6
|
170
|
+
signing_key:
|
170
171
|
specification_version: 4
|
171
172
|
summary: Run new or changed specs many times to prevent unreliable specs
|
172
173
|
test_files: []
|