Skip to content

Commit 577be39

Browse files
authored
Merge pull request #1829 from troessner/update-rubocop
Update RuboCop dependencies and handle new offenses
2 parents cf216cc + c83fa96 commit 577be39

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ gem 'cucumber', '~> 10.0'
1010
gem 'rake', '~> 13.0'
1111
gem 'rspec', '~> 3.0'
1212
gem 'rspec-benchmark', '~> 0.6.0'
13-
gem 'rubocop', '~> 1.81.1'
13+
gem 'rubocop', '~> 1.82.1'
1414
gem 'rubocop-performance', '~> 1.26.0'
15-
gem 'rubocop-rspec', '~> 3.8.0'
15+
gem 'rubocop-rspec', '~> 3.9.0'
1616
gem 'simplecov', '~> 0.22.0'
1717
gem 'yard', '~> 0.9.5'
1818

spec/reek/cli/silencer_spec.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
require_lib 'reek/cli/silencer'
55

66
RSpec.describe Reek::CLI::Silencer do
7+
# rubocop:disable RSpec/Output
78
describe '.silently' do
89
it 'blocks output from the block on $stdout' do
910
expect { described_class.silently { puts 'Hi!' } }.not_to output.to_stdout
@@ -27,4 +28,5 @@
2728
end.to output("there!\n").to_stderr
2829
end
2930
end
31+
# rubocop:enable RSpec/Output
3032
end

0 commit comments

Comments
 (0)