class Spork::Forker

def abort

abort the current running fork
def abort
  if running?
    Process.kill(Signal.list['TERM'], @child_pid)
    @child_pid = nil
    true
  end
end