Skip to content

Commit f3f697d

Browse files
authored
Merge pull request #259 from github/use-rubocop-plugins
use `plugins` block for rubocop-performance and rubocop-rails
2 parents fb9a32c + 26fee53 commit f3f697d

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# rubocop-github
22

3+
## v0.23.0
4+
5+
- Read the automatic release notes on [the /releases page for this gem](https://github.com/github/rubocop-github/releases).
6+
37
## v0.22.0
48

59
- Read the automatic release notes on [the /releases page for this gem](https://github.com/github/rubocop-github/releases).

Gemfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PATH
22
remote: .
33
specs:
4-
rubocop-github (0.22.0)
5-
rubocop (>= 1.37)
6-
rubocop-performance (>= 1.15)
7-
rubocop-rails (>= 2.17)
4+
rubocop-github (0.23.0)
5+
rubocop (>= 1.72)
6+
rubocop-performance (>= 1.24)
7+
rubocop-rails (>= 2.23)
88

99
GEM
1010
remote: https://rubygems.org/
@@ -75,7 +75,7 @@ GEM
7575
rainbow (3.1.1)
7676
rake (13.2.1)
7777
regexp_parser (2.10.0)
78-
rubocop (1.72.2)
78+
rubocop (1.73.0)
7979
json (~> 2.3)
8080
language_server-protocol (~> 3.17.0.2)
8181
lint_roller (~> 1.1.0)
@@ -86,7 +86,7 @@ GEM
8686
rubocop-ast (>= 1.38.0, < 2.0)
8787
ruby-progressbar (~> 1.7)
8888
unicode-display_width (>= 2.4.0, < 4.0)
89-
rubocop-ast (1.38.0)
89+
rubocop-ast (1.38.1)
9090
parser (>= 3.3.1.0)
9191
rubocop-performance (1.24.0)
9292
lint_roller (~> 1.1)

config/default.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ inherit_from:
33

44
require:
55
- rubocop-github
6+
7+
plugins:
68
- rubocop-performance
79

810
Bundler/DuplicatedGem:

config/rails.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ inherit_from:
33

44
require:
55
- rubocop-github-rails
6+
7+
plugins:
68
- rubocop-rails
79

810
GitHub/RailsControllerRenderActionSymbol:

lib/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# frozen_string_literal: true
22

3-
VERSION = "0.22.0"
3+
VERSION = "0.23.0"

rubocop-github.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Gem::Specification.new do |s|
2020

2121
s.required_ruby_version = ">= 3.0.0"
2222

23-
s.add_dependency "rubocop", ">= 1.37"
24-
s.add_dependency "rubocop-performance", ">= 1.15"
25-
s.add_dependency "rubocop-rails", ">= 2.17"
23+
s.add_dependency "rubocop", ">= 1.72"
24+
s.add_dependency "rubocop-performance", ">= 1.24"
25+
s.add_dependency "rubocop-rails", ">= 2.23"
2626

2727
s.add_development_dependency "actionview", "~> 7.1.5.1"
2828
s.add_development_dependency "minitest"

0 commit comments

Comments
 (0)