autocop 0.1.3 → 0.1.4
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/.autocop-rubocop.yml +0 -8
- data/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/lib/autocop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 214a8af01de4bdbfa7b987471c5ec833c5b64652bef001fca5067bf2076c2f7c
|
|
4
|
+
data.tar.gz: 550301b3db55a04d8225e6a1d689d7f090988edbc237c39ffeb116a614dca630
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e2dbfdae22a85108febf005f6109edd1b6aa0bd631129fbd336d91881d6ddc14edbc21ceab3de6df123f154ea80cb90d7343cd13d9f13e9bf619756958e3af5
|
|
7
|
+
data.tar.gz: a32660e9dd8393774e215a659b7d5e6324cb5f6dc4d1e0618f115ca69cc582202920851eec87d8bc844fd63532c94bdebc5611d917173220023a1e4caf9aab38
|
data/.autocop-rubocop.yml
CHANGED
|
@@ -353,14 +353,6 @@ Performance/FlatMap:
|
|
|
353
353
|
Enabled: true
|
|
354
354
|
EnabledForFlattenWithoutParams: false
|
|
355
355
|
|
|
356
|
-
# Supports --auto-correct
|
|
357
|
-
Performance/HashEachMethods:
|
|
358
|
-
Description: Use `Hash#each_key` and `Hash#each_value` instead of `Hash#keys.each`
|
|
359
|
-
and `Hash#values.each`.
|
|
360
|
-
StyleGuide: https://github.com/bbatsov/ruby-style-guide#hash-each
|
|
361
|
-
Enabled: true
|
|
362
|
-
AutoCorrect: false
|
|
363
|
-
|
|
364
356
|
# Supports --auto-correct
|
|
365
357
|
Performance/LstripRstrip:
|
|
366
358
|
Description: Use `strip` instead of `lstrip.rstrip`.
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## v0.1.4 - 2018-03-27
|
|
2
|
+
|
|
3
|
+
- Performance/HashEachMethods removed
|
|
4
|
+
|
|
5
|
+
## v0.1.3 - 2018-03-27
|
|
6
|
+
|
|
7
|
+
- Remove old lint cops that are under layout now
|
|
8
|
+
- Break out trailing comma cops for hash and array
|
|
9
|
+
|
|
1
10
|
## v0.1.2 - 2018-03-07
|
|
2
11
|
|
|
3
12
|
- Relax ruby version to >= 2.2 for now
|
data/Gemfile.lock
CHANGED
data/lib/autocop/version.rb
CHANGED