ezcater_rubocop 8.0.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: d1a7228be76189e5a330bb1e9edae0e1bc35be77af84aebae08fd9b76f652283
4
- data.tar.gz: 5727cedd1aa216879a69a06b02448a1eb3806e15ea82339d4ee5f14cfb87c162
3
+ metadata.gz: 337bff593d9c3f7c40060dadfa14b7539dd516b415099a032f0aaa3fa21cbc1a
4
+ data.tar.gz: 476b7cad539b35fbc6c72b007c7d1f6f2ea018d5ee5362c025388970c9fd6c98
5
5
  SHA512:
6
- metadata.gz: 4cc8fd3788297b86403405edfc35e2b17ade3aa5a6656249021b022e41377cebd894ab45938204eefc556cb5585761ee89ecdf45c9613ce6256d99bcc06e0258
7
- data.tar.gz: 844b539b44ffd246b2cc03af450d0239f2e3cd515e9e0ba7acdbd797b9cd229888ecd0ef1785faced9e7c06d82051690bc779e13d56c448afa57e000423b3d7c
6
+ metadata.gz: 0d549c1553f5c45af6736b5687a1d2bb3e5adbc93b48a104686b5cc398e9d659336f1004eacc740b913d7214a07685c45b087af3db018b0535d5e5a236f6ffed
7
+ data.tar.gz: 432153e688f0fc386dfa4979c8443a96453f8a0f16d8be22a32683c98643e378854936084afa5f28ced2f36490396f79de853e822fad5e8d039e615a25d72e83
data/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ 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
+ ## 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)
14
+
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
16
+
9
17
  ## 8.0.0
10
18
 
11
19
  - Add `Ezcater/Migration/BigintForeignKey` Cop, which enforces the use of `bigint` for foreign keys in migrations.
data/Gemfile.lock ADDED
@@ -0,0 +1,131 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ ezcater_rubocop (9.0.0)
5
+ parser (>= 2.6)
6
+ rubocop (>= 1.72.0, < 2.0)
7
+ rubocop-graphql (>= 0.14.0, < 1.0)
8
+ rubocop-rails (>= 2.28.0, < 3.0)
9
+ rubocop-rspec (>= 2.22.0, < 2.28.0)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ activesupport (7.2.2.1)
15
+ base64
16
+ benchmark (>= 0.3)
17
+ bigdecimal
18
+ concurrent-ruby (~> 1.0, >= 1.3.1)
19
+ connection_pool (>= 2.2.5)
20
+ drb
21
+ i18n (>= 1.6, < 2)
22
+ logger (>= 1.4.2)
23
+ minitest (>= 5.1)
24
+ securerandom (>= 0.3)
25
+ tzinfo (~> 2.0, >= 2.0.5)
26
+ ast (2.4.2)
27
+ base64 (0.2.0)
28
+ benchmark (0.4.0)
29
+ bigdecimal (3.1.9)
30
+ byebug (11.1.3)
31
+ coderay (1.1.3)
32
+ concurrent-ruby (1.3.5)
33
+ connection_pool (2.5.0)
34
+ diff-lcs (1.6.0)
35
+ docile (1.4.1)
36
+ drb (2.2.1)
37
+ i18n (1.14.7)
38
+ concurrent-ruby (~> 1.0)
39
+ json (2.10.1)
40
+ language_server-protocol (3.17.0.4)
41
+ lint_roller (1.1.0)
42
+ logger (1.6.6)
43
+ method_source (1.1.0)
44
+ minitest (5.25.4)
45
+ parallel (1.26.3)
46
+ parser (3.3.7.1)
47
+ ast (~> 2.4.1)
48
+ racc
49
+ pry (0.14.2)
50
+ coderay (~> 1.1)
51
+ method_source (~> 1.0)
52
+ pry-byebug (3.10.1)
53
+ byebug (~> 11.0)
54
+ pry (>= 0.13, < 0.15)
55
+ racc (1.8.1)
56
+ rack (3.1.10)
57
+ rainbow (3.1.1)
58
+ rake (13.2.1)
59
+ regexp_parser (2.10.0)
60
+ rspec (3.13.0)
61
+ rspec-core (~> 3.13.0)
62
+ rspec-expectations (~> 3.13.0)
63
+ rspec-mocks (~> 3.13.0)
64
+ rspec-core (3.13.3)
65
+ rspec-support (~> 3.13.0)
66
+ rspec-expectations (3.13.3)
67
+ diff-lcs (>= 1.2.0, < 2.0)
68
+ rspec-support (~> 3.13.0)
69
+ rspec-mocks (3.13.2)
70
+ diff-lcs (>= 1.2.0, < 2.0)
71
+ rspec-support (~> 3.13.0)
72
+ rspec-support (3.13.2)
73
+ rspec_junit_formatter (0.6.0)
74
+ rspec-core (>= 2, < 4, != 2.12.0)
75
+ rubocop (1.72.2)
76
+ json (~> 2.3)
77
+ language_server-protocol (~> 3.17.0.2)
78
+ lint_roller (~> 1.1.0)
79
+ parallel (~> 1.10)
80
+ parser (>= 3.3.0.2)
81
+ rainbow (>= 2.2.2, < 4.0)
82
+ regexp_parser (>= 2.9.3, < 3.0)
83
+ rubocop-ast (>= 1.38.0, < 2.0)
84
+ ruby-progressbar (~> 1.7)
85
+ unicode-display_width (>= 2.4.0, < 4.0)
86
+ rubocop-ast (1.38.0)
87
+ parser (>= 3.3.1.0)
88
+ rubocop-capybara (2.21.0)
89
+ rubocop (~> 1.41)
90
+ rubocop-factory_bot (2.26.1)
91
+ rubocop (~> 1.61)
92
+ rubocop-graphql (0.19.0)
93
+ rubocop (>= 0.87, < 2)
94
+ rubocop-rails (2.30.2)
95
+ activesupport (>= 4.2.0)
96
+ lint_roller (~> 1.1)
97
+ rack (>= 1.1)
98
+ rubocop (>= 1.72.1, < 2.0)
99
+ rubocop-ast (>= 1.38.0, < 2.0)
100
+ rubocop-rspec (2.27.1)
101
+ rubocop (~> 1.40)
102
+ rubocop-capybara (~> 2.17)
103
+ rubocop-factory_bot (~> 2.22)
104
+ ruby-progressbar (1.13.0)
105
+ securerandom (0.4.1)
106
+ simplecov (0.22.0)
107
+ docile (~> 1.1)
108
+ simplecov-html (~> 0.11)
109
+ simplecov_json_formatter (~> 0.1)
110
+ simplecov-html (0.13.1)
111
+ simplecov_json_formatter (0.1.4)
112
+ tzinfo (2.0.6)
113
+ concurrent-ruby (~> 1.0)
114
+ unicode-display_width (3.1.4)
115
+ unicode-emoji (~> 4.0, >= 4.0.4)
116
+ unicode-emoji (4.0.4)
117
+
118
+ PLATFORMS
119
+ arm64-darwin-24
120
+
121
+ DEPENDENCIES
122
+ bundler
123
+ ezcater_rubocop!
124
+ pry-byebug
125
+ rake (~> 13.0)
126
+ rspec (~> 3.11)
127
+ rspec_junit_formatter
128
+ simplecov
129
+
130
+ BUNDLED WITH
131
+ 2.3.7
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", "< 2.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", "< 3.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.0.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.0.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-01-29 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,7 +114,7 @@ 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
120
  version: '2.0'
@@ -124,7 +124,7 @@ dependencies:
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
130
  version: '2.0'
@@ -154,7 +154,7 @@ 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
160
  version: '3.0'
@@ -164,7 +164,7 @@ dependencies:
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
170
  version: '3.0'
@@ -203,6 +203,7 @@ files:
203
203
  - ".tool-versions"
204
204
  - CHANGELOG.md
205
205
  - Gemfile
206
+ - Gemfile.lock
206
207
  - LICENSE.txt
207
208
  - README.md
208
209
  - bin/check_configs.sh