minitest-reporters 0.10.1 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # minitest-reporters - create customizable MiniTest output formats [![StillMaintained Status](http://stillmaintained.com/CapnKernul/minitest-reporters.png)](http://stillmaintained.com/CapnKernul/minitest-reporters) [![Build Status](http://travis-ci.org/CapnKernul/minitest-reporters.png)](http://travis-ci.org/CapnKernul/minitest-reporters) #
1
+ # minitest-reporters - create customizable MiniTest output formats [![Build Status](http://travis-ci.org/CapnKernul/minitest-reporters.png)](http://travis-ci.org/CapnKernul/minitest-reporters) #
2
2
 
3
3
  Death to haphazard monkey-patching! Extend MiniTest through simple hooks.
4
4
 
@@ -113,7 +113,7 @@ module MiniTest
113
113
 
114
114
  def print_test_with_time(suite, test)
115
115
  total_time = Time.now - runner.test_start_time
116
- print(" #{suite}##{test} (%.2fs)#{clr}" % total_time)
116
+ print(" %s#%s (%.2fs)%s" % [suite, test, total_time, clr])
117
117
  end
118
118
 
119
119
  def print_info(e)
@@ -1,5 +1,5 @@
1
1
  module MiniTest
2
2
  module Reporters
3
- VERSION = "0.10.1"
3
+ VERSION = "0.10.2"
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: 0.10.1
4
+ version: 0.10.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-02 00:00:00.000000000 Z
12
+ date: 2012-08-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
@@ -174,18 +174,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
174
174
  - - ! '>='
175
175
  - !ruby/object:Gem::Version
176
176
  version: '0'
177
- segments:
178
- - 0
179
- hash: -2750442656581288941
180
177
  required_rubygems_version: !ruby/object:Gem::Requirement
181
178
  none: false
182
179
  requirements:
183
180
  - - ! '>='
184
181
  - !ruby/object:Gem::Version
185
182
  version: '0'
186
- segments:
187
- - 0
188
- hash: -2750442656581288941
189
183
  requirements: []
190
184
  rubyforge_project: minitest-reporters
191
185
  rubygems_version: 1.8.24
@@ -197,3 +191,4 @@ test_files:
197
191
  - test/minitest/reporter_test.rb
198
192
  - test/minitest/reporters_test.rb
199
193
  - test/test_helper.rb
194
+ has_rdoc: