open4 0.9.4 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -9,6 +9,13 @@ SYNOPSIS
9
9
  child processes and their io handles easily.
10
10
 
11
11
  HISTORY
12
+
13
+ 0.9.5:
14
+ - another patch from Corey Jewett, this time dealing with ruby's handling
15
+ of chdir and threads. basically the 'cwd' keyword to open4 cannot work
16
+ with multiple threads (aka background) because ruby cannot cause green
17
+ threads to have an actuall different working dir. the moral is that the
18
+ :cwd/'cwd' keyword to spawn will work with 0 or 1 threads in effect.
12
19
 
13
20
  0.9.4:
14
21
  - patch to #background from Corey Jewett
@@ -5,7 +5,7 @@ require 'thread'
5
5
 
6
6
  module Open4
7
7
  #--{{{
8
- VERSION = '0.9.4'
8
+ VERSION = '0.9.5'
9
9
  def self.version() VERSION end
10
10
 
11
11
  class Error < ::StandardError; end
@@ -5,7 +5,7 @@ require 'thread'
5
5
 
6
6
  module Open4
7
7
  #--{{{
8
- VERSION = '0.9.4'
8
+ VERSION = '0.9.5'
9
9
  def self.version() VERSION end
10
10
 
11
11
  class Error < ::StandardError; end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: open4
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.9.4
7
- date: 2007-07-11 00:00:00 -06:00
6
+ version: 0.9.5
7
+ date: 2007-07-13 00:00:00 -06:00
8
8
  summary: open4
9
9
  require_paths:
10
10
  - lib
@@ -32,7 +32,7 @@ files:
32
32
  - gemspec.rb
33
33
  - install.rb
34
34
  - lib
35
- - lib/open4-0.9.4.rb
35
+ - lib/open4-0.9.5.rb
36
36
  - lib/open4.rb
37
37
  - README
38
38
  - sample