rubocop-rspec_parity 1.4.2 → 1.4.3
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/CHANGELOG.md +4 -0
- data/config/default.yml +4 -0
- data/lib/rubocop/rspec_parity/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: '07035081949c318dcc044f4841d987f4a170cea2faee8aa691974f41d87395a1'
|
|
4
|
+
data.tar.gz: 5f2c5db982b0a0703cb4da8f4362ec40379728f4959e916852066a78966339fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e46579d72c613ad3a55bc829b6404f31d73e5933ca7cdc9d4f3b20f31062019ed7a2d91f017b1ae620c8c3ab3821e7a3c5c4bdef5e6b280a56e4dca48fe81f2
|
|
7
|
+
data.tar.gz: 9615debebd296469cf8451fc5908f9410bad9dd655473f8fb9314449abc82e803805d39fd1f1736834d2bcae5d9903f37525577dfe7fa5497777ca554d9a2f7f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [1.4.3] - 2026-03-10
|
|
4
|
+
|
|
5
|
+
Fixed: Department-level custom config keys (`SpecFilePathMappings`, `DescribeAliases`, `SkipMethodDescribeFor`) no longer trigger "unsupported parameter" warnings
|
|
6
|
+
|
|
3
7
|
## [1.4.2] - 2026-03-03
|
|
4
8
|
|
|
5
9
|
Fixed: `PublicMethodHasSpec` now reports violations even when the spec file does not exist, since a missing spec file means the method is untested
|
data/config/default.yml
CHANGED
|
@@ -13,6 +13,10 @@ RSpecParity:
|
|
|
13
13
|
- 'app/assets/**/*'
|
|
14
14
|
- 'app/views/**/*'
|
|
15
15
|
- 'app/javascript/**/*'
|
|
16
|
+
SpecFilePathMappings:
|
|
17
|
+
app/: ['spec/']
|
|
18
|
+
DescribeAliases: {}
|
|
19
|
+
SkipMethodDescribeFor: []
|
|
16
20
|
|
|
17
21
|
RSpecParity/FileHasSpec:
|
|
18
22
|
Description: 'Checks that each Ruby file in the app directory has a corresponding spec file.'
|