ezcater_rubocop 2.1.0 → 2.2.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 +5 -5
- data/CHANGELOG.md +4 -0
- data/conf/rubocop_gem.yml +1 -0
- data/ezcater_rubocop.gemspec +2 -0
- data/lib/ezcater_rubocop/version.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: be105a0d50d96f787a2dcface6a8850d0754c975a224489755a78107bd387a01
|
|
4
|
+
data.tar.gz: 263a7bde454086d6171fefede0684aa035b2564fe5ab7e56dd901cbc7379e925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae30e082ef82f070eeb11994a10f852e846590799ade95b3e85d87668386c41fe107dd81aa2bb688453dc8369b72ce044be59c231667ce8cf1a6bfe83fd4df27
|
|
7
|
+
data.tar.gz: 58fa9015aecefd84a3986203a98ff9c10edb1ec72658c2392ac88ba5a771997a4aa08477eb56a062063c24afddfd826285914e104b03bdda7455e9c55621004b
|
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
|
+
## v2.2.0
|
|
10
|
+
- Require Ruby 2.6 or later.
|
|
11
|
+
- Set `TargetRubyVersion` to 2.6 in `rubocop_gem` configuration.
|
|
12
|
+
|
|
9
13
|
## v2.1.0
|
|
10
14
|
- Enable `Rails/SaveBang` with `AllowImplicitReturn: false`, and with autocorrection disabled.
|
|
11
15
|
|
data/conf/rubocop_gem.yml
CHANGED
data/ezcater_rubocop.gemspec
CHANGED
|
@@ -42,6 +42,8 @@ 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"
|
|
46
|
+
|
|
45
47
|
spec.add_development_dependency "bundler", "~> 2.1"
|
|
46
48
|
spec.add_development_dependency "pry-byebug"
|
|
47
49
|
spec.add_development_dependency "rake", "~> 12.3"
|
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: 2.
|
|
4
|
+
version: 2.2.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:
|
|
11
|
+
date: 2021-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -199,15 +199,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
199
199
|
requirements:
|
|
200
200
|
- - ">="
|
|
201
201
|
- !ruby/object:Gem::Version
|
|
202
|
-
version: '
|
|
202
|
+
version: '2.6'
|
|
203
203
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
204
|
requirements:
|
|
205
205
|
- - ">="
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
207
|
version: '0'
|
|
208
208
|
requirements: []
|
|
209
|
-
|
|
210
|
-
rubygems_version: 2.6.11
|
|
209
|
+
rubygems_version: 3.1.6
|
|
211
210
|
signing_key:
|
|
212
211
|
specification_version: 4
|
|
213
212
|
summary: ezCater custom cops and shared configuration
|