ezcater_rubocop 6.1.1 → 7.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: 26eaaa7f867ad999360777e40da32e1a0e591e4906e4fadc9b23a4fb70189b94
4
- data.tar.gz: 8d9fa27414f264d03cc0f5a15146aa563d23bbfdc9eddfb031fbddbe7557a617
3
+ metadata.gz: 91e99b541defc66ad56b00dc87df189f3ae1794269719f46701a44998b3438a1
4
+ data.tar.gz: d00dbef72d5716d0c9fc1493bc1eeaf028eb222962a2d7a2553afa6c8eb04749
5
5
  SHA512:
6
- metadata.gz: 3fa02d546b7ce79d540d1d079937d36622635e3c2ddf800544ade72924ea9520ec1f592957653d20ec156fea1f042c49519487999a2da00ddcdfc7b15b46fcfe
7
- data.tar.gz: f3869c5b24b6b8ae92878a10185e6403ce937d027c9b7eb8bd52f2a97fd6f402e443c86119039b44444d70ac2a1ebcb889f851ca589c34499b12503939e5ab56
6
+ metadata.gz: e634c40c10c8758ff9c668be962c07e77ae28b6dc3af9b343c60414d2fe3c4b28b6ae59b84c213c9d6588c2d1d4fb6ad353717ef225e5c7896040212e167c73c
7
+ data.tar.gz: 0366c568bac8878bb85faa4f8b5003882efee38356b74d981bef19e7745e3b63fc6fd1accfdb9f9420036d1d9e609ef3b830121a89ab91068ee1ca304f5921bd
data/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ 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
+ ## 7.0.0
10
+
11
+ - Drop support for ruby 2.6 & 3.0
12
+
13
+ ## 6.1.2
14
+
15
+ - Disable `Naming/RescuedExceptionsVariableName` so exception variable names are less restrictive.
16
+
17
+
9
18
  ## 6.1.1
10
19
 
11
20
  - Lock `rubocop-rspec` below `v2.28.0` to avoid an upstream namespacing issue.
data/conf/rubocop.yml CHANGED
@@ -50,6 +50,9 @@ Naming/MethodParameterName:
50
50
  - ex
51
51
  - id
52
52
 
53
+ Naming/RescuedExceptionsVariableName:
54
+ Enabled: false
55
+
53
56
  Naming/VariableNumber:
54
57
  Enabled: false
55
58
 
data/conf/rubocop_gem.yml CHANGED
@@ -2,7 +2,7 @@ inherit_from:
2
2
  - ../conf/rubocop.yml
3
3
 
4
4
  AllCops:
5
- TargetRubyVersion: 2.6
5
+ TargetRubyVersion: 3.1
6
6
  Exclude:
7
7
  - 'vendor/bundle/**/*'
8
8
  - 'gemfiles/vendor/**/*'
@@ -42,7 +42,7 @@ Gem::Specification.new do |spec|
42
42
  spec.executables << "circle_rubocop.rb"
43
43
  spec.require_paths = ["lib"]
44
44
 
45
- spec.required_ruby_version = ">= 2.6"
45
+ spec.required_ruby_version = ">= 3.1"
46
46
 
47
47
  spec.add_development_dependency "bundler"
48
48
  spec.add_development_dependency "pry-byebug"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EzcaterRubocop
4
- VERSION = "6.1.1"
4
+ VERSION = "7.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: 6.1.1
4
+ version: 7.0.0
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: 2024-04-04 00:00:00.000000000 Z
11
+ date: 2024-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -235,7 +235,7 @@ licenses:
235
235
  - MIT
236
236
  metadata:
237
237
  allowed_push_host: https://rubygems.org
238
- post_install_message:
238
+ post_install_message:
239
239
  rdoc_options: []
240
240
  require_paths:
241
241
  - lib
@@ -243,7 +243,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
243
243
  requirements:
244
244
  - - ">="
245
245
  - !ruby/object:Gem::Version
246
- version: '2.6'
246
+ version: '3.1'
247
247
  required_rubygems_version: !ruby/object:Gem::Requirement
248
248
  requirements:
249
249
  - - ">="
@@ -251,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
251
251
  version: '0'
252
252
  requirements: []
253
253
  rubygems_version: 3.3.7
254
- signing_key:
254
+ signing_key:
255
255
  specification_version: 4
256
256
  summary: ezCater custom cops and shared configuration
257
257
  test_files: []