minitest-reporters 1.1.17 → 1.1.18

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
  SHA1:
3
- metadata.gz: f660e73f8a673797576d1099958a20af53eedc35
4
- data.tar.gz: b9fd8e8d77a519a2c5a4bf004b76f386b16f51a7
3
+ metadata.gz: 3daa7e84f90367308d3189ac969fb29787969af4
4
+ data.tar.gz: 792cf3d3b11750aedc4019499363e1c12c3c1f16
5
5
  SHA512:
6
- metadata.gz: 1210b931bec5ccfeba5aab2800a7f2725d9f4e887857ff964de68aa854425a18f68d81e3ede7badcfeb6ab2076fa1db457813d84ec180ec0b643582a9d5d1975
7
- data.tar.gz: 7342070e0e136816c5f3c852a758a6f21932599d16034ff50e002473f126c8ca087b7c35b695b932f7d9338c4b8896d8d6a265b305712c7849c6111202afbff6
6
+ metadata.gz: 8e7e5d860c955f7eb1b4de2ad69a7094fa2470e22ddf6eda6a1af162622c628d9156b1a89ec185573281eb748a733576aab3291974781bcb0e56e7def6e803c2
7
+ data.tar.gz: 10cc2c863a025fb819b73ba0cc9d35b6b63e6f73898b9f8b849587fc4852f5032beb525925cb54d2a334deba3748bb67c10d7f6f4e7da986ced7eb89a0a166fc
@@ -1,3 +1,7 @@
1
+ ### [1.1.18](https://github.com/kern/minitest-reporters/compare/v1.1.17...v1.1.18)
2
+
3
+ * Fixed problem with Rails 5.1.3 [230](https://github.com/kern/minitest-reporters/issues/230) by [#236](https://github.com/kern/minitest-reporters/pull/236) (contributed by [samcday](https://github.com/samcday))
4
+
1
5
  ### [1.1.17](https://github.com/kern/minitest-reporters/compare/v1.1.16...v1.1.17)
2
6
 
3
7
  * Fixed tests' counting [#232](https://github.com/kern/minitest-reporters/pull/232) (contributed by [adaedra](https://github.com/adaedra))
@@ -30,6 +30,11 @@ module Minitest
30
30
  Minitest.backtrace_filter = backtrace_filter unless backtrace_filter.nil?
31
31
 
32
32
  unless defined?(@@loaded)
33
+ # Ensure that minitest-reporters is initialized last, so that our patches to Minitest.reporters are not
34
+ # trampled by other Minitest plugins, like the core Rails 5 Minitest plugin.
35
+ Minitest.load_plugins
36
+ Minitest.extensions << Minitest.extensions.delete('minitest_reporter')
37
+
33
38
  use_around_test_hooks!
34
39
  use_old_activesupport_fix!
35
40
  @@loaded = true
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module Reporters
3
- VERSION = '1.1.17'
3
+ VERSION = '1.1.18'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-reporters
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.17
4
+ version: 1.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Kern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-29 00:00:00.000000000 Z
11
+ date: 2017-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest