Hi gurus, I was playing a little with socket stuff, and trying to learn what "sysaccept" is. So, I closed irb, and launched $ri socket.syaccept doh! ri knows nothing about sockets! At the first time I thought: Well, I can live without that But after that I thought: could'nt exist some way to get info about a method in irb from the Object itself? sysaccept is actually (I think) an instance of the Method class, it could have something like @parameters or @default_parameter_X_val Does it have written somewhere infos about the parameter it gets or what does it do ? I seem to remember that I saw something like method.__doc__ in that language that starts with a P, do we have something like this in Ruby ? If not, Why not?