Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/icyleaf/wechat-bot
还不知道如何走向的微信机器人
https://github.com/icyleaf/wechat-bot
ruby wechat wechat-bot weixin-bot
Last synced: 23 days ago
JSON representation
还不知道如何走向的微信机器人
- Host: GitHub
- URL: https://github.com/icyleaf/wechat-bot
- Owner: icyleaf
- License: mit
- Created: 2017-06-23T10:07:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-08T12:15:06.000Z (about 1 year ago)
- Last Synced: 2024-10-09T22:19:20.955Z (about 1 month ago)
- Topics: ruby, wechat, wechat-bot, weixin-bot
- Language: Ruby
- Size: 146 KB
- Stars: 8
- Watchers: 5
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# wechat-bot
[![Build Status](https://img.shields.io/circleci/project/github/icyleaf/wechat-bot.svg?style=flat)](https://circleci.com/gh/icyleaf/wechat-bot)
[![Inline docs](http://inch-ci.org/github/icyleaf/wechat-bot.svg?style=flat)](https://inch-ci.org/github/icyleaf/wechat-bot)
[![Gem version](https://img.shields.io/gem/v/wechat-bot.svg?style=flat)](https://rubygems.org/gems/wechat-bot)
[![License](https://img.shields.io/badge/license-MIT-red.svg?style=flat)](LICENSE.txt)微信机器人 Ruby 版本。
## 快速上手
```ruby
require 'wechat-bot'bot = WeChat::Bot.new do
on :message, "ping" do |message|
message.reply "PONG"
end
endbot.start
```