You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having the following issue in the JRuby 1.7.23 in which the code snippet below will display hello world with the system call, but $hi when using popen3. In JRuby 9.0.4.0 and MRI Ruby, both calls display hello world as expected.
I'd love to update to the 9 series, but my current development environment requires 1.7 and updating is unlikely to happen swiftly.
Unfortunately the popen3 in JRuby 9 works like MRI because a tremendous amount of work went into making subprocess logic do the right thing. The logic in 1.7 is built entirely atop the JDK's process APIs, which are severely lacking.
This might not be an easy item to fix, I'm afraid.
I'm having the following issue in the JRuby 1.7.23 in which the code snippet below will display
hello world
with thesystem
call, but$hi
when usingpopen3
. In JRuby 9.0.4.0 and MRI Ruby, both calls displayhello world
as expected.I'd love to update to the 9 series, but my current development environment requires 1.7 and updating is unlikely to happen swiftly.
The text was updated successfully, but these errors were encountered: