ezcater_rubocop 0.57.0.rc1 → 0.57.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c0207ff525e0458afbf4a876325e6deed0cd53462d0faa25f60aaaa0fb7fc1f
4
- data.tar.gz: 84c4926af047181929f2e8af991342958e48085db27aeb22a972a6c9aac642c9
3
+ metadata.gz: 9aaf4bd27092a80ebfe0c357b3556ddc21aad897a7086dda24030291c6566321
4
+ data.tar.gz: 80d0bcb18433b0b21919959954d9673a86cc56a772b90096bda8a738ecdf0e85
5
5
  SHA512:
6
- metadata.gz: 62eab559f416f6464d7c93170410eacc886c7a6eed3ece93010a9036b32e3da8a4d3df05f622e8dbf63262cc7963522cde3c5577f8927e95debc1bec75bf73a1
7
- data.tar.gz: a5b2e96009d1c80a3ecea6d363bc77dc84db2eb0ff80b4937a0d71ade2dd90f18a4e379af03800cba192112e268003c7c1f36ee2e98c8bee748df472454647e5
6
+ metadata.gz: 31819c1b5919e3d28fec2012679b2de8f41827e0bfc2376ec65c9b8b3d205270608ef6cca4e1e943086ec9725b9297e913d8b2ac48ad73bde47a3674a358b348
7
+ data.tar.gz: 0f18124ce066322f9acd18ac29ccc3a00339d20869d9d98a13897e10c4a40451ba2f0efd5f79a7994c0822fb6f12912f9b09436ac5dad7545c37e10b9ec57c36
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@
4
4
  - Update to rubocop v0.57.2 and rubocop-rspec v1.27.0.
5
5
  - Disable new cop `Naming/MemoizedInstanceVariableName` until configuration
6
6
  options are available.
7
+ - Disable `FactoryBot/DynamicAttributeDefinedStatically` due to
8
+ https://github.com/rubocop-hq/rubocop-rspec/issues/655.
9
+ - Configure `Naming/UncommunicativeMethodParamName` to allow `e, ex, id`
10
+ param names.
7
11
 
8
12
  ## v0.52.8
9
13
  - Add new configuration `rubocop_gem` for use with gems.
data/conf/rubocop.yml CHANGED
@@ -3,6 +3,11 @@ require: ezcater_rubocop
3
3
  AllCops:
4
4
  DisplayCopNames: true
5
5
 
6
+ # This is a useful cop but produces some false positives and can break code:
7
+ # https://github.com/rubocop-hq/rubocop-rspec/issues/655
8
+ FactoryBot/DynamicAttributeDefinedStatically:
9
+ Enabled: false
10
+
6
11
  Layout/DotPosition:
7
12
  EnforcedStyle: trailing
8
13
 
@@ -36,6 +41,12 @@ Metrics/PerceivedComplexity:
36
41
  Naming/MemoizedInstanceVariableName:
37
42
  Enabled: false
38
43
 
44
+ Naming/UncommunicativeMethodParamName:
45
+ AllowedNames:
46
+ - e
47
+ - ex
48
+ - id
49
+
39
50
  Rails:
40
51
  Enabled: false
41
52
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EzcaterRubocop
4
- VERSION = "0.57.0.rc1"
4
+ VERSION = "0.57.0.rc2"
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: 0.57.0.rc1
4
+ version: 0.57.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ezCater, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-20 00:00:00.000000000 Z
11
+ date: 2018-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler