wechat-callback 0.4 → 1.0
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/CHANGELOG.md +8 -0
- data/Gemfile.lock +3 -3
- data/ROADMAP.md +8 -0
- data/lib/wechat/callback/version.rb +1 -1
- data/wechat-callback.gemspec +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7402c681443c8723925ac219c2168841288c6f97807d76882fa9c8dcf50321ad
|
|
4
|
+
data.tar.gz: f84520a58e0309c0b69dc632297c46abab1d025842ac200d01bcd74868f074e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 515222aaba11498703110a15fabbd153c26145b9f110d2cf5ec78c54ee3190208b0651298ac02e643a9d9cf92714f782ed8913356976f4e3443e2b9006055017
|
|
7
|
+
data.tar.gz: 9109aaf698844b0a670151c5ad9c71a0d2b27f885fa12fc6591affd930887b9fe8fb3992c3acc158c2a0b2440acf29da03f7e62986d01831c71f8ca197ae6df3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
# Wechat Callback Change Log 微信回调库变更日志
|
|
2
2
|
|
|
3
3
|
## v0.1
|
|
4
|
+
|
|
4
5
|
1. Signature class
|
|
5
6
|
2. Message Signature class
|
|
6
7
|
3. XML Document class
|
|
7
8
|
|
|
8
9
|
## v0.2
|
|
10
|
+
|
|
9
11
|
1. Message Encryption class
|
|
10
12
|
2. Message Decryption class
|
|
11
13
|
|
|
12
14
|
## v0.3
|
|
15
|
+
|
|
13
16
|
1. Random Byte Array class
|
|
14
17
|
2. Secure Message class
|
|
15
18
|
|
|
16
19
|
## v0.4
|
|
20
|
+
|
|
17
21
|
1. Improve the Message Decryption class for the argument validation
|
|
18
22
|
2. Improve the Message Encryption class for the argument validation
|
|
19
23
|
3. Improve the Message Signature class for the argument validation
|
|
@@ -21,3 +25,7 @@
|
|
|
21
25
|
5. Improve the Secure Message class for the argument validation
|
|
22
26
|
6. Improve the Signature class for the argument validation
|
|
23
27
|
7. Improve the Xml Document class for the argument validation
|
|
28
|
+
|
|
29
|
+
## v1.0
|
|
30
|
+
|
|
31
|
+
1. Improve the Gem Spec
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
wechat-callback (0
|
|
4
|
+
wechat-callback (1.0)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -26,10 +26,10 @@ PLATFORMS
|
|
|
26
26
|
ruby
|
|
27
27
|
|
|
28
28
|
DEPENDENCIES
|
|
29
|
-
bundler (~>
|
|
29
|
+
bundler (~> 2.0)
|
|
30
30
|
rake (~> 11.0)
|
|
31
31
|
rspec (~> 3.0)
|
|
32
32
|
wechat-callback!
|
|
33
33
|
|
|
34
34
|
BUNDLED WITH
|
|
35
|
-
1.
|
|
35
|
+
2.1.4
|
data/ROADMAP.md
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
# Wechat Callback Road Map 微信回调库路线图
|
|
2
2
|
|
|
3
3
|
## v0.1
|
|
4
|
+
|
|
4
5
|
1. Signature class
|
|
5
6
|
2. Message Signature class
|
|
6
7
|
3. XML Document class
|
|
7
8
|
|
|
8
9
|
## v0.2
|
|
10
|
+
|
|
9
11
|
1. Message Encryption class
|
|
10
12
|
2. Message Decryption class
|
|
11
13
|
|
|
12
14
|
## v0.3
|
|
15
|
+
|
|
13
16
|
1. Random Byte Array class
|
|
14
17
|
2. Secure Message class
|
|
15
18
|
|
|
16
19
|
## v0.4
|
|
20
|
+
|
|
17
21
|
1. Improve the Message Decryption class for the argument validation
|
|
18
22
|
2. Improve the Message Encryption class for the argument validation
|
|
19
23
|
3. Improve the Message Signature class for the argument validation
|
|
@@ -21,3 +25,7 @@
|
|
|
21
25
|
5. Improve the Secure Message class for the argument validation
|
|
22
26
|
6. Improve the Signature class for the argument validation
|
|
23
27
|
7. Improve the Xml Document class for the argument validation
|
|
28
|
+
|
|
29
|
+
## v1.0
|
|
30
|
+
|
|
31
|
+
1. Improve the Gem Spec
|
data/wechat-callback.gemspec
CHANGED
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
27
27
|
spec.require_paths = [ 'lib' ]
|
|
28
28
|
|
|
29
|
-
spec.add_development_dependency 'bundler', '~>
|
|
29
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
|
30
30
|
spec.add_development_dependency 'rake', '~> 11.0'
|
|
31
31
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
32
32
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wechat-callback
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0
|
|
4
|
+
version: '1.0'
|
|
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
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '2.0'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '2.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -103,8 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
103
|
- !ruby/object:Gem::Version
|
|
104
104
|
version: '0'
|
|
105
105
|
requirements: []
|
|
106
|
-
|
|
107
|
-
rubygems_version: 2.6.4
|
|
106
|
+
rubygems_version: 3.1.2
|
|
108
107
|
signing_key:
|
|
109
108
|
specification_version: 4
|
|
110
109
|
summary: Wechat Callback Library 微信回调库
|