wechat_public_api 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +2 -10
- data/lib/wechat_public_api/version.rb +1 -1
- data/wechat_public_api-0.1.5.gem +0 -0
- data/wechat_public_api-0.1.6.gem +0 -0
- data/wechat_public_api.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5892402a24d2a0b084bfe7132bdddb2684303337
|
|
4
|
+
data.tar.gz: 6b0a5ca44d41c45799771891db324acaa47e4ec0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49ee6c7dace26aea67fb3e9772f8dd424f8e49a3ed228f9d12ca1dfeca0816cf20e04a7d3b37af07bbee891c31dabef118e6985f270b1dd77741092f53222ca7
|
|
7
|
+
data.tar.gz: 2895c5e703a02c5604b556e20737002bccda6956a688c50635503c5f1b6cdaf74c90028ecdba9c6ad41118d281be7397bb372e981333ad2e66af7ea87d3c69ff
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -20,14 +20,6 @@ gem 'wechat_public_api'
|
|
|
20
20
|
|
|
21
21
|
$ gem install wechat_public_api
|
|
22
22
|
|
|
23
|
-
##
|
|
23
|
+
## 文档
|
|
24
24
|
|
|
25
|
-
[
|
|
26
|
-
[1]:https://github.com/Diyilou/wechat_public_api/blob/master/doc/0.1.4.md "版本:0.1.4"
|
|
27
|
-
|
|
28
|
-
## 两行代码获得 access_token
|
|
29
|
-
|
|
30
|
-
```ruby
|
|
31
|
-
wechat_api = WechatPublicApi.new appid: 'xx', app_secret: 'xx', access_token_cache: true
|
|
32
|
-
access_token = wechat_api.get_access_token
|
|
33
|
-
```
|
|
25
|
+
[wechat_public_api开发者使用文档](https://yuque.com/qianlansedehei/wechat_public_api)
|
|
Binary file
|
|
Binary file
|
data/wechat_public_api.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["mnzmx_z@163.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{微信公众号开发API,包含对微信公众号菜单栏、客服消息、模板消息、帐号管理等接口的封装,API长期更新维护,建议使用最新版本.}
|
|
13
|
-
spec.description = %q{}
|
|
13
|
+
spec.description = %q{开发者使用文档:https://yuque.com/qianlansedehei/wechat_public_api}
|
|
14
14
|
spec.homepage = "https://github.com/Diyilou/wechat_public_api.git"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wechat_public_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- '张明鑫 wechat number: zmx119966'
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-05-
|
|
11
|
+
date: 2018-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -108,7 +108,7 @@ dependencies:
|
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: 0.0.7.5
|
|
111
|
-
description:
|
|
111
|
+
description: 开发者使用文档:https://yuque.com/qianlansedehei/wechat_public_api
|
|
112
112
|
email:
|
|
113
113
|
- mnzmx_z@163.com
|
|
114
114
|
executables: []
|
|
@@ -139,6 +139,8 @@ files:
|
|
|
139
139
|
- wechat_public_api-0.1.2.gem
|
|
140
140
|
- wechat_public_api-0.1.3.gem
|
|
141
141
|
- wechat_public_api-0.1.4.gem
|
|
142
|
+
- wechat_public_api-0.1.5.gem
|
|
143
|
+
- wechat_public_api-0.1.6.gem
|
|
142
144
|
- wechat_public_api.gemspec
|
|
143
145
|
homepage: https://github.com/Diyilou/wechat_public_api.git
|
|
144
146
|
licenses:
|
|
@@ -160,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
160
162
|
version: '0'
|
|
161
163
|
requirements: []
|
|
162
164
|
rubyforge_project:
|
|
163
|
-
rubygems_version: 2.
|
|
165
|
+
rubygems_version: 2.6.14
|
|
164
166
|
signing_key:
|
|
165
167
|
specification_version: 4
|
|
166
168
|
summary: 微信公众号开发API,包含对微信公众号菜单栏、客服消息、模板消息、帐号管理等接口的封装,API长期更新维护,建议使用最新版本.
|