Skip to content

Commit

Permalink
Merge pull request #1287 from SUSE/depfu/update/rubocop-rails-2.20.2
Browse files Browse the repository at this point in the history
Update rubocop-rails 2.19.1 → 2.20.2 (minor)
  • Loading branch information
hennevogel authored Aug 11, 2023
2 parents b89df7c + fa8f7f6 commit 155d6f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ GEM
activerecord
kaminari-core (= 1.2.2)
kaminari-core (1.2.2)
language_server-protocol (3.17.0.3)
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
Expand Down Expand Up @@ -302,10 +303,11 @@ GEM
rspec-mocks (~> 3.12)
rspec-support (~> 3.12)
rspec-support (3.12.1)
rubocop (1.51.0)
rubocop (1.54.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.2.2.3)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
Expand All @@ -318,7 +320,7 @@ GEM
rubocop (~> 1.41)
rubocop-factory_bot (2.23.1)
rubocop (~> 1.33)
rubocop-rails (2.19.1)
rubocop-rails (2.20.2)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/dev.rake
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace :dev do
ENV['PATH'].split(':').each do |path|
next unless File.exist?(path)

found = !Find.find(path).select { |f| f.match(/\bsearchd$/) && File.executable?(f) }.empty?
found = Find.find(path).any? { |f| f.match(/\bsearchd$/) && File.executable?(f) }
break if found
end

Expand Down

0 comments on commit 155d6f2

Please sign in to comment.