test-prof 0.11.0 → 0.11.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2060dd26a4bec62bd9a3b699e1165c60b8914a74c9fc25b3a0edf84afbd7d2b
4
- data.tar.gz: 9b8e3eb78764c130ae78a575a5cdfe5d9e9a440d7b748c108b5088d99dc7261d
3
+ metadata.gz: 3dac21d40ac7256f05daec255623a1f2e6efd049d22dfe0c437ac045d4c87e45
4
+ data.tar.gz: 24f9a97916db189182015a42387614515ffb29c87828ef46d7c8809f4dd71454
5
5
  SHA512:
6
- metadata.gz: 6998b3cb30fa82bf6b2311dfa733f0c32694964741aa923b1300115d670c0cfc7e834ad55a9a9b4295e5b02e85d18e529d75d775b16d00ecc44956bee30231aa
7
- data.tar.gz: b42a91195b9e6a49522bd33ede09ae9ee769b7ee1678de97d2a0bcf593ab076811f20938f2f2deabe864e22e6c9cab5b0e1b7431da91492b9d7959e7b6b52769
6
+ metadata.gz: dadfb8ff828ebe21fcc2170086655cf7a5a2c017895f4beda09ade98f17063dc4b8bfb267b936d9e0d40d40685b18a27e3b8f66d710faeefa22a352c399bbc59
7
+ data.tar.gz: 41f53b177b7871881357e18444fd59ebf729a442a756a5716b14da823cd87c30000af1bebdc92d675993172951fce593e88168d24ce63dc0cde0ab8f88dc8562
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## master (unreleased)
4
4
 
5
+ ## 0.11.1 (2020-02-10)
6
+
7
+ - Add `config/` to the gem contents. ([@palkan][])
8
+
9
+ Fixes RuboCop integration regression from 0.11.0.
10
+
5
11
  ## 0.11.0 (2020-02-09)
6
12
 
7
13
  - Fix `let_it_be` issue when initialized with an array/enumerable or an AR relation. ([@pirj][])
@@ -0,0 +1,35 @@
1
+ ---
2
+ AllCops:
3
+ RSpec:
4
+ Patterns:
5
+ - _spec.rb
6
+ - "(?:^|/)spec/"
7
+
8
+ RSpec/AggregateExamples:
9
+ Description: Checks if example groups contain two or more aggregatable examples.
10
+ Enabled: true
11
+ StyleGuide: https://rspec.rubystyle.guide/#expectation-per-example
12
+ AddAggregateFailuresMetadata: true
13
+ MatchersWithSideEffects:
14
+ - allow_value
15
+ - allow_values
16
+ - validate_presence_of
17
+ - validate_absence_of
18
+ - validate_length_of
19
+ - validate_inclusion_of
20
+ - validates_exclusion_of
21
+
22
+ # TODO: remove this one we hit 1.0
23
+ RSpec/AggregateFailures:
24
+ Description: Checks if example groups contain two or more aggregatable examples.
25
+ Enabled: true
26
+ StyleGuide: https://rspec.rubystyle.guide/#expectation-per-example
27
+ AddAggregateFailuresMetadata: true
28
+ MatchersWithSideEffects:
29
+ - allow_value
30
+ - allow_values
31
+ - validate_presence_of
32
+ - validate_absence_of
33
+ - validate_length_of
34
+ - validate_inclusion_of
35
+ - validates_exclusion_of
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TestProf
4
- VERSION = "0.11.0"
4
+ VERSION = "0.11.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-prof
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladimir Dementyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-09 00:00:00.000000000 Z
11
+ date: 2020-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -118,6 +118,7 @@ files:
118
118
  - assets/src/d3.v4.min.js
119
119
  - assets/tagprof.demo.html
120
120
  - assets/tagprof.template.html
121
+ - config/default.yml
121
122
  - lib/minitest/base_reporter.rb
122
123
  - lib/minitest/event_prof_formatter.rb
123
124
  - lib/minitest/test_prof_plugin.rb