ZenTest 4.1.0 → 4.1.1

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.
data.tar.gz.sig CHANGED
Binary file
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 4.1.1 / 2009-06-03
2
+
3
+ * 1 bug fix:
4
+
5
+ * some calls to Multiruby.run didn't have logging. fixed (jcoglan)
6
+
1
7
  === 4.1.0 / 2009-06-03
2
8
 
3
9
  * 1 major enhancement:
data/lib/multiruby.rb CHANGED
@@ -294,8 +294,9 @@ module Multiruby
294
294
  root_dir
295
295
  end
296
296
 
297
- def self.run base_cmd, log
298
- cmd = "#{base_cmd} > #{log} 2>&1"
297
+ def self.run base_cmd, log = nil
298
+ cmd = base_cmd
299
+ cmd += " > #{log} 2>&1" if log
299
300
  puts "Running command: #{cmd}"
300
301
  raise "ERROR: Command failed with exit code #{$?}" unless system cmd
301
302
  end
data/lib/zentest.rb CHANGED
@@ -53,7 +53,7 @@ end
53
53
 
54
54
  class ZenTest
55
55
 
56
- VERSION = '4.1.0'
56
+ VERSION = '4.1.1'
57
57
 
58
58
  include ZenTestMapping
59
59
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZenTest
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
metadata.gz.sig CHANGED
Binary file