ezcater_rubocop 1.0.0 → 1.0.1
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 +5 -0
- data/conf/rubocop_rails.yml +6 -0
- data/ezcater_rubocop.gemspec +1 -1
- data/lib/ezcater_rubocop/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28386b6bb2fcaccea44c4bfc81bbbf6643ce22f5703a14ca75b54d91625d9ee8
|
|
4
|
+
data.tar.gz: e801eb45885d38e9aa79d511bd4abc643ace723d5d22b6c19f80c702c72a83f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6efba78564b478e5ab159e372216253754dbe78878194d2af92222a9eb0d225a53d164be66ee12a971ae13e2eb9f70e52919e2c8fa3f06a432125c24673c7341
|
|
7
|
+
data.tar.gz: c590e87d277fb5e49bb6b5a6e96dd1de0ef433f317a668186352864c1c3fec9c86e57ff6db2a8dcc93385c227e21c2a3e7c3451782e0887d79700eecd1026ae3
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ This gem is moving onto its own [Semantic Versioning](https://semver.org/) schem
|
|
|
7
7
|
Prior to v1.0.0 this gem was versioned based on the `MAJOR`.`MINOR` version of RuboCop. The first release of the
|
|
8
8
|
ezcater_rubocop gem was `v0.49.0`.
|
|
9
9
|
|
|
10
|
+
## v1.0.1
|
|
11
|
+
|
|
12
|
+
- Disable `Rails/HasAndBelongsToMany` cop.
|
|
13
|
+
- Disable `Style/DoubleNegation` cop.
|
|
14
|
+
|
|
10
15
|
## v1.0.0
|
|
11
16
|
|
|
12
17
|
- Begin using Semantic Versioning
|
data/conf/rubocop_rails.yml
CHANGED
|
@@ -19,11 +19,17 @@ Rails:
|
|
|
19
19
|
Rails/FilePath:
|
|
20
20
|
Enabled: false
|
|
21
21
|
|
|
22
|
+
Rails/HasAndBelongsToMany:
|
|
23
|
+
Enabled: false
|
|
24
|
+
|
|
22
25
|
Rails/RelativeDateConstant:
|
|
23
26
|
# Auto-correct is broken for this cops in some cases. It replaces the
|
|
24
27
|
# constant but does not update references to it.
|
|
25
28
|
AutoCorrect: false
|
|
26
29
|
|
|
30
|
+
Style/DoubleNegation:
|
|
31
|
+
Enabled: false
|
|
32
|
+
|
|
27
33
|
Style/MixinUsage:
|
|
28
34
|
Exclude:
|
|
29
35
|
- "bin/**/*"
|
data/ezcater_rubocop.gemspec
CHANGED
|
@@ -44,7 +44,7 @@ Gem::Specification.new do |spec|
|
|
|
44
44
|
|
|
45
45
|
spec.add_development_dependency "bundler", "~> 1.15"
|
|
46
46
|
spec.add_development_dependency "pry-byebug"
|
|
47
|
-
spec.add_development_dependency "rake", "~>
|
|
47
|
+
spec.add_development_dependency "rake", "~> 12.3"
|
|
48
48
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
49
49
|
spec.add_development_dependency "rspec_junit_formatter"
|
|
50
50
|
spec.add_development_dependency "simplecov"
|
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: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ezCater, Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -44,14 +44,14 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
47
|
+
version: '12.3'
|
|
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: '12.3'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -187,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
187
|
version: '0'
|
|
188
188
|
requirements: []
|
|
189
189
|
rubyforge_project:
|
|
190
|
-
rubygems_version: 2.7.
|
|
190
|
+
rubygems_version: 2.7.9
|
|
191
191
|
signing_key:
|
|
192
192
|
specification_version: 4
|
|
193
193
|
summary: ezCater custom cops and shared configuration
|