# File lib/god/process.rb, line 17
    def alive?
      begin
        pid = File.read(self.pid_file).strip.to_i
        System::Process.new(pid).exists?
      rescue Errno::ENOENT
        false
      end
    end