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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1be9ce98d579d437d6dbf365d1d16fe846e61a8
4
- data.tar.gz: 3bcb24abfe072686b6df92953c5c01feb2ca11af
3
+ metadata.gz: 3f0bee911c36f73f1d851054d755fb6855c145bb
4
+ data.tar.gz: 35c24ac6324e4dd62374cedf25ecc87703de651b
5
5
  SHA512:
6
- metadata.gz: bc8e547aa029b2e93a2b66a5c144028a05d8388ca5bee5ca5de8b075a09b419c585a28790e98552610855c9c7041f7dd8852eef233d3fc74ccad4462c0d316c0
7
- data.tar.gz: ba5de362681ba3fb8b62b1e07e7e2422a3db754a0aeac5d3ea659733560d427af1fae361e47f5ef5cd1cd709c53d69945e40331a5c61bd569fec19d3f5005275
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
- ![Gem Version](https://badge.fury.io/rb/minitest-anxious-reporter.png)
3
+ [![Gem Version](https://badge.fury.io/rb/minitest-anxious-reporter.svg)](https://badge.fury.io/rb/minitest-anxious-reporter)
4
4
 
5
- A more detailed reporter for minitest inspired by the documentation output of
6
- Rspec.
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
- Add the following to the top of your minitest file or you spec_helper file:
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.
@@ -25,7 +25,11 @@ module Minitest
25
25
  end
26
26
 
27
27
  def start
28
+ puts "Run options: #{options[:args]}"
28
29
  puts
30
+ puts "# Running:"
31
+ puts
32
+
29
33
  self.start_time = Time.now
30
34
  end
31
35
 
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module AnxiousReporter
3
- VERSION = "1.0.0"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
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.0.0
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-09-29 00:00:00.000000000 Z
11
+ date: 2016-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler