open3
open3 copied to clipboard
Open3 gives you access to stdin, stdout, and stderr when running other programs.
The following script will cause IRB console to become unresponsive on Ruby 3.1 on Windows installed by the Windows Ruby Installer. This is using the version of Open3 packaged with...
Im having issues running a docker exec command on WSL2 using open3. To reproduce I wrote this simple script: ``` require 'open3' command = "docker exec -i ls /" puts...
## Summary This PR fixes documentation issues in the Open3 module: 1. **Clarifies ignored redirection options**: Each method that sets up pipes now clearly documents which redirection options will be...
On MRI Ruby (`3.4.5`) and JRuby (non-Windows) `:chdir` is allowed to be a `Pathname`, however this does not work on JRuby Windows with the custom logic here. ```shell ruby -r...