0.0
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
WeChat Bot for Ruby with personal account
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.14
~> 10.0
~> 3.0
~> 0.53.0

Runtime

~> 0.8.1
~> 2.2.2
~> 0.6.0
~> 0.10.1
 Project Readme

wechat-bot

Build Status 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