icqbot

This gem is a simple and minimalistic library for creating ICQ bots.


License
0BSD
Install
gem install icqbot -v 0.1.7

Documentation

icq-bot-ruby ♦️

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