Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
367 views

Ruby open4r multiple systems calls with prompts

I'm trying to write a little lib which generates a keypair using open4, is this the best way of dealing with system calls with multiple prompts? require 'rubygems' require 'open4' Open4::popen4("sh") ...
0
votes
2answers
31 views

String-based class that converts all replacements to concats in Ruby?

I am using open4::background to open a process on the shell. open4::background allows me to use any class that implements <<, each, read, or to_s as a handle to stdx. I am currently using a ...
0
votes
0answers
263 views

open4 stdin.close required?

This is probably a stupid question, but I'm using open4 and I am wondering if I'm using it 'correctly'. Anyway the following is from the examples for open 4. Notice that in this case a stdin.close ...
0
votes
2answers
197 views

Why can't open4 read from stdout when the program is waiting for stdin?

I am using the open4 gem and having problems reading from the spawned processes stdout. I have a ruby program, test1.rb: print 'hi.' # 3 characters $stdin.read(1) # block And another ruby program ...
0
votes
3answers
487 views

Exposing console apps to the web with Ruby

I'm looking to expose an interactive command line program via JSON or another RPC style service using Ruby. I've found a couple tricks to do this, but im missing something when redirecting the output ...