minitest-customize_result 0.1.0 → 0.1.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
  SHA1:
3
- metadata.gz: 8208b6aa876b3f8d31f20a739dada53a372cdf63
4
- data.tar.gz: 4cb77643a39a29d7db297c777c3817125919f5a3
3
+ metadata.gz: 7f648271e0475f99584b0ffa2ec0cdbe7a59b656
4
+ data.tar.gz: 33a0f51684292106acbb7264bbe5f5b467b38c2f
5
5
  SHA512:
6
- metadata.gz: 342a783a52077b5132724f1b746a35eff03b8ffba08f9e3b6f6c1153905965968b767e8f54c44fc102aa4d611e809ad588157d488ef3b441acc93473f825aab0
7
- data.tar.gz: 73b3fb29df36ca5937e19d48d0f1eeaebe4e94784fbe0d9ccab11913ca6f42745486e387955822f245765d83397f1e38d0dd7339d5122aaf91e62e90c1b75f65
6
+ metadata.gz: d1bde4a600a5264d90f98c0680df28fd42014d4b9776a75233cc5f8ca5da5bed3941502682f5df114c9d4de11e3493e037ad84a8e2a5593af972806b5a434ac7
7
+ data.tar.gz: e7aa3426dd81724d24e262c0b02b80d6551819ba46b9c048096fa4c830b78f5b59c3571fd456a9c161f4ece8ee2181105c29703315d2e93e3e28fc4ba5e18daa
@@ -26,7 +26,7 @@ module Minitest
26
26
 
27
27
  def print(o)
28
28
  if Minitest::CustomizeResult.use?
29
- @io.print(Minitest::CustomizeResult.result_codes[o])
29
+ @io.print("#{Minitest::CustomizeResult.result_codes[o]} ")
30
30
  else
31
31
  @io.print(o)
32
32
  end
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module CustomizeResult
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -1,3 +1,5 @@
1
+ require 'minitest/customize_result'
2
+
1
3
  module Minitest
2
4
  def self.plugin_customize_result_init(opts)
3
5
  io = Minitest::CustomizeResult::Reporter.new(opts[:io])
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-customize_result
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuji Yaginuma
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-04 00:00:00.000000000 Z
11
+ date: 2017-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -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.6.12
95
+ rubygems_version: 2.6.13
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: Can customize test result.