This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

getpeereid

        # BasicSocket.getpeereid

(from ruby core)
---
    basicsocket.getpeereid => [euid, egid]

---

Returns the user and group on the peer of the UNIX socket. The result is
a two element array which contains the effective uid and the effective
gid.

    Socket.unix_server_loop("/tmp/sock") {|s|
      begin
        euid, egid = s.getpeereid

        # Check the connected client is myself or not.
        next if euid != Process.uid

        # do something about my resource.

      ensure
        s.close
      end
    }



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.