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 +4 -4
- data/CHANGELOG.md +6 -0
- data/config/default.yml +35 -0
- data/lib/test_prof/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3dac21d40ac7256f05daec255623a1f2e6efd049d22dfe0c437ac045d4c87e45
|
|
4
|
+
data.tar.gz: 24f9a97916db189182015a42387614515ffb29c87828ef46d7c8809f4dd71454
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dadfb8ff828ebe21fcc2170086655cf7a5a2c017895f4beda09ade98f17063dc4b8bfb267b936d9e0d40d40685b18a27e3b8f66d710faeefa22a352c399bbc59
|
|
7
|
+
data.tar.gz: 41f53b177b7871881357e18444fd59ebf729a442a756a5716b14da823cd87c30000af1bebdc92d675993172951fce593e88168d24ce63dc0cde0ab8f88dc8562
|
data/CHANGELOG.md
CHANGED
|
@@ -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][])
|
data/config/default.yml
ADDED
|
@@ -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
|
data/lib/test_prof/version.rb
CHANGED
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.
|
|
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-
|
|
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
|