running_man 0.3.11 → 0.3.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -142,7 +142,7 @@ if defined?(MiniTest::Unit)
142
142
  ret = _run_suite_without_rm(suite, type)
143
143
  suite.final_teardowns.each do |teardown|
144
144
  begin
145
- teardown.run(suite)
145
+ teardown.run(suite.new('teardown'))
146
146
  rescue
147
147
  puts "#{$!.class} on #{suite} teardown: #{$!}"
148
148
  $!.backtrace { |b| puts ">> #{b}" }
data/lib/running_man.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__))
2
2
 
3
3
  module RunningMan
4
- VERSION = '0.3.11'
4
+ VERSION = '0.3.12'
5
5
 
6
6
  # Public: Sets up any helper class methods in TestClassMethods on the
7
7
  # specified test case class.
data/running_man.gemspec CHANGED
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
13
13
  ## If your rubyforge_project name is different, then edit it and comment out
14
14
  ## the sub! line in the Rakefile
15
15
  s.name = 'running_man'
16
- s.version = '0.3.11'
17
- s.date = '2012-08-09'
16
+ s.version = '0.3.12'
17
+ s.date = '2012-08-14'
18
18
  s.rubyforge_project = 'running_man'
19
19
 
20
20
  ## Make sure your summary is short. The description may be as long
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: running_man
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 11
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 11
10
- version: 0.3.11
9
+ - 12
10
+ version: 0.3.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - rick
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-08-09 00:00:00 Z
18
+ date: 2012-08-14 00:00:00 Z
19
19
  dependencies: []
20
20
 
21
21
  description: Simple class for test/unit setup blocks that run just once.