test-prof 0.11.2 → 0.11.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 +3 -3
- data/lib/test_prof/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: 9f94a3a078b73be780b867708b18572f4eec3d9847c733ddab65e04999895b14
|
|
4
|
+
data.tar.gz: 5859b8f66524c27e07c96456bba4d44a3ba76a20eed7d987319ca287ee441392
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 417495b0ccf198639e80396635922ad3802a622471304a93dd364bdca66ffbc09934badd74eb3e562e8524f141fa040e190068ab1f278d2ecc7575104889efb4
|
|
7
|
+
data.tar.gz: e07278c5c32fbdd59fcd57a2e87785732503ea810fc21fc2222f4fdba5709dfa4c6794f7782c2498335eaf84516582f8cb5263ed302b12ac7f3137bbc3b4a3b4
|
data/CHANGELOG.md
CHANGED
data/config/default.yml
CHANGED
|
@@ -6,7 +6,7 @@ AllCops:
|
|
|
6
6
|
- "(?:^|/)spec/"
|
|
7
7
|
|
|
8
8
|
RSpec/AggregateExamples:
|
|
9
|
-
Description: Checks if example
|
|
9
|
+
Description: Checks if example group contains two or more aggregatable examples.
|
|
10
10
|
Enabled: true
|
|
11
11
|
StyleGuide: https://rspec.rubystyle.guide/#expectation-per-example
|
|
12
12
|
AddAggregateFailuresMetadata: true
|
|
@@ -21,8 +21,8 @@ RSpec/AggregateExamples:
|
|
|
21
21
|
|
|
22
22
|
# TODO: remove this one we hit 1.0
|
|
23
23
|
RSpec/AggregateFailures:
|
|
24
|
-
Description: Checks if example
|
|
25
|
-
Enabled:
|
|
24
|
+
Description: Checks if example group contains two or more aggregatable examples.
|
|
25
|
+
Enabled: false
|
|
26
26
|
StyleGuide: https://rspec.rubystyle.guide/#expectation-per-example
|
|
27
27
|
AddAggregateFailuresMetadata: true
|
|
28
28
|
MatchersWithSideEffects:
|
data/lib/test_prof/version.rb
CHANGED