ezcater_rubocop 8.1.0 → 9.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2a15bcc812b70fc80eeec6fc23e6e42f3ab5083292e558721b93096af34db61
4
- data.tar.gz: c03044d686ebd1eb695988ab440eb80ca1efe929b91f96a87615a9683596883e
3
+ metadata.gz: 337bff593d9c3f7c40060dadfa14b7539dd516b415099a032f0aaa3fa21cbc1a
4
+ data.tar.gz: 476b7cad539b35fbc6c72b007c7d1f6f2ea018d5ee5362c025388970c9fd6c98
5
5
  SHA512:
6
- metadata.gz: 75618a8349b879090e8f7ef1a83c923fb15742db3f6975ade39bd4402ade7532724197d6dae3f6fe336348136ef5596e5bceb16f0dea41489a5fc923ba75563e
7
- data.tar.gz: 119974969557ec72d6ad84f061b99714ea085a9f2547252813f572c5ce7573569ca2f45517b703945941320bf07029e2459939e9ffa877e80504693e8ba68b48
6
+ metadata.gz: 0d549c1553f5c45af6736b5687a1d2bb3e5adbc93b48a104686b5cc398e9d659336f1004eacc740b913d7214a07685c45b087af3db018b0535d5e5a236f6ffed
7
+ data.tar.gz: 432153e688f0fc386dfa4979c8443a96453f8a0f16d8be22a32683c98643e378854936084afa5f28ced2f36490396f79de853e822fad5e8d039e615a25d72e83
data/CHANGELOG.md CHANGED
@@ -6,7 +6,11 @@ This gem is moving onto its own [Semantic Versioning](https://semver.org/) schem
6
6
 
7
7
  Prior to v1.0.0 this gem was versioned based on the `MAJOR`.`MINOR` version of RuboCop. The first release of the ezcater_rubocop gem was `v0.49.0`.
8
8
 
9
- ## 8.0.1 (February 20, 2025)
9
+ ## 9.0.0 (February 24, 2025)
10
+
11
+ - Add support for `plugin` architecture in `rubocop >= 1.72.0` and `rubocop-rails >= 2.28.0`
12
+
13
+ ## 8.1.0 (February 20, 2025)
10
14
 
11
15
  - Pin maximum versions of `rubocop` and `rubocop-rails` to the versions before they moved to the `plugin` architecture in 1.72 and 2.28, respectively
12
16
 
data/Gemfile.lock CHANGED
@@ -1,11 +1,11 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ezcater_rubocop (8.1.0)
4
+ ezcater_rubocop (9.0.0)
5
5
  parser (>= 2.6)
6
- rubocop (>= 1.16.0, < 1.72.0)
6
+ rubocop (>= 1.72.0, < 2.0)
7
7
  rubocop-graphql (>= 0.14.0, < 1.0)
8
- rubocop-rails (>= 2.10.1, < 2.28.0)
8
+ rubocop-rails (>= 2.28.0, < 3.0)
9
9
  rubocop-rspec (>= 2.22.0, < 2.28.0)
10
10
 
11
11
  GEM
@@ -38,6 +38,7 @@ GEM
38
38
  concurrent-ruby (~> 1.0)
39
39
  json (2.10.1)
40
40
  language_server-protocol (3.17.0.4)
41
+ lint_roller (1.1.0)
41
42
  logger (1.6.6)
42
43
  method_source (1.1.0)
43
44
  minitest (5.25.4)
@@ -71,9 +72,10 @@ GEM
71
72
  rspec-support (3.13.2)
72
73
  rspec_junit_formatter (0.6.0)
73
74
  rspec-core (>= 2, < 4, != 2.12.0)
74
- rubocop (1.71.2)
75
+ rubocop (1.72.2)
75
76
  json (~> 2.3)
76
- language_server-protocol (>= 3.17.0)
77
+ language_server-protocol (~> 3.17.0.2)
78
+ lint_roller (~> 1.1.0)
77
79
  parallel (~> 1.10)
78
80
  parser (>= 3.3.0.2)
79
81
  rainbow (>= 2.2.2, < 4.0)
@@ -89,11 +91,12 @@ GEM
89
91
  rubocop (~> 1.61)
90
92
  rubocop-graphql (0.19.0)
91
93
  rubocop (>= 0.87, < 2)
92
- rubocop-rails (2.27.0)
94
+ rubocop-rails (2.30.2)
93
95
  activesupport (>= 4.2.0)
96
+ lint_roller (~> 1.1)
94
97
  rack (>= 1.1)
95
- rubocop (>= 1.52.0, < 2.0)
96
- rubocop-ast (>= 1.31.1, < 2.0)
98
+ rubocop (>= 1.72.1, < 2.0)
99
+ rubocop-ast (>= 1.38.0, < 2.0)
97
100
  rubocop-rspec (2.27.1)
98
101
  rubocop (~> 1.40)
99
102
  rubocop-capybara (~> 2.17)
data/conf/rubocop.yml CHANGED
@@ -1,5 +1,8 @@
1
1
  require: ezcater_rubocop
2
2
 
3
+ plugins:
4
+ - rubocop-rails
5
+
3
6
  AllCops:
4
7
  DisplayCopNames: true
5
8
  NewCops: disable
@@ -52,8 +52,8 @@ Gem::Specification.new do |spec|
52
52
  spec.add_development_dependency "simplecov"
53
53
 
54
54
  spec.add_runtime_dependency "parser", ">= 2.6"
55
- spec.add_runtime_dependency "rubocop", ">= 1.16.0", "< 1.72.0"
55
+ spec.add_runtime_dependency "rubocop", ">= 1.72.0", "< 2.0"
56
56
  spec.add_runtime_dependency "rubocop-graphql", ">= 0.14.0", "< 1.0"
57
- spec.add_runtime_dependency "rubocop-rails", ">= 2.10.1", "< 2.28.0"
57
+ spec.add_runtime_dependency "rubocop-rails", ">= 2.28.0", "< 3.0"
58
58
  spec.add_runtime_dependency "rubocop-rspec", ">= 2.22.0", "< 2.28.0"
59
59
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EzcaterRubocop
4
- VERSION = "8.1.0"
4
+ VERSION = "9.0.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ezcater_rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.1.0
4
+ version: 9.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ezCater, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-20 00:00:00.000000000 Z
11
+ date: 2025-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -114,20 +114,20 @@ dependencies:
114
114
  requirements:
115
115
  - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: 1.16.0
117
+ version: 1.72.0
118
118
  - - "<"
119
119
  - !ruby/object:Gem::Version
120
- version: 1.72.0
120
+ version: '2.0'
121
121
  type: :runtime
122
122
  prerelease: false
123
123
  version_requirements: !ruby/object:Gem::Requirement
124
124
  requirements:
125
125
  - - ">="
126
126
  - !ruby/object:Gem::Version
127
- version: 1.16.0
127
+ version: 1.72.0
128
128
  - - "<"
129
129
  - !ruby/object:Gem::Version
130
- version: 1.72.0
130
+ version: '2.0'
131
131
  - !ruby/object:Gem::Dependency
132
132
  name: rubocop-graphql
133
133
  requirement: !ruby/object:Gem::Requirement
@@ -154,20 +154,20 @@ dependencies:
154
154
  requirements:
155
155
  - - ">="
156
156
  - !ruby/object:Gem::Version
157
- version: 2.10.1
157
+ version: 2.28.0
158
158
  - - "<"
159
159
  - !ruby/object:Gem::Version
160
- version: 2.28.0
160
+ version: '3.0'
161
161
  type: :runtime
162
162
  prerelease: false
163
163
  version_requirements: !ruby/object:Gem::Requirement
164
164
  requirements:
165
165
  - - ">="
166
166
  - !ruby/object:Gem::Version
167
- version: 2.10.1
167
+ version: 2.28.0
168
168
  - - "<"
169
169
  - !ruby/object:Gem::Version
170
- version: 2.28.0
170
+ version: '3.0'
171
171
  - !ruby/object:Gem::Dependency
172
172
  name: rubocop-rspec
173
173
  requirement: !ruby/object:Gem::Requirement