ezcater_rubocop 8.0.0 → 8.1.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +128 -0
- data/ezcater_rubocop.gemspec +2 -2
- data/lib/ezcater_rubocop/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2a15bcc812b70fc80eeec6fc23e6e42f3ab5083292e558721b93096af34db61
|
|
4
|
+
data.tar.gz: c03044d686ebd1eb695988ab440eb80ca1efe929b91f96a87615a9683596883e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75618a8349b879090e8f7ef1a83c923fb15742db3f6975ade39bd4402ade7532724197d6dae3f6fe336348136ef5596e5bceb16f0dea41489a5fc923ba75563e
|
|
7
|
+
data.tar.gz: 119974969557ec72d6ad84f061b99714ea085a9f2547252813f572c5ce7573569ca2f45517b703945941320bf07029e2459939e9ffa877e80504693e8ba68b48
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ 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)
|
|
10
|
+
|
|
11
|
+
- 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
|
+
|
|
9
13
|
## 8.0.0
|
|
10
14
|
|
|
11
15
|
- Add `Ezcater/Migration/BigintForeignKey` Cop, which enforces the use of `bigint` for foreign keys in migrations.
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
ezcater_rubocop (8.1.0)
|
|
5
|
+
parser (>= 2.6)
|
|
6
|
+
rubocop (>= 1.16.0, < 1.72.0)
|
|
7
|
+
rubocop-graphql (>= 0.14.0, < 1.0)
|
|
8
|
+
rubocop-rails (>= 2.10.1, < 2.28.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
|
+
logger (1.6.6)
|
|
42
|
+
method_source (1.1.0)
|
|
43
|
+
minitest (5.25.4)
|
|
44
|
+
parallel (1.26.3)
|
|
45
|
+
parser (3.3.7.1)
|
|
46
|
+
ast (~> 2.4.1)
|
|
47
|
+
racc
|
|
48
|
+
pry (0.14.2)
|
|
49
|
+
coderay (~> 1.1)
|
|
50
|
+
method_source (~> 1.0)
|
|
51
|
+
pry-byebug (3.10.1)
|
|
52
|
+
byebug (~> 11.0)
|
|
53
|
+
pry (>= 0.13, < 0.15)
|
|
54
|
+
racc (1.8.1)
|
|
55
|
+
rack (3.1.10)
|
|
56
|
+
rainbow (3.1.1)
|
|
57
|
+
rake (13.2.1)
|
|
58
|
+
regexp_parser (2.10.0)
|
|
59
|
+
rspec (3.13.0)
|
|
60
|
+
rspec-core (~> 3.13.0)
|
|
61
|
+
rspec-expectations (~> 3.13.0)
|
|
62
|
+
rspec-mocks (~> 3.13.0)
|
|
63
|
+
rspec-core (3.13.3)
|
|
64
|
+
rspec-support (~> 3.13.0)
|
|
65
|
+
rspec-expectations (3.13.3)
|
|
66
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
67
|
+
rspec-support (~> 3.13.0)
|
|
68
|
+
rspec-mocks (3.13.2)
|
|
69
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
70
|
+
rspec-support (~> 3.13.0)
|
|
71
|
+
rspec-support (3.13.2)
|
|
72
|
+
rspec_junit_formatter (0.6.0)
|
|
73
|
+
rspec-core (>= 2, < 4, != 2.12.0)
|
|
74
|
+
rubocop (1.71.2)
|
|
75
|
+
json (~> 2.3)
|
|
76
|
+
language_server-protocol (>= 3.17.0)
|
|
77
|
+
parallel (~> 1.10)
|
|
78
|
+
parser (>= 3.3.0.2)
|
|
79
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
80
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
81
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
|
82
|
+
ruby-progressbar (~> 1.7)
|
|
83
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
84
|
+
rubocop-ast (1.38.0)
|
|
85
|
+
parser (>= 3.3.1.0)
|
|
86
|
+
rubocop-capybara (2.21.0)
|
|
87
|
+
rubocop (~> 1.41)
|
|
88
|
+
rubocop-factory_bot (2.26.1)
|
|
89
|
+
rubocop (~> 1.61)
|
|
90
|
+
rubocop-graphql (0.19.0)
|
|
91
|
+
rubocop (>= 0.87, < 2)
|
|
92
|
+
rubocop-rails (2.27.0)
|
|
93
|
+
activesupport (>= 4.2.0)
|
|
94
|
+
rack (>= 1.1)
|
|
95
|
+
rubocop (>= 1.52.0, < 2.0)
|
|
96
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
|
97
|
+
rubocop-rspec (2.27.1)
|
|
98
|
+
rubocop (~> 1.40)
|
|
99
|
+
rubocop-capybara (~> 2.17)
|
|
100
|
+
rubocop-factory_bot (~> 2.22)
|
|
101
|
+
ruby-progressbar (1.13.0)
|
|
102
|
+
securerandom (0.4.1)
|
|
103
|
+
simplecov (0.22.0)
|
|
104
|
+
docile (~> 1.1)
|
|
105
|
+
simplecov-html (~> 0.11)
|
|
106
|
+
simplecov_json_formatter (~> 0.1)
|
|
107
|
+
simplecov-html (0.13.1)
|
|
108
|
+
simplecov_json_formatter (0.1.4)
|
|
109
|
+
tzinfo (2.0.6)
|
|
110
|
+
concurrent-ruby (~> 1.0)
|
|
111
|
+
unicode-display_width (3.1.4)
|
|
112
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
113
|
+
unicode-emoji (4.0.4)
|
|
114
|
+
|
|
115
|
+
PLATFORMS
|
|
116
|
+
arm64-darwin-24
|
|
117
|
+
|
|
118
|
+
DEPENDENCIES
|
|
119
|
+
bundler
|
|
120
|
+
ezcater_rubocop!
|
|
121
|
+
pry-byebug
|
|
122
|
+
rake (~> 13.0)
|
|
123
|
+
rspec (~> 3.11)
|
|
124
|
+
rspec_junit_formatter
|
|
125
|
+
simplecov
|
|
126
|
+
|
|
127
|
+
BUNDLED WITH
|
|
128
|
+
2.3.7
|
data/ezcater_rubocop.gemspec
CHANGED
|
@@ -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", "<
|
|
55
|
+
spec.add_runtime_dependency "rubocop", ">= 1.16.0", "< 1.72.0"
|
|
56
56
|
spec.add_runtime_dependency "rubocop-graphql", ">= 0.14.0", "< 1.0"
|
|
57
|
-
spec.add_runtime_dependency "rubocop-rails", ">= 2.10.1", "<
|
|
57
|
+
spec.add_runtime_dependency "rubocop-rails", ">= 2.10.1", "< 2.28.0"
|
|
58
58
|
spec.add_runtime_dependency "rubocop-rspec", ">= 2.22.0", "< 2.28.0"
|
|
59
59
|
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.
|
|
4
|
+
version: 8.1.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-
|
|
11
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -117,7 +117,7 @@ dependencies:
|
|
|
117
117
|
version: 1.16.0
|
|
118
118
|
- - "<"
|
|
119
119
|
- !ruby/object:Gem::Version
|
|
120
|
-
version:
|
|
120
|
+
version: 1.72.0
|
|
121
121
|
type: :runtime
|
|
122
122
|
prerelease: false
|
|
123
123
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -127,7 +127,7 @@ dependencies:
|
|
|
127
127
|
version: 1.16.0
|
|
128
128
|
- - "<"
|
|
129
129
|
- !ruby/object:Gem::Version
|
|
130
|
-
version:
|
|
130
|
+
version: 1.72.0
|
|
131
131
|
- !ruby/object:Gem::Dependency
|
|
132
132
|
name: rubocop-graphql
|
|
133
133
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -157,7 +157,7 @@ dependencies:
|
|
|
157
157
|
version: 2.10.1
|
|
158
158
|
- - "<"
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
|
-
version:
|
|
160
|
+
version: 2.28.0
|
|
161
161
|
type: :runtime
|
|
162
162
|
prerelease: false
|
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -167,7 +167,7 @@ dependencies:
|
|
|
167
167
|
version: 2.10.1
|
|
168
168
|
- - "<"
|
|
169
169
|
- !ruby/object:Gem::Version
|
|
170
|
-
version:
|
|
170
|
+
version: 2.28.0
|
|
171
171
|
- !ruby/object:Gem::Dependency
|
|
172
172
|
name: rubocop-rspec
|
|
173
173
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -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
|