test-prof 0.11.2 → 0.11.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 967e917103495761884236a184497ae47d9a94950b91e2ab2f972b7f51d378e1
4
- data.tar.gz: 733623aa5a072a701014d9c5b24b4c2bb3f1aee8c8f689b1c9bd7f0c7088c09d
3
+ metadata.gz: 9f94a3a078b73be780b867708b18572f4eec3d9847c733ddab65e04999895b14
4
+ data.tar.gz: 5859b8f66524c27e07c96456bba4d44a3ba76a20eed7d987319ca287ee441392
5
5
  SHA512:
6
- metadata.gz: b3205058c5cb3baa8c7552fd225c0932dc2c7b871adfd8efb81e59b669940a128c738ed2278b6262c7507a3fa9555f5a0be3c730b656bae8b7f2097f056c0697
7
- data.tar.gz: 449e2c8c17397eec18b68c9e3f53ba3315b38bd4042a0191bedade3fa2a5b7fb1e9d1155b3673f08d6016b322a0733de1fc95a64cb5aa4b604dc7e209817b0c3
6
+ metadata.gz: 417495b0ccf198639e80396635922ad3802a622471304a93dd364bdca66ffbc09934badd74eb3e562e8524f141fa040e190068ab1f278d2ecc7575104889efb4
7
+ data.tar.gz: e07278c5c32fbdd59fcd57a2e87785732503ea810fc21fc2222f4fdba5709dfa4c6794f7782c2498335eaf84516582f8cb5263ed302b12ac7f3137bbc3b4a3b4
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master (unreleased)
4
4
 
5
+ ## 0.11.3 (2020-02-11)
6
+
7
+ - Disable `RSpec/AggregateFailures` by default. ([@pirj][])
8
+
5
9
  ## 0.11.2 (2020-02-11)
6
10
 
7
11
  - Fix RuboCop integration regressions. ([@palkan][])
data/config/default.yml CHANGED
@@ -6,7 +6,7 @@ AllCops:
6
6
  - "(?:^|/)spec/"
7
7
 
8
8
  RSpec/AggregateExamples:
9
- Description: Checks if example groups contain two or more aggregatable examples.
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 groups contain two or more aggregatable examples.
25
- Enabled: true
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:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TestProf
4
- VERSION = "0.11.2"
4
+ VERSION = "0.11.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-prof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.2
4
+ version: 0.11.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dementyev