Skip to content

Instantly share code, notes, and snippets.

@blt
Created January 25, 2012 17:20
Show Gist options
  • Save blt/1677414 to your computer and use it in GitHub Desktop.
Save blt/1677414 to your computer and use it in GitHub Desktop.
require 'eventmachine'
EM.run do
EM.system '/usr/bin/md5sum', proc{ |p| p.send_data("hashme") } do |stdout, status|
puts stdout
EM.stop
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment