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 faa2fbe304a570c604041b55fc2d9fd82d8ab8cf
tree 8905da1d742f700d12d556245d3d129710cce5da
parent 844c58c26c2ebb4dee520cfae4428eb085825e4f
tree 8905da1d742f700d12d556245d3d129710cce5da
parent 844c58c26c2ebb4dee520cfae4428eb085825e4f
ropen / README.markdown
Ropen
A process execution library which doesn't suck.
cmd = Ropen::Command.new("/bin/cat", "/home/coda/my-recipes.txt")
cmd.on_stdout do |cat, line|
if line =~ /sugar/
puts line
end
cat.stdin.puts "cat doesn't take input, but imagine if it did..."
end
cmd.run




