rspec-fortify 1.0.0.pre
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.
- checksums.yaml +7 -0
- data/.github/workflows/ci.yml +32 -0
- data/.github/workflows/linter.yml +16 -0
- data/.gitignore +17 -0
- data/.rubocop.yml +21 -0
- data/.ruby-version +1 -0
- data/.travis.yml +15 -0
- data/Appraisals +21 -0
- data/Gemfile +10 -0
- data/Guardfile +7 -0
- data/LICENSE +22 -0
- data/README.md +94 -0
- data/Rakefile +11 -0
- data/changelog.md +99 -0
- data/gemfiles/rspec_3.10.gemfile +12 -0
- data/gemfiles/rspec_3.10.gemfile.lock +123 -0
- data/gemfiles/rspec_3.11.gemfile +12 -0
- data/gemfiles/rspec_3.11.gemfile.lock +123 -0
- data/gemfiles/rspec_3.12.gemfile +12 -0
- data/gemfiles/rspec_3.12.gemfile.lock +123 -0
- data/gemfiles/rspec_3.13.gemfile +12 -0
- data/gemfiles/rspec_3.13.gemfile.lock +123 -0
- data/gemfiles/rspec_3.9.gemfile +12 -0
- data/gemfiles/rspec_3.9.gemfile.lock +123 -0
- data/lib/rspec/fortify/formatter.rb +65 -0
- data/lib/rspec/fortify/version.rb +7 -0
- data/lib/rspec/fortify.rb +255 -0
- data/lib/rspec_ext/rspec_ext.rb +41 -0
- data/rspec-fortify.gemspec +22 -0
- data/spec/fixtures/bad_test.rb +11 -0
- data/spec/fixtures/flaky_test.rb +15 -0
- data/spec/fixtures/good_test.rb +11 -0
- data/spec/lib/rspec/fortify_spec.rb +212 -0
- data/spec/spec_helper.rb +3 -0
- metadata +93 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f0a78d71c2aa61973274340225c5f2730c0dd309aa27a8fdc684457f27379eb6
|
4
|
+
data.tar.gz: 68d9980c809b3ec69557a5520329117a634c4dcc62a9f43d54661b87607e2360
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 64dc31c803836ec186a321d30f6772f0f3822262480cb9d88adda0c4e24567ed32aa53dc332ca13359ce0f3ae2551e876b75b1e2a104aa7470ee6fdcf1e2b6d1
|
7
|
+
data.tar.gz: 7d1a5bace28ba200d392f4add9347e02256c69993475b59c74deaf274f75bd8807dde2db6474425ab977ba8acb2dd4ff6b011a4a77342fad66cf8c36665600e3
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
push:
|
6
|
+
branches: main
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
test:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
ruby: ['3.1', '3.2', '3.3']
|
15
|
+
gemfile:
|
16
|
+
- gemfiles/rspec_3.9.gemfile
|
17
|
+
- gemfiles/rspec_3.10.gemfile
|
18
|
+
- gemfiles/rspec_3.11.gemfile
|
19
|
+
- gemfiles/rspec_3.12.gemfile
|
20
|
+
- gemfiles/rspec_3.13.gemfile
|
21
|
+
steps:
|
22
|
+
- uses: actions/checkout@v4
|
23
|
+
- uses: ruby/setup-ruby@v1
|
24
|
+
env:
|
25
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
26
|
+
with:
|
27
|
+
ruby-version: ${{ matrix.ruby }}
|
28
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
29
|
+
- name: Run tests
|
30
|
+
env:
|
31
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
32
|
+
run: bundle exec rake
|
@@ -0,0 +1,16 @@
|
|
1
|
+
name: Linter
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
steps:
|
9
|
+
- uses: actions/checkout@v2
|
10
|
+
- name: Set up Ruby 3.2
|
11
|
+
uses: ruby/setup-ruby@v1
|
12
|
+
with:
|
13
|
+
ruby-version: '3.2'
|
14
|
+
bundler-cache: true
|
15
|
+
- name: Run Linter
|
16
|
+
run: bundle exec rubocop --parallel
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
inherit_gem:
|
2
|
+
betterlint:
|
3
|
+
- config/default.yml
|
4
|
+
|
5
|
+
inherit_mode:
|
6
|
+
merge:
|
7
|
+
- Exclude
|
8
|
+
|
9
|
+
AllCops:
|
10
|
+
TargetRubyVersion: 3.0
|
11
|
+
NewCops: enable
|
12
|
+
|
13
|
+
Rails/EnvironmentVariableAccess:
|
14
|
+
Enabled: false
|
15
|
+
|
16
|
+
RSpec/IndexedLet:
|
17
|
+
Enabled: false
|
18
|
+
|
19
|
+
Style/FrozenStringLiteralComment:
|
20
|
+
Exclude:
|
21
|
+
- 'gemfiles/*'
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.1.3
|
data/.travis.yml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.1
|
4
|
+
- 2.2
|
5
|
+
- 2.3
|
6
|
+
- 2.4
|
7
|
+
- 2.5
|
8
|
+
- 2.6
|
9
|
+
gemfile:
|
10
|
+
- gemfiles/rspec_3.3.gemfile
|
11
|
+
- gemfiles/rspec_3.4.gemfile
|
12
|
+
- gemfiles/rspec_3.5.gemfile
|
13
|
+
- gemfiles/rspec_3.6.gemfile
|
14
|
+
- gemfiles/rspec_3.7.gemfile
|
15
|
+
cache: bundler
|
data/Appraisals
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
appraise 'rspec-3.9' do
|
4
|
+
gem 'rspec', '~> 3.9.0'
|
5
|
+
end
|
6
|
+
|
7
|
+
appraise 'rspec-3.10' do
|
8
|
+
gem 'rspec', '~> 3.10.0'
|
9
|
+
end
|
10
|
+
|
11
|
+
appraise 'rspec-3.11' do
|
12
|
+
gem 'rspec', '~> 3.11.0'
|
13
|
+
end
|
14
|
+
|
15
|
+
appraise 'rspec-3.12' do
|
16
|
+
gem 'rspec', '~> 3.12.0'
|
17
|
+
end
|
18
|
+
|
19
|
+
appraise 'rspec-3.13' do
|
20
|
+
gem 'rspec', '~> 3.13.0'
|
21
|
+
end
|
data/Gemfile
ADDED
data/Guardfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Yusuke Mito
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
# RSpec::Fortify
|
2
|
+
|
3
|
+
RSpec::Fortify is a hard fork of [rspec-retry](https://github.com/NoRedInk/rspec-retry)
|
4
|
+
|
5
|
+
RSpec::Fortify adds a ``:retry`` option for intermittently failing rspec examples.
|
6
|
+
If an example has the ``:retry`` option, rspec will run the example the
|
7
|
+
specified number of times until the example succeeds.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'rspec-fortify', group: :test # Unlike rspec, this doesn't need to be included in development group
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install rspec-fortify
|
24
|
+
|
25
|
+
require in ``spec_helper.rb``
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
# spec/spec_helper.rb
|
29
|
+
require 'rspec/fortify'
|
30
|
+
|
31
|
+
RSpec.configure do |config|
|
32
|
+
# run retry only on features
|
33
|
+
config.around :each, :js do |ex|
|
34
|
+
ex.run_with_retry retry: 3
|
35
|
+
end
|
36
|
+
|
37
|
+
# callback to be run between retries
|
38
|
+
config.retry_callback = proc do |ex|
|
39
|
+
# run some additional clean up task - can be filtered by example metadata
|
40
|
+
if ex.metadata[:js]
|
41
|
+
Capybara.reset!
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
```
|
46
|
+
|
47
|
+
## Usage
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
it 'should randomly succeed', :retry => 3 do
|
51
|
+
expect(rand(2)).to eq(1)
|
52
|
+
end
|
53
|
+
|
54
|
+
it 'should succeed after a while', :retry => 3, :retry_wait => 10 do
|
55
|
+
expect(command('service myservice status')).to eq('started')
|
56
|
+
end
|
57
|
+
# RSpec::Fortify: 2nd try ./spec/lib/random_spec.rb:49
|
58
|
+
# RSpec::Fortify: 3rd try ./spec/lib/random_spec.rb:49
|
59
|
+
```
|
60
|
+
|
61
|
+
### Calling `run_with_retry` programmatically
|
62
|
+
|
63
|
+
You can call `ex.run_with_retry(opts)` on an individual example.
|
64
|
+
|
65
|
+
## Configuration
|
66
|
+
|
67
|
+
- __:verbose_retry__(default: *false*) Print retry status
|
68
|
+
- __:display_try_failure_messages__ (default: *false*) If verbose retry is enabled, print what reason forced the retry
|
69
|
+
- __:default_retry_count__(default: *1*) If retry count is not set in an example, this value is used by default. Note that currently this is a 'try' count. If increased from the default of 1, all examples will be retried. We plan to fix this as a breaking change in version 1.0.
|
70
|
+
- __:default_sleep_interval__(default: *0*) Seconds to wait between retries
|
71
|
+
- __:clear_lets_on_failure__(default: *true*) Clear memoized values for ``let``s before retrying
|
72
|
+
- __:exceptions_to_hard_fail__(default: *[]*) List of exceptions that will trigger an immediate test failure without retry. Takes precedence over __:exceptions_to_retry__
|
73
|
+
- __:exceptions_to_retry__(default: *[]*) List of exceptions that will trigger a retry (when empty, all exceptions will)
|
74
|
+
- __:retry_callback__(default: *nil*) Callback function to be called between retries
|
75
|
+
- __:retry_on_failure__(default: *main? || pr?*) Retry examples on failure. This is useful for flaky tests that are not marked with `:retry` metadata.
|
76
|
+
- __:retry_on_failure_count__(default: *2*) Run examples on failure this many times.
|
77
|
+
- __:retry_on_success__(default: *pr? && changed_specs.size < 30*) Retry examples on success. This is useful in order to prove that new tests are not flaky.
|
78
|
+
- __:retry_on_success_count__(default: *10*) Run examples on success this many times.
|
79
|
+
|
80
|
+
|
81
|
+
## Environment Variables
|
82
|
+
- __RSPEC_FORTIFY_RETRY_COUNT__ can override the retry counts even if a retry count is set in an example or default_retry_count is set in a configuration.
|
83
|
+
- __CHANGED_SPECS__ can be set to a comma-separated list of spec files that have changed. This is used to determine if an example should be retried on success.
|
84
|
+
- __CI__ is used to determine if the current environment is a CI environment. This is used to determine if examples should be retried on success.
|
85
|
+
- __CIRCLE_PULL_REQUEST__ is used to determine if the current CI build is a pull request or a default branch build. This is used to determine if examples should be retried on success.
|
86
|
+
|
87
|
+
|
88
|
+
## Contributing
|
89
|
+
|
90
|
+
1. Fork it
|
91
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
92
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
93
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
94
|
+
5. Create a pull request
|
data/Rakefile
ADDED
data/changelog.md
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
# 1.0.0.pre - 2024-04-20
|
2
|
+
## hard fork
|
3
|
+
This is a hard fork of the original rspec-retry gem. The original gem has been abandoned and is no longer maintained.
|
4
|
+
Added retry on success behavior
|
5
|
+
|
6
|
+
|
7
|
+
# 0.6.2 - 2019-11-21
|
8
|
+
## enhancements
|
9
|
+
expose `example.attempts` (in addition to `example.metadata[:attempts]`) (thanks @knu / #103)
|
10
|
+
expose `example.metadata[:retry_exceptions]` (thanks @drummond-work / #106)
|
11
|
+
|
12
|
+
## bugfixes / cleanup
|
13
|
+
ci works again! (#107)
|
14
|
+
cleanup travis.yml (thanks @olleolleolle / #105)
|
15
|
+
|
16
|
+
|
17
|
+
# 0.6.1 - 2018-06-11
|
18
|
+
## enhancements
|
19
|
+
add more flexible method of retrying (thanks @varyform / #48)
|
20
|
+
store retry attempts in example metadata (thanks @aeberlin / #43)
|
21
|
+
|
22
|
+
# 0.6.0 - 2018-05-15
|
23
|
+
## enhancements
|
24
|
+
add exponential backoff option (thanks @patveith, @thedrow / #91, #94, #95)
|
25
|
+
better documentation (thanks @swrobel / #90)
|
26
|
+
|
27
|
+
# 0.5.7 - 2018-03-13
|
28
|
+
## enhancements
|
29
|
+
remove <3.8 constraint on rspec-core to prevent breaking when rspec-core upgrades (thanks @dthorsen / #89)
|
30
|
+
|
31
|
+
# 0.5.6 - 2017-10-17
|
32
|
+
## enhancements
|
33
|
+
added support for rspec 3.7.0
|
34
|
+
|
35
|
+
# 0.5.5 - 2017-08-22
|
36
|
+
## enhancements
|
37
|
+
added retry_callback to help with cleanup between runs (thanks @abrom / #80)
|
38
|
+
|
39
|
+
# 0.5.4 - 2017-05-08
|
40
|
+
## enhancements
|
41
|
+
added support for rspec 3.6.0 (thanks @dthorsen / #76)
|
42
|
+
|
43
|
+
# 0.5.3 - 2017-01-11
|
44
|
+
## enhancements
|
45
|
+
printing summary of rspec to output not STDOUT (thanks @trevorcreech / #68)
|
46
|
+
removing some development dependencies
|
47
|
+
|
48
|
+
# 0.5.2 - 2016-10-03
|
49
|
+
## bugfixes
|
50
|
+
supports versions > 3.5.0 (thanks @y-yagi / #65)
|
51
|
+
|
52
|
+
# 0.5.1 - 2016-9-30
|
53
|
+
## enhancements
|
54
|
+
better failure message for multiple failures in one test (thanks @JonRowe / #62)
|
55
|
+
|
56
|
+
# 0.5.0 - 2016-8-8
|
57
|
+
drop support for rspec 3.2, added support for 3.4, 3.5
|
58
|
+
|
59
|
+
# 0.4.6 - 2016-8-8
|
60
|
+
## bugfixes
|
61
|
+
failure message was off by 1 (thanks @anthonywoo, @vgrigoruk / #57)
|
62
|
+
|
63
|
+
## enhancements
|
64
|
+
add the `exceptions_to_hard_fail` options (thanks @james-dominy, @ShockwaveNN / #59)
|
65
|
+
add retry reporter & api for accessing retry from reporter (thanks @tdeo / #54)
|
66
|
+
|
67
|
+
# 0.4.5 - 2015-11-4
|
68
|
+
## enhancements
|
69
|
+
retry can be called programmatically (thanks, @dwbutler / #45)
|
70
|
+
|
71
|
+
# 0.4.4 - 2015-9-9
|
72
|
+
## bugfixes
|
73
|
+
fix gem permissions to be readable (thanks @jdelStrother / #42)
|
74
|
+
|
75
|
+
# 0.4.3 - 2015-8-29
|
76
|
+
## bugfixes
|
77
|
+
will retry on children of exceptions in the `exceptions_to_retry` list
|
78
|
+
(thanks @dwbutler! #40, #41)
|
79
|
+
|
80
|
+
## enhancements
|
81
|
+
setting `config.display_try_failure_messages` (and `config.verbose_retry`) will
|
82
|
+
spit out some debug information about why an exception is being retried
|
83
|
+
(thanks @mmorast, #24)
|
84
|
+
|
85
|
+
# 0.4.2 - 2015-7-10
|
86
|
+
## bugfixes
|
87
|
+
setting retry to 0 will still run tests (#34)
|
88
|
+
|
89
|
+
## enhancements
|
90
|
+
can set env variable RSPEC_FORTIFY_RETRY_COUNT to override anything specified in
|
91
|
+
code (thanks @sunflat, #28, #36)
|
92
|
+
|
93
|
+
# 0.4.1 - 2015-7-9
|
94
|
+
## bugfixes
|
95
|
+
rspec-fortify now supports rspec 3.3. (thanks @eitoball, #32)
|
96
|
+
|
97
|
+
## dev changes
|
98
|
+
include travis configuration for testing rspec 3.2.* and 3.3.*
|
99
|
+
(thanks @eitoball, #31)
|
@@ -0,0 +1,123 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rspec-fortify (1.0.0.pre)
|
5
|
+
rspec-core (> 3.9)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (7.1.3.2)
|
11
|
+
base64
|
12
|
+
bigdecimal
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
connection_pool (>= 2.2.5)
|
15
|
+
drb
|
16
|
+
i18n (>= 1.6, < 2)
|
17
|
+
minitest (>= 5.1)
|
18
|
+
mutex_m
|
19
|
+
tzinfo (~> 2.0)
|
20
|
+
appraisal (2.5.0)
|
21
|
+
bundler
|
22
|
+
rake
|
23
|
+
thor (>= 0.14.0)
|
24
|
+
ast (2.4.2)
|
25
|
+
base64 (0.2.0)
|
26
|
+
betterlint (1.10.1)
|
27
|
+
rubocop (~> 1.62.0)
|
28
|
+
rubocop-performance (~> 1.21.0)
|
29
|
+
rubocop-rails (~> 2.24.0)
|
30
|
+
rubocop-rake (~> 0.6.0)
|
31
|
+
rubocop-rspec (~> 2.28.0)
|
32
|
+
bigdecimal (3.1.7)
|
33
|
+
concurrent-ruby (1.2.3)
|
34
|
+
connection_pool (2.4.1)
|
35
|
+
diff-lcs (1.5.1)
|
36
|
+
drb (2.2.1)
|
37
|
+
i18n (1.14.4)
|
38
|
+
concurrent-ruby (~> 1.0)
|
39
|
+
json (2.7.2)
|
40
|
+
language_server-protocol (3.17.0.3)
|
41
|
+
minitest (5.22.3)
|
42
|
+
mutex_m (0.2.0)
|
43
|
+
parallel (1.24.0)
|
44
|
+
parser (3.3.1.0)
|
45
|
+
ast (~> 2.4.1)
|
46
|
+
racc
|
47
|
+
pastel (0.8.0)
|
48
|
+
tty-color (~> 0.5)
|
49
|
+
racc (1.7.3)
|
50
|
+
rack (3.0.10)
|
51
|
+
rainbow (3.1.1)
|
52
|
+
rake (13.2.1)
|
53
|
+
regexp_parser (2.9.0)
|
54
|
+
rexml (3.2.6)
|
55
|
+
rspec (3.10.0)
|
56
|
+
rspec-core (~> 3.10.0)
|
57
|
+
rspec-expectations (~> 3.10.0)
|
58
|
+
rspec-mocks (~> 3.10.0)
|
59
|
+
rspec-core (3.10.2)
|
60
|
+
rspec-support (~> 3.10.0)
|
61
|
+
rspec-expectations (3.10.2)
|
62
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
63
|
+
rspec-support (~> 3.10.0)
|
64
|
+
rspec-mocks (3.10.3)
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
66
|
+
rspec-support (~> 3.10.0)
|
67
|
+
rspec-support (3.10.3)
|
68
|
+
rubocop (1.62.1)
|
69
|
+
json (~> 2.3)
|
70
|
+
language_server-protocol (>= 3.17.0)
|
71
|
+
parallel (~> 1.10)
|
72
|
+
parser (>= 3.3.0.2)
|
73
|
+
rainbow (>= 2.2.2, < 4.0)
|
74
|
+
regexp_parser (>= 1.8, < 3.0)
|
75
|
+
rexml (>= 3.2.5, < 4.0)
|
76
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
77
|
+
ruby-progressbar (~> 1.7)
|
78
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
79
|
+
rubocop-ast (1.31.3)
|
80
|
+
parser (>= 3.3.1.0)
|
81
|
+
rubocop-capybara (2.20.0)
|
82
|
+
rubocop (~> 1.41)
|
83
|
+
rubocop-factory_bot (2.25.1)
|
84
|
+
rubocop (~> 1.41)
|
85
|
+
rubocop-performance (1.21.0)
|
86
|
+
rubocop (>= 1.48.1, < 2.0)
|
87
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
88
|
+
rubocop-rails (2.24.1)
|
89
|
+
activesupport (>= 4.2.0)
|
90
|
+
rack (>= 1.1)
|
91
|
+
rubocop (>= 1.33.0, < 2.0)
|
92
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
93
|
+
rubocop-rake (0.6.0)
|
94
|
+
rubocop (~> 1.0)
|
95
|
+
rubocop-rspec (2.28.0)
|
96
|
+
rubocop (~> 1.40)
|
97
|
+
rubocop-capybara (~> 2.17)
|
98
|
+
rubocop-factory_bot (~> 2.22)
|
99
|
+
rubocop-rspec_rails (~> 2.28)
|
100
|
+
rubocop-rspec_rails (2.28.3)
|
101
|
+
rubocop (~> 1.40)
|
102
|
+
ruby-progressbar (1.13.0)
|
103
|
+
thor (1.3.1)
|
104
|
+
tty-color (0.6.0)
|
105
|
+
tty-command (0.10.1)
|
106
|
+
pastel (~> 0.8)
|
107
|
+
tzinfo (2.0.6)
|
108
|
+
concurrent-ruby (~> 1.0)
|
109
|
+
unicode-display_width (2.5.0)
|
110
|
+
|
111
|
+
PLATFORMS
|
112
|
+
arm64-darwin-22
|
113
|
+
ruby
|
114
|
+
|
115
|
+
DEPENDENCIES
|
116
|
+
appraisal
|
117
|
+
betterlint
|
118
|
+
rspec (~> 3.10.0)
|
119
|
+
rspec-fortify!
|
120
|
+
tty-command
|
121
|
+
|
122
|
+
BUNDLED WITH
|
123
|
+
2.5.7
|
@@ -0,0 +1,123 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
rspec-fortify (1.0.0.pre)
|
5
|
+
rspec-core (> 3.9)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (7.1.3.2)
|
11
|
+
base64
|
12
|
+
bigdecimal
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
connection_pool (>= 2.2.5)
|
15
|
+
drb
|
16
|
+
i18n (>= 1.6, < 2)
|
17
|
+
minitest (>= 5.1)
|
18
|
+
mutex_m
|
19
|
+
tzinfo (~> 2.0)
|
20
|
+
appraisal (2.5.0)
|
21
|
+
bundler
|
22
|
+
rake
|
23
|
+
thor (>= 0.14.0)
|
24
|
+
ast (2.4.2)
|
25
|
+
base64 (0.2.0)
|
26
|
+
betterlint (1.10.1)
|
27
|
+
rubocop (~> 1.62.0)
|
28
|
+
rubocop-performance (~> 1.21.0)
|
29
|
+
rubocop-rails (~> 2.24.0)
|
30
|
+
rubocop-rake (~> 0.6.0)
|
31
|
+
rubocop-rspec (~> 2.28.0)
|
32
|
+
bigdecimal (3.1.7)
|
33
|
+
concurrent-ruby (1.2.3)
|
34
|
+
connection_pool (2.4.1)
|
35
|
+
diff-lcs (1.5.1)
|
36
|
+
drb (2.2.1)
|
37
|
+
i18n (1.14.4)
|
38
|
+
concurrent-ruby (~> 1.0)
|
39
|
+
json (2.7.2)
|
40
|
+
language_server-protocol (3.17.0.3)
|
41
|
+
minitest (5.22.3)
|
42
|
+
mutex_m (0.2.0)
|
43
|
+
parallel (1.24.0)
|
44
|
+
parser (3.3.1.0)
|
45
|
+
ast (~> 2.4.1)
|
46
|
+
racc
|
47
|
+
pastel (0.8.0)
|
48
|
+
tty-color (~> 0.5)
|
49
|
+
racc (1.7.3)
|
50
|
+
rack (3.0.10)
|
51
|
+
rainbow (3.1.1)
|
52
|
+
rake (13.2.1)
|
53
|
+
regexp_parser (2.9.0)
|
54
|
+
rexml (3.2.6)
|
55
|
+
rspec (3.11.0)
|
56
|
+
rspec-core (~> 3.11.0)
|
57
|
+
rspec-expectations (~> 3.11.0)
|
58
|
+
rspec-mocks (~> 3.11.0)
|
59
|
+
rspec-core (3.11.0)
|
60
|
+
rspec-support (~> 3.11.0)
|
61
|
+
rspec-expectations (3.11.1)
|
62
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
63
|
+
rspec-support (~> 3.11.0)
|
64
|
+
rspec-mocks (3.11.2)
|
65
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
66
|
+
rspec-support (~> 3.11.0)
|
67
|
+
rspec-support (3.11.1)
|
68
|
+
rubocop (1.62.1)
|
69
|
+
json (~> 2.3)
|
70
|
+
language_server-protocol (>= 3.17.0)
|
71
|
+
parallel (~> 1.10)
|
72
|
+
parser (>= 3.3.0.2)
|
73
|
+
rainbow (>= 2.2.2, < 4.0)
|
74
|
+
regexp_parser (>= 1.8, < 3.0)
|
75
|
+
rexml (>= 3.2.5, < 4.0)
|
76
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
77
|
+
ruby-progressbar (~> 1.7)
|
78
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
79
|
+
rubocop-ast (1.31.3)
|
80
|
+
parser (>= 3.3.1.0)
|
81
|
+
rubocop-capybara (2.20.0)
|
82
|
+
rubocop (~> 1.41)
|
83
|
+
rubocop-factory_bot (2.25.1)
|
84
|
+
rubocop (~> 1.41)
|
85
|
+
rubocop-performance (1.21.0)
|
86
|
+
rubocop (>= 1.48.1, < 2.0)
|
87
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
88
|
+
rubocop-rails (2.24.1)
|
89
|
+
activesupport (>= 4.2.0)
|
90
|
+
rack (>= 1.1)
|
91
|
+
rubocop (>= 1.33.0, < 2.0)
|
92
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
93
|
+
rubocop-rake (0.6.0)
|
94
|
+
rubocop (~> 1.0)
|
95
|
+
rubocop-rspec (2.28.0)
|
96
|
+
rubocop (~> 1.40)
|
97
|
+
rubocop-capybara (~> 2.17)
|
98
|
+
rubocop-factory_bot (~> 2.22)
|
99
|
+
rubocop-rspec_rails (~> 2.28)
|
100
|
+
rubocop-rspec_rails (2.28.3)
|
101
|
+
rubocop (~> 1.40)
|
102
|
+
ruby-progressbar (1.13.0)
|
103
|
+
thor (1.3.1)
|
104
|
+
tty-color (0.6.0)
|
105
|
+
tty-command (0.10.1)
|
106
|
+
pastel (~> 0.8)
|
107
|
+
tzinfo (2.0.6)
|
108
|
+
concurrent-ruby (~> 1.0)
|
109
|
+
unicode-display_width (2.5.0)
|
110
|
+
|
111
|
+
PLATFORMS
|
112
|
+
arm64-darwin-22
|
113
|
+
ruby
|
114
|
+
|
115
|
+
DEPENDENCIES
|
116
|
+
appraisal
|
117
|
+
betterlint
|
118
|
+
rspec (~> 3.11.0)
|
119
|
+
rspec-fortify!
|
120
|
+
tty-command
|
121
|
+
|
122
|
+
BUNDLED WITH
|
123
|
+
2.5.7
|