This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 949057c781d8444cc4d87c5dcf915b1a065d6e89
tree b9c89b87014c9c2884dda2cb15a8670d5433a198
parent 89febc47ed1b69caa79de6ae1b4b780ad7304866
tree b9c89b87014c9c2884dda2cb15a8670d5433a198
parent 89febc47ed1b69caa79de6ae1b4b780ad7304866
ropen / README.markdown
Ropen
A process execution library which doesn't suck.
cmd = Ropen::Command.new("/bin/cat", "/home/coda/my-recipes.txt")
cmd.stdout.on_output do |line|
if line =~ /sugar/
puts line
end
cmd.stdin.puts "cat doesn't take input, but imagine if it did..."
end
cmd.run




