public
Description: Direct Connect bot written in Ruby
Clone URL: git://github.com/kballard/dcbot.git
Search Repo:
dcbot / keyboard.rb
100644 8 lines (7 sloc) 0.156 kb
1
2
3
4
5
6
7
8
module KeyboardInput
  include EventMachine::Protocols::LineText2
  
  def receive_line(line)
    line.chomp!
    $socket.sendPublicMessage(line)
  end
end