minitest-retry 0.1.4 → 0.1.5

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: 7187e2a96eb701381689c1bbecde36ddda168f5e
4
- data.tar.gz: a3ddf1808ffe45f9839f45789dd2156e7b9c362a
3
+ metadata.gz: c97a4d9d325dfeda51a53320920286a3cd8e4405
4
+ data.tar.gz: fa4a3377622269b62cfaf46974c5be49e10406df
5
5
  SHA512:
6
- metadata.gz: d70fe4ca5aa7013da901672005e6f4cdbfbe9134bb6e12101272f0197dd2014163bb2359642d826d865644ccdafa0800f2b6ca7ed36f909699a6db5fe65b2c47
7
- data.tar.gz: 6abdcf5ed42cf11696743c5bbc365ecdf3c9611c9416121d466a880e587e1abaee477f6ef1fc3680a976f9b3304958fb7d786dcf67a01d59480c2bb23ac66457
6
+ metadata.gz: e4f92acdbe869fbf1769a3b5bdd60004bf8f8f566f7b8e2615acda895775365f90ef71a1fe38580d00905c0e7d5a49b422d6b1d88ed701ccdffa5c1e8ab9054f
7
+ data.tar.gz: 72bebddc87acc65bf81bbe22d21443d8fbbc766d4d10913f3f21b258855304de5468e746146b7b84fa92d42599adeea34ff0f2bae1d64577c3344fcd0354ac53
@@ -1,5 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.7
4
- - 2.2.3
3
+ - 2.1
4
+ - 2.2
5
+ - 2.3.0
5
6
  before_install: gem install bundler -v 1.10.4
@@ -1,3 +1,7 @@
1
+ ## 0.1.5
2
+
3
+ * Improve message information when an unexpected error occurs [abarre]
4
+
1
5
  ## 0.1.4
2
6
 
3
7
  * Fix typo in verbose output [semanticart]
@@ -27,7 +27,7 @@ module Minitest
27
27
  retry_count.times do |count|
28
28
  if Minitest::Retry.verbose && Minitest::Retry.io
29
29
  msg = "[MinitestRetry] retry '%s' count: %s, msg: %s\n" %
30
- [method_name, count + 1, result.failures.join(",")]
30
+ [method_name, count + 1, result.failures.map(&:message).join(",")]
31
31
  Minitest::Retry.io.puts(msg)
32
32
  end
33
33
 
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module Retry
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-retry
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuji Yaginuma
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-10-26 00:00:00.000000000 Z
11
+ date: 2016-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
92
  version: '0'
93
93
  requirements: []
94
94
  rubyforge_project:
95
- rubygems_version: 2.4.5
95
+ rubygems_version: 2.5.1
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: re-run the test when the test fails