icq-bot-ruby :diamonds:
Ruby wrapper for ICQ Bot API
Installation
gem install icqbot
Usage
Simple echo bot:
require 'icqbot'
ICQ::Bot.new('token') do |bot|
bot.listen do |event|
bot.send_msg("echo #{event.text}", event.chat_id)
end
end
more examples in bin/
Docs
Credits
- Thank you Cyril David (author by gem requests)
- And thank you Matz for wonderful Ruby