wechat-bot 微信机器人 Ruby 版本。 快速上手 require 'wechat-bot' bot = WeChat::Bot.new do on :message, "ping" do |message| message.reply "PONG" end end bot.start