gorp 0.10.1 → 0.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{gorp}
5
- s.version = "0.10.1"
5
+ s.version = "0.10.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Sam Ruby"]
@@ -43,6 +43,9 @@ $style = Builder::XmlMarkup.new(:indent => 2)
43
43
  $omit = []
44
44
 
45
45
  FileUtils.mkdir_p $WORK
46
+ RUNFILE = File.join($WORK, 'status.run')
47
+ open(RUNFILE,'w') {|running| running.puts(Process.pid)}
48
+ at_exit { FileUtils.rm_f RUNFILE }
46
49
 
47
50
  class String
48
51
  def unindent(n)
@@ -179,5 +179,9 @@ class HTMLRunner < Test::Unit::UI::Console::TestRunner
179
179
  output.write("\n </body>")
180
180
  output.write(tail)
181
181
  end
182
+
183
+ open(File.join($WORK, 'status'), 'w') do |status|
184
+ status.puts @result.to_s
185
+ end
182
186
  end
183
187
  end
@@ -2,7 +2,7 @@ module Gorp
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 10
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gorp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Ruby