From: Ari Brown Date: 2007-05-31T09:14:19+09:00 Subject: IRC I did a ri IRC just now, and it came up with a class document for establishing IRC connections. Is there any better documentations for that? And, better yet, does anyone know of any documentation for Ruby-IRC? Any other suggestions for ruby and IRC? ############################### #bit wastage/fun for me, probably not for you ############################### class Ending attr_reader :name def initialize(name) @name = name end def sig @sig = "-------------------------------------------|\nNietzsche is my copilot" end end ari = Ending.new(ari) puts ari.name puts ari.sig --------------------------------- ari bash-*nix $ -------------------------------------------| Nietzsche is my copilot