rspec_n 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/.rubocop.yml +1 -1
- data/.travis.yml +4 -6
- data/CHANGELOG.md +25 -16
- data/README.md +58 -26
- data/Rakefile +1 -0
- data/bin/setup +0 -2
- data/lib/rspec_n.rb +1 -0
- data/lib/rspec_n/errors/bad_option.rb +1 -1
- data/lib/rspec_n/formatters/table_formatter.rb +2 -4
- data/lib/rspec_n/helpers/core_ext/string.rb +1 -1
- data/lib/rspec_n/input.rb +6 -4
- data/lib/rspec_n/version.rb +1 -1
- data/rspec_n.gemspec +4 -3
- metadata +22 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7fa5af32a552646670769dd832d01ba4e1b4eaed5099048e2653fdb63936af16
|
4
|
+
data.tar.gz: 18a3426eebc20db6bbaa680b8653b3dd656f0f7e6e8889fc9be4fdc6825f8ee4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef6b53c0016bd508a7e025c05b5af63105ae5ff88d050aff494535ad039ab1fd9d12952cb601bb8f13f3fd2c6df9bee261127f1916831095d8da7bbfe3638af6
|
7
|
+
data.tar.gz: a7edc252c7d543200e6583c264dcc8a041a90fe45aa332df0ba5323a6db3155cad464a45f6d34252bc7f3eaa75855b72b3336628e52e16d8fdbafcca1e380a49
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/.travis.yml
CHANGED
@@ -3,12 +3,10 @@ sudo: false
|
|
3
3
|
language: ruby
|
4
4
|
cache: bundler
|
5
5
|
rvm:
|
6
|
-
- 2.
|
7
|
-
- 2.
|
8
|
-
-
|
9
|
-
|
10
|
-
- 2.7.0
|
11
|
-
before_install: gem install bundler -v 2.0.2
|
6
|
+
- 2.6
|
7
|
+
- 2.7
|
8
|
+
- 3.0
|
9
|
+
before_install: gem install bundler -v 2.2.17
|
12
10
|
notifications:
|
13
11
|
email:
|
14
12
|
on_success: never # default: change
|
data/CHANGELOG.md
CHANGED
@@ -2,36 +2,45 @@
|
|
2
2
|
|
3
3
|
Issues are tracked at https://github.com/roberts1000/rubocop_plus/issues. Changes marked as **(Internal)** support development/refactoring.
|
4
4
|
|
5
|
+
## 1.4.0 (May 16, 2021)
|
6
|
+
|
7
|
+
1. [#64](../../issues/64): Use `pry` `~> 0.14.0`. **(Internal)**
|
8
|
+
1. [#66](../../issues/66): Update ruby & bundler versions in `.travis.yml`. **(Internal)**
|
9
|
+
1. [#68](../../issues/68): Make Ruby 2.6 the minimum supported version.
|
10
|
+
1. [#73](../../issues/73): Use `rake` `~> 13.0`. **(Internal)**
|
11
|
+
1. [#78](../../issues/78): Require `Pathname`.
|
12
|
+
1. [#83](../../issues/83): Use `rubocop_plus` `~> 2.0`. **(Internal)**
|
13
|
+
|
5
14
|
## 1.3.0 (Jan 13, 2020)
|
6
15
|
|
7
|
-
[#49](../../issues/49): Make `--order project` work.
|
8
|
-
[#55](../../issues/55): Add `--dir` and `--timestamp` output options.
|
9
|
-
[#57](../../issues/57): Redesign the `CHANGELOG.md`.
|
16
|
+
1. [#49](../../issues/49): Make `--order project` work.
|
17
|
+
1. [#55](../../issues/55): Add `--dir` and `--timestamp` output options.
|
18
|
+
1. [#57](../../issues/57): Redesign the `CHANGELOG.md`.
|
10
19
|
|
11
20
|
## 1.2.2 (Jun 22, 2019)
|
12
21
|
|
13
|
-
[#36](../../issues/36): Add instructions for installing `rspec_n` in project Gemfiles.
|
14
|
-
[#38](../../issues/38): Stop `--order rand` from being added to the final command when a custom order is specified.
|
15
|
-
[#41](../../issues/41): Remove locking to a specify version of Ruby in development. **(Internal)**
|
16
|
-
[#43](../../issues/43): Use pry 0.12.x for development. **(Internal)**
|
22
|
+
1. [#36](../../issues/36): Add instructions for installing `rspec_n` in project Gemfiles.
|
23
|
+
1. [#38](../../issues/38): Stop `--order rand` from being added to the final command when a custom order is specified.
|
24
|
+
1. [#41](../../issues/41): Remove locking to a specify version of Ruby in development. **(Internal)**
|
25
|
+
1. [#43](../../issues/43): Use pry 0.12.x for development. **(Internal)**
|
17
26
|
|
18
27
|
## 1.2.1 (Mar 06, 2019)
|
19
28
|
|
20
|
-
[#30](../../issues/30): Make `-v` and `--version` work again.
|
29
|
+
1. [#30](../../issues/30): Make `-v` and `--version` work again.
|
21
30
|
|
22
31
|
## 1.2.0 (Mar 03, 2019)
|
23
32
|
|
24
|
-
[#26](../../issues/26): Write the command that was used to run rspec_n to the output files.
|
33
|
+
1. [#26](../../issues/26): Write the command that was used to run rspec_n to the output files.
|
25
34
|
|
26
35
|
## 1.1.0 (Mar 03, 2019)
|
27
36
|
|
28
|
-
[#19](../../issues/19): Add **Result Counts** column which shows the result counts for each run (e.g. "400 examples, 2 failures, 3 pending").
|
29
|
-
[#20](../../issues/20): Accept an optional path argument, that is passed to RSpec, to target specs (e.g. `rspec_n 3 spec/features/example_spec.rb`, `rspec_n spec/features/example_spec.rb:5`, `rspec_n spec/features 4`).
|
30
|
-
[#23](../../issues/23): Rename the `Result Counts` column to `Results` and remove the existing `Results` column.
|
37
|
+
1. [#19](../../issues/19): Add **Result Counts** column which shows the result counts for each run (e.g. "400 examples, 2 failures, 3 pending").
|
38
|
+
1. [#20](../../issues/20): Accept an optional path argument, that is passed to RSpec, to target specs (e.g. `rspec_n 3 spec/features/example_spec.rb`, `rspec_n spec/features/example_spec.rb:5`, `rspec_n spec/features 4`).
|
39
|
+
1. [#23](../../issues/23): Rename the `Result Counts` column to `Results` and remove the existing `Results` column.
|
31
40
|
|
32
41
|
## 1.0.0 (Feb 18, 2019)
|
33
42
|
|
34
|
-
[#1](../../issues/1): Add initial core logic.
|
35
|
-
[#4](../../issues/4): Add initial CLI.
|
36
|
-
[#5](../../issues/5): Write results of each iteration to a separate file.
|
37
|
-
[#6](../../issues/6): Add `-s` option to stop on first failure.
|
43
|
+
1. [#1](../../issues/1): Add initial core logic.
|
44
|
+
1. [#4](../../issues/4): Add initial CLI.
|
45
|
+
1. [#5](../../issues/5): Write results of each iteration to a separate file.
|
46
|
+
1. [#6](../../issues/6): Add `-s` option to stop on first failure.
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# rspec_n
|
2
2
|
|
3
|
-
rspec_n is a Ruby gem that makes it easy to run a project's RSpec test suite N times.
|
3
|
+
rspec_n is a Ruby gem that makes it easy to run a project's RSpec test suite N times. You can customize the command that is used to start RSpec, or let rspec_n guess the best command (based on the files in your project). rspec_n is useful for finding repeatability issues in automated test suites.
|
4
4
|
|
5
5
|
![example](https://user-images.githubusercontent.com/2053901/53691471-c6956880-3d4c-11e9-8248-68bbb4c24786.png)
|
6
6
|
|
@@ -8,25 +8,31 @@ rspec_n is a Ruby gem that makes it easy to run a project's RSpec test suite N t
|
|
8
8
|
|
9
9
|
Releases are versioned using [semver 2.0.0](https://semver.org/spec/v2.0.0.html).
|
10
10
|
|
11
|
-
|
11
|
+
Ruby versions that reach EOL will be removed without a major version bump.
|
12
12
|
|
13
|
-
|
13
|
+
## Supported Ruby Versions
|
14
|
+
|
15
|
+
Ruby 2.6.0+ is supported.
|
14
16
|
|
15
17
|
## Installation
|
16
18
|
|
17
|
-
Install by executing
|
19
|
+
Install by executing:
|
18
20
|
|
19
21
|
$ gem install rspec_n
|
20
22
|
|
21
|
-
The gem will install an
|
23
|
+
The gem will install an executable called `rspec_n`.
|
24
|
+
|
25
|
+
Add the following to your project's `.gitignore` to exclude the output generated by rspec_n from your project's repo:
|
22
26
|
|
23
|
-
|
27
|
+
rspec_n_iteration.*
|
24
28
|
|
25
|
-
|
29
|
+
#### Usage in a Gemfile
|
26
30
|
|
27
|
-
|
28
|
-
|
29
|
-
|
31
|
+
If you want to add rspec_n to your Gemfile, use the `require: false` option so rspec_n files aren't loaded into your app. rspec_n doesn't provide any runtime benefit to apps and requiring it will add unnecessary code to your project. Also, rspec_n is designed as a standalone commandline tool and isn't tested for compatibility inside other apps.
|
32
|
+
|
33
|
+
```ruby
|
34
|
+
gem 'rspec_n', require: false
|
35
|
+
```
|
30
36
|
|
31
37
|
## Usage
|
32
38
|
|
@@ -34,16 +40,16 @@ The simplest way to run rspec_n is to give it a positive integer which tells it
|
|
34
40
|
|
35
41
|
$ rspec_n 5
|
36
42
|
|
37
|
-
As each iteration completes, output
|
43
|
+
As each iteration completes, output is sent to the screen and dumped to a file. If you need to examine the detailed output of a run, it is available in the output files.
|
38
44
|
|
39
|
-
You can also list one or more paths to target specs.
|
45
|
+
You can also list one or more paths to target specs. You can do anything you would normally do when giving RSpec paths:
|
40
46
|
|
41
47
|
$ rspec_n 5 spec/path/to/something_spec.rb
|
42
48
|
$ rspec_n 5 spec/path/to/folder spec/path/to/some/other/file_spec.rb
|
43
49
|
$ rspec_n 5 spec/path/to/folder
|
44
50
|
$ rspec_n 5 spec/path/to/something_spec.rb:5
|
45
51
|
|
46
|
-
By default, `--order rand` is sent to RSpec to force it to run specs in random order.
|
52
|
+
By default, `--order rand` is sent to RSpec to force it to run specs in random order. You can use a `defined` order if you don't want randomness:
|
47
53
|
|
48
54
|
$ rspec_n 5 --order defined
|
49
55
|
|
@@ -53,50 +59,76 @@ Or, let the configuration files in the project determine the order:
|
|
53
59
|
|
54
60
|
#### Automatic Command Selection
|
55
61
|
|
56
|
-
rspec_n
|
62
|
+
rspec_n inspects files in your project so it can pick the best way to start RSpec. If it can't make an educated guess, it will use `bundle exec rspec` as the base command and add any extra information you've entered on the command line (like the order or paths). The following is a list of project types that rspec_n can identify and the associated commands it will try to execute:
|
57
63
|
|
58
64
|
1. Ruby on Rails Applications: `DISABLE_DATABASE_ENVIRONMENT_CHECK=1 RAILS_ENV=test bundle exec rake db:drop db:create db:migrate && bundle exec rspec`.
|
59
65
|
2. Everything else: `bundle exec rspec`.
|
60
66
|
|
61
67
|
#### Use Custom Command to Start RSpec
|
62
68
|
|
63
|
-
|
69
|
+
Use the `-c` option if you want to specify your own command. The following example deletes the `tmp` folder before starting RSpec:
|
64
70
|
|
65
71
|
$ rspec_n 5 -c 'rm -rf tmp && bundle exec rspec'
|
66
72
|
|
67
73
|
There are couple points to consider:
|
68
74
|
|
69
|
-
1. Wrap your entire command in a single or double quoted string
|
70
|
-
1.
|
71
|
-
1. rspec_n was
|
75
|
+
1. Wrap your entire command in a single or double quoted string.
|
76
|
+
1. Use the `&&` operator to join commands.
|
77
|
+
1. rspec_n was created to help discover flaky test suites so it adds `--order rand` to your custom command by default. You must use `--order defined` or `--order project` if you want something else.
|
72
78
|
|
73
79
|
#### Control File Output
|
74
80
|
|
75
|
-
rspec_n writes output for each iteration in a sequence of files `rspec_n_iteration.1`, `rspec_n_iteration.2`, etc...
|
81
|
+
rspec_n writes output for each iteration in a sequence of files `rspec_n_iteration.1`, `rspec_n_iteration.2`, etc... If you want to disable this, add the `--no-file` option to the command.
|
76
82
|
|
77
83
|
$ rspec_n 5 --no-file
|
78
84
|
|
79
|
-
**Note:** rspec_n deletes all files matching `rspec_n_iteration.*` when it starts so be sure
|
85
|
+
**Note:** rspec_n deletes all files matching `rspec_n_iteration.*` when it starts, so be sure to move those files to another location if you want to save them.
|
80
86
|
|
81
87
|
#### Stop on First Failure
|
82
88
|
|
83
|
-
You can tell rspec_n to abort the first time an iteration fails by using the `-s` flag.
|
89
|
+
You can tell rspec_n to abort the first time an iteration fails by using the `-s` flag. All remaining iterations are skipped.
|
84
90
|
|
85
91
|
## Understanding the Results
|
86
92
|
|
87
|
-
rspec_n uses the STDOUT
|
93
|
+
rspec_n uses the `STDOUT`, `STDERR` and `EXIT STATUS` of the `rspec` command to decide if the run passed or failed. The run is considered successful if RSpec returns an `EXIT STATUS` of `0` **regardless of any content in the STDERR stream**. rspec_n considers the run to be a failure if RSpec's `EXIT STATUS` `> 0`.
|
94
|
+
|
95
|
+
There are times when `STDERR` has content, even though RSpec returns an `EXIT STATUS` of `0`. This frequently happens with deprecation notices and RSpec itself will pass the test suite in this situation. Also, it's not uncommon for code to write messages to `STDERR` that look like errors, but not actually cause RSpec to fail a spec example. If rspec_n is able to detect this situation, it adds `(Warning)` to the results to indicate there's something extra in the `STDERR` that you might want to investigate.
|
88
96
|
|
89
|
-
|
97
|
+
The results of each run (number of tests, number of failures, etc...) are determined by parsing `STDOUT` and extracting information from the line that says `xyz examples, xyz failures, xyz pending`.
|
90
98
|
|
91
99
|
## Development
|
92
100
|
|
93
|
-
|
101
|
+
### Setup
|
102
|
+
|
103
|
+
Install dependencies:
|
104
|
+
|
105
|
+
$ bin/setup
|
106
|
+
|
107
|
+
That's it!
|
94
108
|
|
95
|
-
|
109
|
+
### Run Automated Tests
|
110
|
+
|
111
|
+
Run the automated test suite with:
|
112
|
+
|
113
|
+
$ rake spec
|
114
|
+
|
115
|
+
### Start a Console
|
116
|
+
|
117
|
+
Choose one of the following to start a conole with the gem loaded:
|
118
|
+
|
119
|
+
```bash
|
120
|
+
$ bin/console # for Pry
|
121
|
+
$ rake console # for IRB
|
122
|
+
```
|
96
123
|
|
97
124
|
## Contributing
|
98
125
|
|
99
|
-
|
126
|
+
Contributions are welcome. Please us the following process when submitting work:
|
127
|
+
|
128
|
+
1. Create an issue on the [issue page](https://github.com/roberts1000/rspec_n/issues) that targets a single problem/enhancement. All PRs should be tied to an issue.
|
129
|
+
1. Fork the project.
|
130
|
+
1. Create a branch. The name of the branch should start with the issue number that the branch will address.
|
131
|
+
1. Submit the PR. In the PR comment (in the UI), add `Closes #xyz` or `Supports #xyz` where `xyz` is the issue number that the PR addresses. The title of the PR (in the UI) should start with `[PR for #xyz] `.
|
100
132
|
|
101
133
|
## License
|
102
134
|
|
data/Rakefile
CHANGED
data/bin/setup
CHANGED
data/lib/rspec_n.rb
CHANGED
@@ -6,7 +6,7 @@ module RspecN
|
|
6
6
|
end
|
7
7
|
|
8
8
|
def message
|
9
|
-
allowed = RspecN::ALLOWED_ORDER_OPTIONS.collect { |val| "'
|
9
|
+
allowed = RspecN::ALLOWED_ORDER_OPTIONS.collect { |val| "'#{val}'" }
|
10
10
|
"Order must be #{allowed.to_sentence}. '#{@details}' is not allowed.\n"
|
11
11
|
end
|
12
12
|
end
|
@@ -62,7 +62,7 @@ module RspecN
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def padded_header_column_labels
|
65
|
-
columns.collect { |name, max_width| padded_header_column_label(name, max_width) }.join
|
65
|
+
columns.collect { |name, max_width| padded_header_column_label(name, max_width) }.join
|
66
66
|
end
|
67
67
|
|
68
68
|
def max_column_width_for(name)
|
@@ -92,10 +92,8 @@ module RspecN
|
|
92
92
|
|
93
93
|
def result_color_symbol(run)
|
94
94
|
case run.status_string
|
95
|
-
when "Pass (Warnings)" then :green
|
96
|
-
when "Pass" then :green
|
95
|
+
when "Pass", "Pass (Warnings)" then :green
|
97
96
|
when "Fail" then :red
|
98
|
-
when "Skip" then :yellow
|
99
97
|
else :yellow
|
100
98
|
end
|
101
99
|
end
|
data/lib/rspec_n/input.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
module RspecN
|
2
2
|
class Input
|
3
3
|
attr_accessor :iterations, :command, :stop_fast, :write_files, :log_path
|
4
|
+
|
4
5
|
def initialize(options, args)
|
5
6
|
@args = args
|
6
7
|
@unprocessed_args_array = args.entries
|
@@ -23,7 +24,8 @@ module RspecN
|
|
23
24
|
private
|
24
25
|
|
25
26
|
def validate_order
|
26
|
-
|
27
|
+
order = @options.fetch(:order, nil)
|
28
|
+
return unless order
|
27
29
|
|
28
30
|
raise BadOption, order unless RspecN::ALLOWED_ORDER_OPTIONS.include?(order)
|
29
31
|
end
|
@@ -45,8 +47,8 @@ module RspecN
|
|
45
47
|
|
46
48
|
def determine_command
|
47
49
|
command = @options.fetch(:command, guessed_command)
|
48
|
-
command += "
|
49
|
-
command += " --order
|
50
|
+
command += " #{@spec_path}" if @spec_path
|
51
|
+
command += " --order #{@order}" if should_append_order?(command)
|
50
52
|
command
|
51
53
|
end
|
52
54
|
|
@@ -70,7 +72,7 @@ module RspecN
|
|
70
72
|
def should_append_order?(command)
|
71
73
|
return false if @order == "project"
|
72
74
|
|
73
|
-
command.
|
75
|
+
!command.include?("--order")
|
74
76
|
end
|
75
77
|
|
76
78
|
def determine_log_path
|
data/lib/rspec_n/version.rb
CHANGED
data/rspec_n.gemspec
CHANGED
@@ -33,12 +33,13 @@ Gem::Specification.new do |spec|
|
|
33
33
|
spec.bindir = "exe"
|
34
34
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
35
35
|
spec.require_paths = ["lib"]
|
36
|
-
spec.required_ruby_version = '>= 2.
|
36
|
+
spec.required_ruby_version = '>= 2.6.0'
|
37
37
|
|
38
38
|
spec.add_development_dependency "bundler", "~> 2.0"
|
39
|
-
spec.add_development_dependency "pry", "~> 0.
|
40
|
-
spec.add_development_dependency "rake", "~>
|
39
|
+
spec.add_development_dependency "pry", "~> 0.14.0"
|
40
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
41
41
|
spec.add_development_dependency "rspec", "~> 3.0"
|
42
|
+
spec.add_development_dependency "rubocop_plus", "~> 2.0"
|
42
43
|
|
43
44
|
spec.add_dependency "colorize", "~> 0.8.0"
|
44
45
|
spec.add_dependency "cri", "~> 2.15.3"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec_n
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- roberts1000
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,28 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.14.0
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 0.14.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '13.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '13.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop_plus
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: colorize
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -142,14 +156,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
156
|
requirements:
|
143
157
|
- - ">="
|
144
158
|
- !ruby/object:Gem::Version
|
145
|
-
version: 2.
|
159
|
+
version: 2.6.0
|
146
160
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
161
|
requirements:
|
148
162
|
- - ">="
|
149
163
|
- !ruby/object:Gem::Version
|
150
164
|
version: '0'
|
151
165
|
requirements: []
|
152
|
-
rubygems_version: 3.
|
166
|
+
rubygems_version: 3.2.17
|
153
167
|
signing_key:
|
154
168
|
specification_version: 4
|
155
169
|
summary: A ruby gem that runs RSpec N times.
|