wechat-jsapi 0.1.2 → 0.1.3
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 +5 -5
- data/.rspec +1 -0
- data/CHANGELOG.md +9 -2
- data/Gemfile.lock +4 -4
- data/ROADMAP.md +7 -0
- data/lib/wechat/jsapi/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: ad24ff73f5d9046c627536c6974118f81480670d238672d6399cc8192c5d951f
|
|
4
|
+
data.tar.gz: 85544f80a396e6ff69f0f3795da5c1c32bda0ecc4602a5a1c5f472a96d2a5c44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 869e32f08f4a56d62b8d5f65f33674bf310786cdd43c2bc96915f4e208f23fc3df6712dda6cd3dc8319201a6f2a1385f6f44e140592edb52b036ae0f0cee21d2
|
|
7
|
+
data.tar.gz: e8f237dbb46c021864cf2a2fca0686f1cefc136ba029212cfb3a40696d34764013e775fdc6296840a09e50bd0f34d9893c5de6f1796ff5b6adee7024f0049d7d
|
data/.rspec
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
# Wechat JS API Change Log 微信JS API库变更日志
|
|
2
2
|
|
|
3
3
|
## v0.1
|
|
4
|
+
|
|
4
5
|
1. Signature class
|
|
5
6
|
2. Ticket wrapper class
|
|
6
7
|
|
|
7
8
|
## v0.1.1
|
|
9
|
+
|
|
8
10
|
1. Improved the Ruby Gem Specification to depend on [wechat-core](https://github.com/topbitdu/wechat-core) v0.4
|
|
9
11
|
2. Improved the Signature class for the argument validation
|
|
10
|
-
3.
|
|
12
|
+
3. Improved the Ticket wrapper class for the argument validation & HTTP request
|
|
11
13
|
|
|
12
14
|
## v0.1.2
|
|
13
|
-
|
|
15
|
+
|
|
16
|
+
1. Improved the Ticket wrapper class for the HTTP request
|
|
17
|
+
|
|
18
|
+
## v0.1.3
|
|
19
|
+
|
|
20
|
+
1. Signature spec
|
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
wechat-jsapi (0.1.
|
|
4
|
+
wechat-jsapi (0.1.3)
|
|
5
5
|
wechat-core (~> 0.4)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activesupport (5.0
|
|
10
|
+
activesupport (5.1.0)
|
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
12
12
|
i18n (~> 0.7)
|
|
13
13
|
minitest (~> 5.1)
|
|
@@ -32,9 +32,9 @@ GEM
|
|
|
32
32
|
rspec-support (~> 3.5.0)
|
|
33
33
|
rspec-support (3.5.0)
|
|
34
34
|
thread_safe (0.3.6)
|
|
35
|
-
tzinfo (1.2.
|
|
35
|
+
tzinfo (1.2.3)
|
|
36
36
|
thread_safe (~> 0.1)
|
|
37
|
-
wechat-core (0.4.
|
|
37
|
+
wechat-core (0.4.2)
|
|
38
38
|
activesupport (>= 4.2)
|
|
39
39
|
httpclient (>= 2.8)
|
|
40
40
|
|
data/ROADMAP.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
# Wechat JS API Road Map 微信JS API库路线图
|
|
2
2
|
|
|
3
3
|
## v0.1
|
|
4
|
+
|
|
4
5
|
1. Signature class
|
|
5
6
|
2. Ticket wrapper class
|
|
6
7
|
|
|
7
8
|
## v0.1.1
|
|
9
|
+
|
|
8
10
|
1. Improve the Ruby Gem Specification to depend on [wechat-core](https://github.com/topbitdu/wechat-core) v0.4
|
|
9
11
|
2. Improve the Signature class for the argument validation
|
|
10
12
|
3. Improve the Ticket wrapper class for the argument validation & HTTP request
|
|
11
13
|
|
|
12
14
|
## v0.1.2
|
|
15
|
+
|
|
13
16
|
1. Improve the Ticket wrapper class for the HTTP request
|
|
17
|
+
|
|
18
|
+
## v0.1.3
|
|
19
|
+
|
|
20
|
+
1. Signature spec
|
data/lib/wechat/jsapi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wechat-jsapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Topbit Du
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -112,8 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
113
|
version: '0'
|
|
114
114
|
requirements: []
|
|
115
|
-
|
|
116
|
-
rubygems_version: 2.6.4
|
|
115
|
+
rubygems_version: 3.1.2
|
|
117
116
|
signing_key:
|
|
118
117
|
specification_version: 4
|
|
119
118
|
summary: Wechat JS API Library 微信JS API库
|