simplycop 1.16.6 → 1.17.0
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/.simplycop_rails.yml +3 -0
- data/.simplycop_rspec.yml +12 -0
- data/.simplycop_style.yml +3 -0
- data/lib/simplycop/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: 9e4d596b4b625b33a9f091d6c1e729d0e169c497fec4d7b6e3fefb66bc517371
|
|
4
|
+
data.tar.gz: 739abd5f23785d91a0b77ef8164d74284a572a4d569c127b1f3a6d200d8d114a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 774ec92dd054e431d54a5d74713d1afd2e429afb3d003cb526a7461af51fe514ab3d280608c70fbf84fce64e41e24d4bbfe28f9dcd7404aa19686949c7339e40
|
|
7
|
+
data.tar.gz: ec3721b110bf666010614c5805835df3ca1438c901b28b831593e3770aefe46bf33d4952a3f894b5e251772202b0457dd894e52253a795cc1df35dda6db8c6e9
|
data/.simplycop_rails.yml
CHANGED
data/.simplycop_rspec.yml
CHANGED
|
@@ -99,6 +99,9 @@ RSpec/EmptyLineAfterSubject:
|
|
|
99
99
|
RSpec/EmptyMetadata:
|
|
100
100
|
Enabled: true
|
|
101
101
|
|
|
102
|
+
RSpec/EmptyOutput:
|
|
103
|
+
Enabled: true
|
|
104
|
+
|
|
102
105
|
RSpec/Eq:
|
|
103
106
|
Enabled: true
|
|
104
107
|
|
|
@@ -161,6 +164,9 @@ RSpec/InstanceSpy:
|
|
|
161
164
|
RSpec/InstanceVariable:
|
|
162
165
|
Enabled: false
|
|
163
166
|
|
|
167
|
+
RSpec/IsExpectedSpecify:
|
|
168
|
+
Enabled: true
|
|
169
|
+
|
|
164
170
|
RSpec/ItBehavesLike:
|
|
165
171
|
Enabled: true
|
|
166
172
|
|
|
@@ -265,6 +271,9 @@ RSpec/RepeatedExampleGroupDescription:
|
|
|
265
271
|
RSpec/RepeatedIncludeExample:
|
|
266
272
|
Enabled: true
|
|
267
273
|
|
|
274
|
+
RSpec/RepeatedSubjectCall:
|
|
275
|
+
Enabled: true
|
|
276
|
+
|
|
268
277
|
RSpec/ReturnFromStub:
|
|
269
278
|
Enabled: true
|
|
270
279
|
|
|
@@ -304,6 +313,9 @@ RSpec/SubjectDeclaration:
|
|
|
304
313
|
RSpec/SubjectStub:
|
|
305
314
|
Enabled: true
|
|
306
315
|
|
|
316
|
+
RSpec/UndescriptiveLiteralsDescription:
|
|
317
|
+
Enabled: true
|
|
318
|
+
|
|
307
319
|
RSpec/UnspecifiedException:
|
|
308
320
|
Enabled: true
|
|
309
321
|
|
data/.simplycop_style.yml
CHANGED
|
@@ -348,6 +348,9 @@ Style/MagicCommentFormat: # new in 1.35
|
|
|
348
348
|
Style/MapCompactWithConditionalBlock: # new in 1.30
|
|
349
349
|
Enabled: true
|
|
350
350
|
|
|
351
|
+
Style/MapIntoArray: # new in 1.63
|
|
352
|
+
Enabled: true
|
|
353
|
+
|
|
351
354
|
# Overridden to false in Chopin
|
|
352
355
|
Style/MapToHash:
|
|
353
356
|
Enabled: true
|
data/lib/simplycop/version.rb
CHANGED