barsoom_utils 0.2.0.65 → 0.2.0.66
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 +10 -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: 6332dcf36a2a067c7359c2b1ef5afc14c5c1f74e582bd17114e906ba30c0ac50
|
|
4
|
+
data.tar.gz: 0c781f12e0a0f227a572164533e328c63d8bfdf63cb651d908fabdb04e141a6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17ea271bc9b2277a4eab7cc321fadb5213acd12329d0adb636e124b31a5e408ebddbb4aae9e52b691a0c63460517abcdb616ef17772ae91e592a2eb97d79537f
|
|
7
|
+
data.tar.gz: 34833998079b7b51eca3747eb5f04ddd48340798c85986da7fa92c42f392cf247e652362a61f6cacc716f6e2ba95f0da94a7cf29e91459a6b6d96160f79692c3
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.0.
|
|
1
|
+
0.2.0.66
|
data/shared_rubocop.yml
CHANGED
|
@@ -275,7 +275,11 @@ Layout/IndentationConsistency:
|
|
|
275
275
|
Layout/MultilineAssignmentLayout:
|
|
276
276
|
Enabled: true
|
|
277
277
|
SupportedTypes:
|
|
278
|
+
- case
|
|
279
|
+
- class
|
|
278
280
|
- if
|
|
281
|
+
- kwbegin
|
|
282
|
+
- module
|
|
279
283
|
|
|
280
284
|
# Indent the first line of a multiline assignment (i.e. the line directly after the =) one step
|
|
281
285
|
# https://docs.rubocop.org/rubocop/cops_layout.html#layoutassignmentindentation
|
|
@@ -292,6 +296,12 @@ Layout/ElseAlignment:
|
|
|
292
296
|
Layout/EndAlignment:
|
|
293
297
|
Enabled: true
|
|
294
298
|
|
|
299
|
+
Layout/BeginEndAlignment:
|
|
300
|
+
Enabled: true
|
|
301
|
+
|
|
302
|
+
Layout/RescueEnsureAlignment:
|
|
303
|
+
Enabled: true
|
|
304
|
+
|
|
295
305
|
# https://docs.rubocop.org/rubocop/cops_layout.html#layoutclassstructure
|
|
296
306
|
# https://github.com/barsoom/devbook/tree/master/styleguide#use-a-consistent-class-layout
|
|
297
307
|
# AutoCorrect: false because it has a tendency to make private delegates public, and it messes up whitespace
|