# File lib/god/process.rb, line 18
    def alive?
      if self.pid
        System::Process.new(self.pid).exists?
      else
        false
      end
    end