minitest-anxious-reporter 1.0.0 → 1.1.0
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/README.md +10 -8
- data/lib/minitest/anxious_reporter.rb +4 -0
- data/lib/minitest/anxious_reporter/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f0bee911c36f73f1d851054d755fb6855c145bb
|
4
|
+
data.tar.gz: 35c24ac6324e4dd62374cedf25ecc87703de651b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d085506a4a1e032ffb6b6167d6b8c8b19f33091c13d29f6506405708cc3ea3e53f546b970699c3e221dd0816e437aa07028b47cd6fc55a825fcef69fa39a01f1
|
7
|
+
data.tar.gz: f14fa63c78f307bc5ec26087cc45357be4738280134c93a46745ee5baf09f23ddec9e3cf4fcc3991599816f56cb762b9b33f986a04b2180d65bac1900674576d
|
data/README.md
CHANGED
@@ -1,9 +1,15 @@
|
|
1
1
|
# minitest-anxious-reporter
|
2
2
|
|
3
|
-
](https://badge.fury.io/rb/minitest-anxious-reporter)
|
4
4
|
|
5
|
-
A more detailed reporter for minitest inspired by the documentation output of
|
6
|
-
|
5
|
+
A more detailed reporter for minitest inspired by the documentation output of Rspec.
|
6
|
+
|
7
|
+
It will show your error while they occur and print the error summary. The motivation for this gem was that
|
8
|
+
the original minitest reporter didn't worked with Jenkins (it wouldn't show the `dots` indicating progress)
|
9
|
+
and the original `doc_reporter` gem don't have a detailed failure report in the end and also didn't exited
|
10
|
+
with the correct code when fails occurred.
|
11
|
+
|
12
|
+
Forked from [jasonthompson/minitest-doc_reporter](https://github.com/jasonthompson/minitest-doc_reporter)
|
7
13
|
|
8
14
|
## Install
|
9
15
|
|
@@ -25,8 +31,4 @@ gem "minitest-anxious-reporter"
|
|
25
31
|
|
26
32
|
## Usage
|
27
33
|
|
28
|
-
|
29
|
-
|
30
|
-
```require 'minitest/anxious-reporter'```
|
31
|
-
|
32
|
-
This will replace Minitest's default reports with minitest-anxious-reporter's.
|
34
|
+
Simply bundle it and it will replace your current reporter automatically.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minitest-anxious-reporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Lett
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|