public
Description: Direct Connect bot written in Ruby
Clone URL: git://github.com/kballard/dcbot.git
kballard (author)
Mon Mar 17 19:12:13 -0700 2008
commit  994400c0b741c96c8e7526eac3d37964804ac9cb
tree    86447980687c8c337089e757718210e2c6403839
parent  5a498b0375a742aac109c5b3833829ce9660e0b1
dcbot / keyboard.rb
100644 9 lines (7 sloc) 0.156 kb
1
2
3
4
5
6
7
8
9
module KeyboardInput
  include EventMachine::Protocols::LineText2
  
  def receive_line(line)
    line.chomp!
    $socket.sendPublicMessage(line)
  end
end