ezcater_rubocop 6.1.1 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/conf/rubocop.yml +3 -0
- data/conf/rubocop_gem.yml +1 -1
- data/ezcater_rubocop.gemspec +1 -1
- data/lib/ezcater_rubocop/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91e99b541defc66ad56b00dc87df189f3ae1794269719f46701a44998b3438a1
|
4
|
+
data.tar.gz: d00dbef72d5716d0c9fc1493bc1eeaf028eb222962a2d7a2553afa6c8eb04749
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/conf/rubocop_gem.yml
CHANGED
data/ezcater_rubocop.gemspec
CHANGED
@@ -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 = ">=
|
45
|
+
spec.required_ruby_version = ">= 3.1"
|
46
46
|
|
47
47
|
spec.add_development_dependency "bundler"
|
48
48
|
spec.add_development_dependency "pry-byebug"
|
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:
|
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-
|
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: '
|
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: []
|