wechat-callback 0.4 → 1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ef105a6836e585949081a3fcf3a7de5b1b0f81e1
4
- data.tar.gz: 2e6cb59a7cae41d9828772043df9a93fd0e937fa
2
+ SHA256:
3
+ metadata.gz: 7402c681443c8723925ac219c2168841288c6f97807d76882fa9c8dcf50321ad
4
+ data.tar.gz: f84520a58e0309c0b69dc632297c46abab1d025842ac200d01bcd74868f074e5
5
5
  SHA512:
6
- metadata.gz: 0cfef766eb57bd9d01016c30a45976e35eb9003b1e10c6a0bf655b27f625f9f77b82910d61829bf4717030b043b8031c780e2a9395f331d3baea3d0844ef44bd
7
- data.tar.gz: 5c87cb1b46cd6496ce808e4b1eba4c1788c6917a49f292c9af32a8c1ee063c58bc5b9c78df15984c516cefdac8ee1c7ae2af1d5b1e1ce06121e64c3d1a540229
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)
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 (~> 1.11)
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.13.6
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
@@ -1,5 +1,5 @@
1
1
  module Wechat
2
2
  module Callback
3
- VERSION = '0.4'.freeze
3
+ VERSION = '1.0'.freeze
4
4
  end
5
5
  end
@@ -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', '~> 1.11'
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'
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: 2017-05-16 00:00:00.000000000 Z
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: '1.11'
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: '1.11'
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
- rubyforge_project:
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 微信回调库