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 +7 -0
- data/lib/{open4-0.9.4.rb → open4-0.9.5.rb} +1 -1
- data/lib/open4.rb +1 -1
- metadata +3 -3
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
|
data/lib/open4.rb
CHANGED
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.
|
7
|
-
date: 2007-07-
|
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.
|
35
|
+
- lib/open4-0.9.5.rb
|
36
36
|
- lib/open4.rb
|
37
37
|
- README
|
38
38
|
- sample
|