ezcater_rubocop 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.tool-versions +1 -1
- data/CHANGELOG.md +61 -1
- data/README.md +12 -12
- data/bin/circle_rubocop.rb +4 -4
- data/ezcater_rubocop.gemspec +8 -8
- data/lib/ezcater_rubocop/version.rb +1 -1
- data/lib/rubocop/cop/ezcater/graphql_fields_naming.rb +2 -2
- data/lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb +2 -2
- metadata +46 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de7fc9b23bdafa3b1a308dcfc89e404611d8a6d33f9b9e6a43d9d1729d221c52
|
4
|
+
data.tar.gz: 04322af4861d786fd3b35be77d6f1917c0d4b0d77dcb9279c71efb0dab751294
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26e9b3cba968e6c88621d348efcc1bad551deca81cf97022a42c342f3bd1145162c14ccbb7faaf2d2d5b9abf9b2f469261a96b862a27abcf28b2067746e58786
|
7
|
+
data.tar.gz: e225a8844a45e36ed48c4e9d8139d7c743376b4c4c7655d0a6b03ef3562fa627b5abc3c17959c4ab0541477301780367f71c908706cb3db734b054bead68ca0e
|
data/.tool-versions
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby
|
1
|
+
ruby 3.1.1
|
data/CHANGELOG.md
CHANGED
@@ -6,7 +6,12 @@ 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
|
+
## v3.0.2
|
10
|
+
|
11
|
+
- Loosen restrictions to allow for Ruby 3.1 and latest dependency gems
|
12
|
+
|
9
13
|
## v3.0.1
|
14
|
+
|
10
15
|
- Fix the RspecDotNotSelfDot cop to work with rubocop-rspec
|
11
16
|
- Exclude appraisal generated gemfiles for possible embedded gems in rails apps
|
12
17
|
|
@@ -37,101 +42,128 @@ Prior to v1.0.0 this gem was versioned based on the `MAJOR`.`MINOR` version of R
|
|
37
42
|
- Enabled pending cop (`RSpec/StubbedMock`).
|
38
43
|
|
39
44
|
## v2.4.0
|
45
|
+
|
40
46
|
- Fix `FeatureFlagActive` cop so that it allows feature flag names to be variables in addition to strings.
|
41
47
|
- Add check to `FeatureFlagActive` that the first parameter is a string or a variable, and use the appropriate messaging.
|
42
48
|
|
43
49
|
## v2.3.0
|
50
|
+
|
44
51
|
- Add `FeatureFlagActive` cop. This provides confidence that upgrading to `ezcater_feature_flag-client` v2.0.0, which
|
45
|
-
|
52
|
+
contains breaking API changes, can be done safely.
|
46
53
|
|
47
54
|
## v2.2.0
|
55
|
+
|
48
56
|
- Require Ruby 2.6 or later.
|
49
57
|
- Set `TargetRubyVersion` to 2.6 in `rubocop_gem` configuration.
|
50
58
|
|
51
59
|
## v2.1.0
|
60
|
+
|
52
61
|
- Enable `Rails/SaveBang` with `AllowImplicitReturn: false`, and with autocorrection disabled.
|
53
62
|
|
54
63
|
## v2.0.0
|
64
|
+
|
55
65
|
- Update to `rubocop` v0.81.0, `rubocop-rspec` v1.38.1 and `rubocop-rails` v2.5.2.
|
56
66
|
- This is being released as a major update because cops have been renamed so this is unlikely to be
|
57
67
|
a drop-in replacement.
|
58
68
|
- This is the first release to support Ruby 2.7.
|
59
69
|
|
60
70
|
## v1.4.1
|
71
|
+
|
61
72
|
- Correct a matching syntax issue with `Ezcater/RubyTimeout` so that it applies in the expected cases.
|
62
73
|
|
63
74
|
## v1.4.0
|
75
|
+
|
64
76
|
- Add `Ezcater/RubyTimeout` cop.
|
65
77
|
|
66
78
|
## v1.3.0
|
79
|
+
|
67
80
|
- Add `Ezcater/GraphqlFieldsNaming` cop.
|
68
81
|
|
69
82
|
## v1.2.0
|
83
|
+
|
70
84
|
- Add `Ezcater/RailsTopLevelSqlExecute` to replace `ActiveRecord::Base.connection.execute` with `execute` in `db/migrate/`.
|
71
85
|
|
72
86
|
## v1.1.1
|
87
|
+
|
73
88
|
- Exclude `lib/tasks/` for `Ezcater/RailsEnv` and `Ezcater/DirectEnvCheck`.
|
74
89
|
|
75
90
|
## v1.1.0
|
91
|
+
|
76
92
|
- Add `Ezcater/RailsEnv` cop.
|
77
93
|
- Add `Ezcater/DirectEnvCheck` cop.
|
78
94
|
|
79
95
|
## v1.0.2
|
96
|
+
|
80
97
|
- Exclude bootsnap cache directory (`tmp/cache`).
|
81
98
|
|
82
99
|
## v1.0.1
|
100
|
+
|
83
101
|
- Disable `Rails/HasAndBelongsToMany` cop.
|
84
102
|
- Disable `Style/DoubleNegation` cop.
|
85
103
|
|
86
104
|
## v1.0.0
|
105
|
+
|
87
106
|
- Begin using Semantic Versioning
|
88
107
|
- Delete `Ezcater/PrivateAttr`
|
89
108
|
|
90
109
|
## v0.61.1
|
110
|
+
|
91
111
|
- `Layout/IndentHash` enforces consistent style
|
92
112
|
- `Layout/IndentArray` enforces consistent style
|
93
113
|
|
94
114
|
## v0.61.0
|
115
|
+
|
95
116
|
- Update to `rubocop` v0.61.1.
|
96
117
|
- Update to `rubocop-rspec` v1.30.1
|
97
118
|
|
98
119
|
## v0.59.0
|
120
|
+
|
99
121
|
- Disable `Style/NegatedIf`.
|
100
122
|
|
101
123
|
## v0.58.4
|
124
|
+
|
102
125
|
- Update `Metrics/BlockLength` to exclude `app/graphql/**/*.rb`
|
103
126
|
- Move `Metrics/BlockLength` exclusions for `lib/tasks/**/*.rake` and
|
104
127
|
`config/environments/*.rb` into rubocop_rails.yml
|
105
128
|
|
106
129
|
## v0.58.3
|
130
|
+
|
107
131
|
- Updated `Layout/MultilineMethodCallIndentation` to `indented`.
|
108
132
|
|
109
133
|
## v0.58.2
|
134
|
+
|
110
135
|
- Updated `Ezcater/RspecDotNotSelfDot` to flag offenses for `::class_method`.
|
111
136
|
|
112
137
|
## v0.58.1
|
138
|
+
|
113
139
|
- Update to `rubocop-rspec` v1.28.0.
|
114
140
|
- Remove configuration for removed `FactoryBot/DynamicAttributeDefinedStatically` cop.
|
115
141
|
|
116
142
|
## v0.58.0
|
143
|
+
|
117
144
|
- Update to rubocop v0.58.1.
|
118
145
|
- Enable `Naming/MemoizedInstanceVariableName` with required leading
|
119
146
|
underscore.
|
120
147
|
|
121
148
|
## v0.57.4
|
149
|
+
|
122
150
|
- Configure `Rspec/MessageExpectation` with the `allow` style.
|
123
151
|
|
124
152
|
## v0.57.3
|
153
|
+
|
125
154
|
- Do not use broken parser v2.5.1.1.
|
126
155
|
|
127
156
|
## v0.57.2
|
157
|
+
|
128
158
|
- Fix `Ezcater/RspecRequireHttpStatusMatcher` cop.
|
129
159
|
|
130
160
|
## v0.57.1
|
161
|
+
|
131
162
|
- Add `Ezcater/RspecRequireHttpStatusMatcher` cop.
|
132
163
|
- Enable `Rails/HttpStatus` cop and enforce symbols.
|
133
164
|
|
134
165
|
## v0.57.0
|
166
|
+
|
135
167
|
- Update to rubocop v0.57.2 and rubocop-rspec v1.27.0.
|
136
168
|
- Disable new cop `Naming/MemoizedInstanceVariableName` until configuration
|
137
169
|
options are available.
|
@@ -142,100 +174,128 @@ Prior to v1.0.0 this gem was versioned based on the `MAJOR`.`MINOR` version of R
|
|
142
174
|
- Exclude appraisal generated gemfiles for gems.
|
143
175
|
|
144
176
|
## v0.52.8
|
177
|
+
|
145
178
|
- Add new configuration `rubocop_gem` for use with gems.
|
146
179
|
|
147
180
|
## v0.52.7
|
181
|
+
|
148
182
|
- Enable `Style/FrozenStringLiteralComment` with the `when_needed` style.
|
149
183
|
|
150
184
|
## v0.52.6
|
185
|
+
|
151
186
|
- Configure `Style/TrailingCommaInLiteral` with `consistent_comma` style.
|
152
187
|
|
153
188
|
## v0.52.5
|
189
|
+
|
154
190
|
- Add `Ezcater/RspecMatchOrderedArray` cop.
|
155
191
|
- Fix array equality matcher violations in specs.
|
156
192
|
|
157
193
|
## v0.52.4
|
194
|
+
|
158
195
|
- Configure `Style/RegexpLiteral` cop with the `AllowInnerSlashes: true` option.
|
159
196
|
|
160
197
|
## v0.52.3
|
198
|
+
|
161
199
|
- Disable `Style/GuardClause` cop.
|
162
200
|
- Exclude `spec/integrations` for `RSpec/DescribeClass`.
|
163
201
|
|
164
202
|
## v0.52.2
|
203
|
+
|
165
204
|
- Disable `Style/IfUnlessModifier` cop.
|
166
205
|
|
167
206
|
## v0.52.1
|
207
|
+
|
168
208
|
- Allow staging as a rails environment for the Rails/UnknownEnv cop.
|
169
209
|
|
170
210
|
## v0.52.0
|
211
|
+
|
171
212
|
- Update to rubocop v0.52.1 and rubocop-rspec v1.22.2.
|
172
213
|
|
173
214
|
## v0.51.8
|
215
|
+
|
174
216
|
- Disable `RSpec/LetSetup` cop.
|
175
217
|
|
176
218
|
## v0.51.7
|
219
|
+
|
177
220
|
- Rename `Ezcater/RspecRequireGqlErrorHelpers` cop to `Ezcater/RequireGqlErrorHelpers`.
|
178
221
|
|
179
222
|
## v0.51.6
|
223
|
+
|
180
224
|
- Add `Ezcater/RailsConfiguration` cop.
|
181
225
|
- Exclude `config/environments/*.rb` for the `Metrics/BlockLength` cop.
|
182
226
|
|
183
227
|
## v0.51.5
|
228
|
+
|
184
229
|
- Add `Ezcater/RspecRequireGqlErrorHelpers` cop.
|
185
230
|
|
186
231
|
## v0.51.4
|
232
|
+
|
187
233
|
- Exclude `Gemfile` for the `Metrics/LineLength` cop.
|
188
234
|
- Add `system` to the excluded spec directories for `RSpec/DescribeClass`.
|
189
235
|
|
190
236
|
## v0.51.3
|
237
|
+
|
191
238
|
- Configure `RSpec/DescribeClass` to exclude the spec directories which
|
192
239
|
are excluded by explicit metadata.
|
193
240
|
- Exclude `lib/tasks` for the `Metrics/BlockLength` cop.
|
194
241
|
|
195
242
|
## v0.51.2
|
243
|
+
|
196
244
|
- Configure `Style/RaiseArgs` to use the `compact` style.
|
197
245
|
|
198
246
|
## v0.51.1
|
247
|
+
|
199
248
|
- Disable `Rails/FilePath` cop.
|
200
249
|
- Disable `Style/EmptyLiteral` cop.
|
201
250
|
|
202
251
|
## v0.51.0
|
252
|
+
|
203
253
|
- Update to rubocop v0.51.0 and rubocop-rspec v1.20.0.
|
204
254
|
- Disable new cop `RSpec/ContextWording`.
|
205
255
|
- Disable `Style/StderrPuts` for `bin/yarn`.
|
206
256
|
|
207
257
|
## v0.50.5
|
258
|
+
|
208
259
|
- Configure `RSpec/NestedGroups` with a `Max` value of 5.
|
209
260
|
|
210
261
|
## v0.50.4
|
262
|
+
|
211
263
|
- Configure `Style/PercentLiteralDelimiters` to prefer parentheses.
|
212
264
|
|
213
265
|
## v0.50.3
|
266
|
+
|
214
267
|
- Configure `RSpec/MultipleExpectations` with a `Max` value of 5.
|
215
268
|
|
216
269
|
## v0.50.2
|
270
|
+
|
217
271
|
- Add `Ezcater/PrivateAttr` custom cop.
|
218
272
|
- Configure `RSpec/ExampleLength` with a `Max` value of 25.
|
219
273
|
- Add `circle_rubocop.rb` script.
|
220
274
|
|
221
275
|
## v0.50.1
|
276
|
+
|
222
277
|
- Add shared configuration.
|
223
278
|
- Do not apply `Ezcater/StyleDig` to access using a range.
|
224
279
|
|
225
280
|
## v0.50.0
|
281
|
+
|
226
282
|
- Update to rubocop v0.50.0 and rubocop-rspec v1.18.0.
|
227
283
|
- Do not apply `Ezcater/StyleDig` to assignments with nested access.
|
228
284
|
|
229
285
|
# v0.49.3
|
286
|
+
|
230
287
|
- Do not apply `Ezcater/StyleDig` to access using a range.
|
231
288
|
|
232
289
|
# v0.49.2
|
290
|
+
|
233
291
|
- Do not apply `Ezcater/StyleDig` to assignments to with nested access.
|
234
292
|
|
235
293
|
## v0.49.1
|
294
|
+
|
236
295
|
- Add `Ezcater/RspecRequireBrowserMock` cop.
|
237
296
|
|
238
297
|
## v0.49.0
|
298
|
+
|
239
299
|
- Initial release.
|
240
300
|
- Add `Ezcater/RspecRequireFeatureFlagMock` cop.
|
241
301
|
- Add `Ezcater/RspecDotNotSelfDot` cop.
|
data/README.md
CHANGED
@@ -61,11 +61,11 @@ configuration for existing offenses and auto-correction.
|
|
61
61
|
|
62
62
|
This gem contains a script, `circle_rubocop.rb`, that can be used to run RuboCop in CI.
|
63
63
|
|
64
|
-
The behavior of the script is that all files are checked on
|
65
|
-
configuration has changed. On non-
|
64
|
+
The behavior of the script is that all files are checked on main or if the rubocop
|
65
|
+
configuration has changed. On non-main branches, only the files added or changed on
|
66
66
|
the branch are checked.
|
67
67
|
|
68
|
-
For non-
|
68
|
+
For non-main branches, `[rubocop skip]` can be included in the commit message to skip
|
69
69
|
running rubocop.
|
70
70
|
|
71
71
|
## Versioning
|
@@ -74,15 +74,15 @@ This gem is using [Semantic Versioning](https://semver.org/). All version bumps
|
|
74
74
|
|
75
75
|
## Custom Cops
|
76
76
|
|
77
|
-
1. [RailsConfiguration](https://github.com/ezcater/ezcater_rubocop/blob/
|
78
|
-
1. [RequireGqlErrorHelpers](https://github.com/ezcater/ezcater_rubocop/blob/
|
79
|
-
1. [RspecDotNotSelfDot](https://github.com/ezcater/ezcater_rubocop/blob/
|
80
|
-
1. [RspecMatchOrderedArray](https://github.com/ezcater/ezcater_rubocop/blob/
|
81
|
-
1. [RspecRequireBrowserMock](https://github.com/ezcater/ezcater_rubocop/blob/
|
82
|
-
1. [RspecRequireFeatureFlagMock](https://github.com/ezcater/ezcater_rubocop/blob/
|
83
|
-
1. [RspecRequireHttpStatusMatcher](https://github.com/ezcater/ezcater_rubocop/blob/
|
84
|
-
1. [StyleDig](https://github.com/ezcater/ezcater_rubocop/blob/
|
85
|
-
1. [GraphqlFieldsNaming](https://github.com/ezcater/ezcater_rubocop/blob/
|
77
|
+
1. [RailsConfiguration](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/rails_configuration.rb) - Enforce use of `Rails.configuration` instead of `Rails.application.config`.
|
78
|
+
1. [RequireGqlErrorHelpers](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/require_gql_error_helpers.rb) - Use the helpers provided by `GQLErrors` instead of raising `GraphQL::ExecutionError` directly.
|
79
|
+
1. [RspecDotNotSelfDot](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/rspec_dot_not_self_dot.rb) - Enforce ".<class method>" instead of "self.<class method>" and "::<class method>" for example group description.
|
80
|
+
1. [RspecMatchOrderedArray](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/rspec_match_ordered_array.rb) - Enforce use of `match_ordered_array` matcher instead of `eq` matcher. This matcher comes from the [ezcater_matchers](https://github.com/ezcater/ezcater_matchers) gem.
|
81
|
+
1. [RspecRequireBrowserMock](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/rspec_require_browser_mock.rb) - Enforce use of `mock_ezcater_app`, `mock_chrome_browser` & `mock_custom_browser` helpers instead of mocking `Browser` or `EzBrowser` directly.
|
82
|
+
1. [RspecRequireFeatureFlagMock](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/rspec_require_feature_flag_mock.rb) - Enforce use of `mock_feature_flag` helper instead of mocking `FeatureFlag.is_active?` directly.
|
83
|
+
1. [RspecRequireHttpStatusMatcher](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/rspec_require_http_status_matcher.rb) - Use the HTTP status code matcher, like `expect(response).to have_http_status :bad_request`, rather than `expect(response.code).to eq 400`
|
84
|
+
1. [StyleDig](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/style_dig.rb) - Recommend `dig` for deeply nested access.
|
85
|
+
1. [GraphqlFieldsNaming](https://github.com/ezcater/ezcater_rubocop/blob/main/lib/rubocop/cop/ezcater/graphql_fields_naming.rb) - Enforce the configured style when naming graphQL fields and arguments.
|
86
86
|
|
87
87
|
## Development
|
88
88
|
|
data/bin/circle_rubocop.rb
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
require "English"
|
5
5
|
|
6
6
|
# This script is used to run Rubocop in CircleCI so that on branches only
|
7
|
-
# the changed files are checked and on
|
7
|
+
# the changed files are checked and on main all files are checked.
|
8
8
|
#
|
9
9
|
# Additionally if rubocop configuration is changed, all files are checked, and
|
10
|
-
# if the commit description on a non-
|
10
|
+
# if the commit description on a non-main branch includes [rubocop skip]
|
11
11
|
# then rubocop is skipped.
|
12
12
|
|
13
13
|
def run(command)
|
@@ -20,7 +20,7 @@ def rubocop_everything
|
|
20
20
|
end
|
21
21
|
|
22
22
|
begin
|
23
|
-
if ENV["CIRCLE_BRANCH"] == "
|
23
|
+
if ENV["CIRCLE_BRANCH"] == "main"
|
24
24
|
rubocop_everything
|
25
25
|
else
|
26
26
|
git_commit_desc = `git log --format=%B -n 1 $CIRCLE_SHA1`
|
@@ -30,7 +30,7 @@ begin
|
|
30
30
|
exit 0
|
31
31
|
end
|
32
32
|
|
33
|
-
changed_files = `git diff --diff-filter=d --name-only origin/
|
33
|
+
changed_files = `git diff --diff-filter=d --name-only origin/main...$CIRCLE_BRANCH`.split("\n").join(" ")
|
34
34
|
raise "Failed to identify changed files" unless $CHILD_STATUS.success?
|
35
35
|
|
36
36
|
if changed_files.strip.empty? || changed_files.include?(".rubocop")
|
data/ezcater_rubocop.gemspec
CHANGED
@@ -44,15 +44,15 @@ Gem::Specification.new do |spec|
|
|
44
44
|
|
45
45
|
spec.required_ruby_version = ">= 2.6"
|
46
46
|
|
47
|
-
spec.add_development_dependency "bundler"
|
47
|
+
spec.add_development_dependency "bundler"
|
48
48
|
spec.add_development_dependency "pry-byebug"
|
49
|
-
spec.add_development_dependency "rake", "~>
|
50
|
-
spec.add_development_dependency "rspec", "~> 3.
|
49
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
50
|
+
spec.add_development_dependency "rspec", "~> 3.11"
|
51
51
|
spec.add_development_dependency "rspec_junit_formatter"
|
52
|
-
spec.add_development_dependency "simplecov"
|
52
|
+
spec.add_development_dependency "simplecov"
|
53
53
|
|
54
|
-
spec.add_runtime_dependency "parser", "
|
55
|
-
spec.add_runtime_dependency "rubocop", "
|
56
|
-
spec.add_runtime_dependency "rubocop-rails", "
|
57
|
-
spec.add_runtime_dependency "rubocop-rspec", "
|
54
|
+
spec.add_runtime_dependency "parser", ">= 2.6"
|
55
|
+
spec.add_runtime_dependency "rubocop", ">= 1.16.0", "< 2.0"
|
56
|
+
spec.add_runtime_dependency "rubocop-rails", ">= 2.10.1", "< 3.0"
|
57
|
+
spec.add_runtime_dependency "rubocop-rspec", ">= 2.3.0", "< 3.0"
|
58
58
|
end
|
@@ -35,8 +35,8 @@ module RuboCop
|
|
35
35
|
%w(it specify example scenario).map { |identifier| "#{prefix}#{identifier}" }
|
36
36
|
end.flatten + %w(its focus skip)).freeze
|
37
37
|
|
38
|
-
SELF_DOT_REGEXP = /\Aself\./.freeze
|
39
|
-
COLON_COLON_REGEXP = /\A(\:\:)/.freeze
|
38
|
+
SELF_DOT_REGEXP = /\Aself\./.freeze # rubocop:disable Style/RedundantFreeze
|
39
|
+
COLON_COLON_REGEXP = /\A(\:\:)/.freeze # rubocop:disable Style/RedundantFreeze
|
40
40
|
|
41
41
|
SELF_DOT_MSG = 'Use ".<class method>" instead of "self.<class method>" for example group description.'
|
42
42
|
COLON_COLON_MSG = 'Use ".<class method>" instead of "::<class method>" for example group description.'
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ezcater_rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ezCater, Inc
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '0'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry-byebug
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,28 +44,28 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '13.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '13.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '3.
|
61
|
+
version: '3.11'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '3.
|
68
|
+
version: '3.11'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rspec_junit_formatter
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,72 +84,90 @@ dependencies:
|
|
84
84
|
name: simplecov
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 0
|
89
|
+
version: '0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- - "
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0
|
96
|
+
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: parser
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - "
|
101
|
+
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 2.
|
103
|
+
version: '2.6'
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- - "
|
108
|
+
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 2.
|
110
|
+
version: '2.6'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: rubocop
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- - "
|
115
|
+
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: 1.16.0
|
118
|
+
- - "<"
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '2.0'
|
118
121
|
type: :runtime
|
119
122
|
prerelease: false
|
120
123
|
version_requirements: !ruby/object:Gem::Requirement
|
121
124
|
requirements:
|
122
|
-
- - "
|
125
|
+
- - ">="
|
123
126
|
- !ruby/object:Gem::Version
|
124
127
|
version: 1.16.0
|
128
|
+
- - "<"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '2.0'
|
125
131
|
- !ruby/object:Gem::Dependency
|
126
132
|
name: rubocop-rails
|
127
133
|
requirement: !ruby/object:Gem::Requirement
|
128
134
|
requirements:
|
129
|
-
- - "
|
135
|
+
- - ">="
|
130
136
|
- !ruby/object:Gem::Version
|
131
137
|
version: 2.10.1
|
138
|
+
- - "<"
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '3.0'
|
132
141
|
type: :runtime
|
133
142
|
prerelease: false
|
134
143
|
version_requirements: !ruby/object:Gem::Requirement
|
135
144
|
requirements:
|
136
|
-
- - "
|
145
|
+
- - ">="
|
137
146
|
- !ruby/object:Gem::Version
|
138
147
|
version: 2.10.1
|
148
|
+
- - "<"
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '3.0'
|
139
151
|
- !ruby/object:Gem::Dependency
|
140
152
|
name: rubocop-rspec
|
141
153
|
requirement: !ruby/object:Gem::Requirement
|
142
154
|
requirements:
|
143
|
-
- - "
|
155
|
+
- - ">="
|
144
156
|
- !ruby/object:Gem::Version
|
145
157
|
version: 2.3.0
|
158
|
+
- - "<"
|
159
|
+
- !ruby/object:Gem::Version
|
160
|
+
version: '3.0'
|
146
161
|
type: :runtime
|
147
162
|
prerelease: false
|
148
163
|
version_requirements: !ruby/object:Gem::Requirement
|
149
164
|
requirements:
|
150
|
-
- - "
|
165
|
+
- - ">="
|
151
166
|
- !ruby/object:Gem::Version
|
152
167
|
version: 2.3.0
|
168
|
+
- - "<"
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: '3.0'
|
153
171
|
description: ezCater custom cops and shared configuration
|
154
172
|
email:
|
155
173
|
- engineering@ezcater.com
|
@@ -193,7 +211,7 @@ licenses:
|
|
193
211
|
- MIT
|
194
212
|
metadata:
|
195
213
|
allowed_push_host: https://rubygems.org
|
196
|
-
post_install_message:
|
214
|
+
post_install_message:
|
197
215
|
rdoc_options: []
|
198
216
|
require_paths:
|
199
217
|
- lib
|
@@ -208,8 +226,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
226
|
- !ruby/object:Gem::Version
|
209
227
|
version: '0'
|
210
228
|
requirements: []
|
211
|
-
rubygems_version: 3.
|
212
|
-
signing_key:
|
229
|
+
rubygems_version: 3.3.7
|
230
|
+
signing_key:
|
213
231
|
specification_version: 4
|
214
232
|
summary: ezCater custom cops and shared configuration
|
215
233
|
test_files: []
|