module DEBUGGER__

def self.unix_domain_socket_homedir

def self.unix_domain_socket_homedir
  if home = ENV['HOME']
    path = File.join(home, '.rdbg-sock')
    unless File.exist?(path)
      Dir.mkdir(path, 0700)
    end
    check_dir_authority(path)
  end
end