Skip to content

Commit b78cb26

Browse files
authored
Merge pull request #40 from jgraichen/renovate/rubocop-config-14.x
2 parents 7ccb2e8 + e849b0e commit b78cb26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group :development do
1313
gem 'benchmark-ips'
1414
gem 'pry'
1515
gem 'pry-byebug'
16-
gem 'rubocop-config', github: 'jgraichen/rubocop-config', tag: 'v13', require: false
16+
gem 'rubocop-config', github: 'jgraichen/rubocop-config', tag: 'v14', require: false
1717
end
1818

1919
group :test do

lib/rails/rfc6570/formatter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def evaluate(ctx:, ignore: %w[format], **kwargs)
2121

2222
if controller.present? && action.present?
2323
params = ::Rails::RFC6570.params_for(controller, action)
24-
parts << ("{?#{params.join(',')}}") if params&.any?
24+
parts << "{?#{params.join(',')}}" if params&.any?
2525
end
2626
end
2727

0 commit comments

Comments
 (0)