makandra-rubocop 9.0.1 → 9.1.0

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: 5fc766e72368000128b863c1f0aca807e2d7259308e5bc1c6392d893106cab47
4
- data.tar.gz: cd12ff0209d36814d063ac92983dda909e3ae162e16a671f9624c5042b046914
3
+ metadata.gz: 7c2a750eaabc48236dfa0d947d3a5fceb65c3a1806f607e6e3c25af41099db69
4
+ data.tar.gz: cf732ed1e6289c588451c258017ee36ac681051f4c663279ab8f9525ba5e8103
5
5
  SHA512:
6
- metadata.gz: 7c901ce2b81973347ae2aea0163d6efdd9453205492ae25702cd121d970a7f653cd1e607635fb699491afc7c60cc5ea3c5d6fc574983fb7d71d996242c81052f
7
- data.tar.gz: 5cfd0c7316c94f8babe8a154a9072445cf8ab85abc5318df03186ba633ba8cef6c55c265c8e532704612e527367d2232f6ec9950813cfa7d84154d5981530802
6
+ metadata.gz: 290c0cfb56bab6c05362b62c7ccee4db37788a1d682b1747af9b9270b4b3020efa77019bad5bb67721632e00003ae0de982dea6201daf6d60553672886828c56
7
+ data.tar.gz: 6d61a615a1c82fab8cff6c1d4dcef7a584af6396f7399e01cdc39382f80a24672053e145dce0060e57f97b2fdaa48a1da01a69594c505ec1b391e0f9d23724ad
data/CHANGELOG.md CHANGED
@@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
9
9
  ### Compatible changes
10
10
 
11
11
 
12
+ ## 9.1.0 - 2022-04-22
13
+
14
+ ### Compatible changes
15
+
16
+ - Disable `Naming/BlockForwarding` (#37)
17
+ - Change `Style/HashSyntax` from `EnforcedShorthandSyntax` `always` to `either` (#36)
18
+
19
+
12
20
  ## 9.0.1 - 2022-03-09
13
21
 
14
22
  ### Compatible changes
data/config/default.yml CHANGED
@@ -2494,7 +2494,7 @@ Naming/BinaryOperatorParameterName:
2494
2494
  Naming/BlockForwarding:
2495
2495
  Description: 'Use anonymous block forwarding.'
2496
2496
  StyleGuide: '#block-forwarding'
2497
- Enabled: pending
2497
+ Enabled: false # Voted for this in https://github.com/makandra/makandra-rubocop/issues/37
2498
2498
  VersionAdded: '1.24'
2499
2499
  EnforcedStyle: anonymous
2500
2500
  SupportedStyles:
@@ -3703,7 +3703,7 @@ Style/HashSyntax:
3703
3703
  # enforces both ruby19 and no_mixed_keys styles
3704
3704
  - ruby19_no_mixed_keys
3705
3705
  # Force hashes that have a hash value omission
3706
- EnforcedShorthandSyntax: always
3706
+ EnforcedShorthandSyntax: either # Voted in this issue https://github.com/makandra/makandra-rubocop/issues/36, but open for re-evaluation at a later point in time.
3707
3707
  SupportedShorthandSyntax:
3708
3708
  # forces use of the 3.1 syntax (e.g. {foo:}) when the hash key and value are the same.
3709
3709
  - always
@@ -1,3 +1,3 @@
1
1
  module MakandraRubocop
2
- VERSION = '9.0.1'.freeze
2
+ VERSION = '9.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makandra-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.1
4
+ version: 9.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arne Hartherz
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-03-09 00:00:00.000000000 Z
12
+ date: 2022-04-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop