Skip to content

Commit

Permalink
Bump RuboCop RSpec to 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
koic committed Sep 23, 2021
1 parent 7570fb6 commit 0c3bf1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gem 'rake'
gem 'rspec'
gem 'rubocop', github: 'rubocop/rubocop'
gem 'rubocop-performance', '~> 1.11.0'
gem 'rubocop-rspec', '~> 2.4.0'
gem 'rubocop-rspec', '~> 2.5.0'
gem 'simplecov'
gem 'test-queue'
gem 'yard', '~> 0.9'
2 changes: 1 addition & 1 deletion spec/rubocop/cop/rails/assert_not_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
RUBY
end

it 'does not register an offense when using `assert_not` ' do
it 'does not register an offense when using `assert_not`' do
expect_no_offenses(<<~RUBY)
assert_not foo
RUBY
Expand Down
2 changes: 1 addition & 1 deletion spec/rubocop/cop/rails/presence_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
RUBY
end

it 'does not register an offense when if or unless modifier is used ' do
it 'does not register an offense when if or unless modifier is used' do
[
'a if a.blank?',
'a unless a.present?'
Expand Down

0 comments on commit 0c3bf1e

Please sign in to comment.