Ruby, Mobile, Games and Programming

Ruby Kernel.fork on Windows

Kernel.fork is used to start a subprocess, which is sometimes needed over just a Ruby thread (which is still part of the current process). Unfortunately it doesn’t work on Windows because Windows doesn’t support the fork(2) command.

However, it does work under cygwin! Which is really useful :)