diff --git a/ext/socket/lib/socket.rb b/ext/socket/lib/socket.rb index a207d5afb8..9b2ee157b7 100644 --- a/ext/socket/lib/socket.rb +++ b/ext/socket/lib/socket.rb @@ -595,9 +595,17 @@ class Socket # # It returns a listening socket. # + # If a block is given, it is called with the socket and the block value is returned. + # When the block exits, the socket is closed and the socket file is removed. + # # socket = Socket.unix_server_socket("/tmp/s") - # p socket #=> # - # p socket.local_address #=> # + # p socket #=> # + # p socket.local_address #=> # + # + # Socket.unix_server_socket("/tmp/sock") {|s| + # p s #=> # + # p s.local_address #=> # # + # } # def self.unix_server_socket(path) begin