barsoom_utils 0.2.0.68 → 0.2.0.69
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/VERSION +1 -1
- data/shared_rubocop.yml +7 -0
- 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: 2df28ca0456cc2b6fb3a63a143b7a77cfcbf793e41e0a0e47f0591da2a4c7608
|
|
4
|
+
data.tar.gz: 18a16615878569f7a637603134b5f776aee30cf2643a133a26ba5cf2cf633615
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b297521965ef6b55ee416ac935d53efe4fe862cd6918484ba06d97967361efde1c433f3102ab8c507d71292fab1c4b2c7b03eff57b165df2a24e736f50392d97
|
|
7
|
+
data.tar.gz: 3dc3bceaadec2ce06223e6922a3dbea4d8462b36ea369a6c751fab377185d866dcc96ab77cdf230f4ffefdc04fd106157a8b280f0c43915042fe57ae348815f1
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.0.
|
|
1
|
+
0.2.0.69
|
data/shared_rubocop.yml
CHANGED
|
@@ -291,6 +291,13 @@ Layout/AssignmentIndentation:
|
|
|
291
291
|
Layout/ElseAlignment:
|
|
292
292
|
Enabled: true
|
|
293
293
|
|
|
294
|
+
# https://docs.rubocop.org/rubocop/cops_layout.html#layoutcaseindentation
|
|
295
|
+
# Have `when` on the same indent level as `case`, not indented one step further.
|
|
296
|
+
Layout/CaseIndentation:
|
|
297
|
+
Enabled: true
|
|
298
|
+
EnforcedStyle: case
|
|
299
|
+
IndentOneStep: false
|
|
300
|
+
|
|
294
301
|
# https://docs.rubocop.org/rubocop/cops_layout.html#layoutendalignment
|
|
295
302
|
# Have `end` on the same indent level. Doesn't touch `ends` that belong to a `begin` (There's Layout/BeginEndAlignment for that), or to a `def` (There's Layout/DefEndAlignment for that), so it just affects `end`s belonging to if/unless/while/untl etc.
|
|
296
303
|
Layout/EndAlignment:
|