Merge pull request #5268 from consuldemocracy/dependabot/bundler/rubocop-rspec-2.24.1

Bump rubocop-rspec from 2.23.2 to 2.24.1
This commit is contained in:
Javi Martín
2023-11-08 14:17:10 +01:00
committed by GitHub
4 changed files with 13 additions and 7 deletions

View File

@@ -547,9 +547,6 @@ RSpec/ExampleWording:
RSpec/ExcessiveDocstringSpacing: RSpec/ExcessiveDocstringSpacing:
Enabled: true Enabled: true
RSpec/FilePath:
Enabled: true
RSpec/Focus: RSpec/Focus:
Enabled: true Enabled: true
@@ -567,6 +564,9 @@ RSpec/LetBeforeExamples:
RSpec/LetSetup: RSpec/LetSetup:
Enabled: true Enabled: true
RSpec/MetadataStyle:
Enabled: true
RSpec/NotToNot: RSpec/NotToNot:
Enabled: true Enabled: true
@@ -603,6 +603,12 @@ RSpec/ScatteredLet:
RSpec/ScatteredSetup: RSpec/ScatteredSetup:
Enabled: true Enabled: true
RSpec/SpecFilePathFormat:
Enabled: true
RSpec/SpecFilePathSuffix:
Enabled: true
RSpec/VoidExpect: RSpec/VoidExpect:
Enabled: true Enabled: true

View File

@@ -110,7 +110,7 @@ group :development do
gem "rubocop-factory_bot", "~> 2.24.0", require: false gem "rubocop-factory_bot", "~> 2.24.0", require: false
gem "rubocop-performance", "~> 1.19.1", require: false gem "rubocop-performance", "~> 1.19.1", require: false
gem "rubocop-rails", "~> 2.20.2", require: false gem "rubocop-rails", "~> 2.20.2", require: false
gem "rubocop-rspec", "~> 2.23.2", require: false gem "rubocop-rspec", "~> 2.24.1", require: false
gem "rvm1-capistrano3", "~> 1.4.0", require: false gem "rvm1-capistrano3", "~> 1.4.0", require: false
gem "scss_lint", "~> 0.60.0", require: false gem "scss_lint", "~> 0.60.0", require: false
gem "web-console", "~> 4.2.1" gem "web-console", "~> 4.2.1"

View File

@@ -540,7 +540,7 @@ GEM
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
rack (>= 1.1) rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0) rubocop (>= 1.33.0, < 2.0)
rubocop-rspec (2.23.2) rubocop-rspec (2.24.1)
rubocop (~> 1.33) rubocop (~> 1.33)
rubocop-capybara (~> 2.17) rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22) rubocop-factory_bot (~> 2.22)
@@ -755,7 +755,7 @@ DEPENDENCIES
rubocop-factory_bot (~> 2.24.0) rubocop-factory_bot (~> 2.24.0)
rubocop-performance (~> 1.19.1) rubocop-performance (~> 1.19.1)
rubocop-rails (~> 2.20.2) rubocop-rails (~> 2.20.2)
rubocop-rspec (~> 2.23.2) rubocop-rspec (~> 2.24.1)
rvm1-capistrano3 (~> 1.4.0) rvm1-capistrano3 (~> 1.4.0)
sassc-rails (~> 2.1.2) sassc-rails (~> 2.1.2)
savon (~> 2.14.0) savon (~> 2.14.0)

View File

@@ -63,7 +63,7 @@ RSpec.configure do |config|
Capybara.default_set_options = { clear: :backspace } Capybara.default_set_options = { clear: :backspace }
end end
config.before(:each, type: :system, no_js: true) do config.before(:each, :no_js, type: :system) do
driven_by :rack_test driven_by :rack_test
Capybara.default_set_options = {} Capybara.default_set_options = {}
end end