wechat-bot

Build Status Code Climate Inline docs Gem version License

微信机器人 Ruby 版本。

快速上手

require 'wechat-bot'

bot = Wechat::Bot.new do
  on :message, "ping" do |message|
    message.reply "PONG"
  end
end

bot.start