Last Updated: February 25, 2016
·
312
· kschiess

The cod gem helps with IPC

Cod allows for really simple IPC. Here's an example:

require 'cod'
comm = Cod.pipe
fork do
  comm.put 1+2
end

puts "Result is #{comm.get}."