README.md in wechat-handler-0.1 vs README.md in wechat-handler-0.1.1

- old
+ new

@@ -3,17 +3,27 @@ [![License](https://img.shields.io/badge/license-MIT-green.svg)](http://opensource.org/licenses/MIT) [![Gem Version](https://badge.fury.io/rb/wechat-handler.svg)](https://badge.fury.io/rb/wechat-handler) The Wechat Handler engine handles the Wechat event & message notifications. 微信回调处理引擎处理微信服务器发出的事件通知和消息通知。 + + +## Recent Update +Check out the [Road Map](ROADMAP.md) to find out what's the next. +Check out the [Change Log](CHANGELOG.md) to find out what's new. + + + ## Usage in Gemfile ```ruby gem 'wechat-handler' ``` + + ## Include the controller concern ```ruby -include ::Wechat::Handler::Concerns::Dispatcher +include Wechat::Handler::Concerns::Dispatcher def on_event(pairs) { 'MsgType' => 'text', 'Content' => 'Aloha!' } end ```