Skip to content

Instantly share code, notes, and snippets.

@elcuervo
Created April 20, 2012 18:50
Show Gist options
  • Save elcuervo/2430999 to your computer and use it in GitHub Desktop.
Save elcuervo/2430999 to your computer and use it in GitHub Desktop.
EM send data popen
IO.popen('./test') do |io|
begin
while line = io.readline do
send_data line
end
rescue EOFError => e
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment