minitest-reporters 1.7.0 → 1.7.1

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: de01e0afb6f385fb1d12dcf414a2f5f2c5b87363bb6300ae35985c8bc2354638
4
- data.tar.gz: 3def5f8c01897b2e39395479f9599dcb6b837366512a8486ad9d7c19a6be5aab
3
+ metadata.gz: 50a31bb6454378fcab5fd94118320e83a468580cd845c8e0c8bdac914f5162b2
4
+ data.tar.gz: e9dc4046e7e6ed88c028339c1c44769aca0ed0eaf7c241d637a8d2dd82935709
5
5
  SHA512:
6
- metadata.gz: db577d5beacf367f1ed9e61306b927039fe3f2c0ae7c5549094696a0ae457e39c43fc07ab1fc880caf051555e650a57d2a23d051b1e98e8e1db0e5a34609ad00
7
- data.tar.gz: 8b4cf058bf3d813fa63fa71005f7eca6a5516a1c317b7bb8ca911f543c09fa8d1295f4079319ae3d19835a73b5a8a77ae619b934a13da28466efd5018160dad0
6
+ metadata.gz: 397876b0b76dc0ffe880e0cc996704b5ca897b099e028a94dfde1112926e69d6abfb3f7b597d3e854dcb9d191579bacba04d3f43b61d55beae9e70ffc57db1e6
7
+ data.tar.gz: 730bd3fef63a2c1d09009cc34725e88e376db0322693ae7fcf8b82a7b54df9afad49a4a2ad245d09c222af5427ca22e3ef3ae32137aebcb57263673208e3d613
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ### [dev](https://github.com/minitest-reporters/minitest-reporters/compare/v1.7.0...master)
1
+ ### [dev](https://github.com/minitest-reporters/minitest-reporters/compare/v1.7.1...master)
2
+
3
+ ### [1.7.1](https://github.com/minitest-reporters/minitest-reporters/compare/v1.7.0...v1.7.1)
4
+ * Fixed logic of new `suppress_inline_failure_output`. This option was doing the opposite of what it intended to do.
5
+ [#354](https://github.com/minitest-reporters/minitest-reporters/pull/354)
2
6
 
3
7
  ### [1.7.0](https://github.com/minitest-reporters/minitest-reporters/compare/v1.6.1...v1.7.0)
4
8
 
@@ -53,7 +53,7 @@ module Minitest
53
53
  def record(test)
54
54
  super
55
55
  record_print_status(test)
56
- record_print_failures_if_any(test) if @suppress_inline_failure_output
56
+ record_print_failures_if_any(test) unless @suppress_inline_failure_output
57
57
  end
58
58
 
59
59
  protected
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module Reporters
3
- VERSION = '1.7.0'.freeze
3
+ VERSION = '1.7.1'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-reporters
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Kern