class Daemons::PidFile

def self.existing(path)

def self.existing(path)
  new_instance = PidFile.allocate
  new_instance.instance_variable_set(:@path, path)
  def new_instance.filename
    @path
  end
  new_instance
end