wechat-callback 1.0 → 1.1

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
2
  SHA256:
3
- metadata.gz: 7402c681443c8723925ac219c2168841288c6f97807d76882fa9c8dcf50321ad
4
- data.tar.gz: f84520a58e0309c0b69dc632297c46abab1d025842ac200d01bcd74868f074e5
3
+ metadata.gz: 59084f04063e37bfcd1fd9650c89dbd40f8a7e55262b83887a868bbfe5201f38
4
+ data.tar.gz: 4eaa12e953e6a40b1d289e4e2692281ebbd6746a7df22d732e247dc877971637
5
5
  SHA512:
6
- metadata.gz: 515222aaba11498703110a15fabbd153c26145b9f110d2cf5ec78c54ee3190208b0651298ac02e643a9d9cf92714f782ed8913356976f4e3443e2b9006055017
7
- data.tar.gz: 9109aaf698844b0a670151c5ad9c71a0d2b27f885fa12fc6591affd930887b9fe8fb3992c3acc158c2a0b2440acf29da03f7e62986d01831c71f8ca197ae6df3
6
+ metadata.gz: 8c732c1a8fda845b6e98e589d304d911e21d1a5b646381d0bba4f5f240d6cadd98f5c61408380bb04945e2f271a4c47f51e7c6193ac02e4396a103a2d7f74ba0
7
+ data.tar.gz: e3751289a9ee515ad1b85d0383df0201bfe3a00e2ed0f45e4eb0014b4666c45663897b7c027992c6595a3fc21205ec4172a5403b83eedc8a2c122ea020b9ccd5
@@ -18,14 +18,18 @@
18
18
 
19
19
  ## v0.4
20
20
 
21
- 1. Improve the Message Decryption class for the argument validation
22
- 2. Improve the Message Encryption class for the argument validation
23
- 3. Improve the Message Signature class for the argument validation
24
- 4. Improve the Random Byte Array class for the argument validation
25
- 5. Improve the Secure Message class for the argument validation
26
- 6. Improve the Signature class for the argument validation
27
- 7. Improve the Xml Document class for the argument validation
21
+ 1. Improved the Message Decryption class for the argument validation
22
+ 2. Improved the Message Encryption class for the argument validation
23
+ 3. Improved the Message Signature class for the argument validation
24
+ 4. Improved the Random Byte Array class for the argument validation
25
+ 5. Improved the Secure Message class for the argument validation
26
+ 6. Improved the Signature class for the argument validation
27
+ 7. Improved the Xml Document class for the argument validation
28
28
 
29
29
  ## v1.0
30
30
 
31
- 1. Improve the Gem Spec
31
+ 1. Improved the Gem Spec
32
+
33
+ ## v1.1
34
+
35
+ 1. Improved the Ruby Gem Specification to depend on Rake v13.0 & RSpec v3.9
@@ -1,34 +1,34 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wechat-callback (1.0)
4
+ wechat-callback (1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  diff-lcs (1.3)
10
- rake (11.3.0)
11
- rspec (3.5.0)
12
- rspec-core (~> 3.5.0)
13
- rspec-expectations (~> 3.5.0)
14
- rspec-mocks (~> 3.5.0)
15
- rspec-core (3.5.4)
16
- rspec-support (~> 3.5.0)
17
- rspec-expectations (3.5.0)
10
+ rake (13.0.1)
11
+ rspec (3.9.0)
12
+ rspec-core (~> 3.9.0)
13
+ rspec-expectations (~> 3.9.0)
14
+ rspec-mocks (~> 3.9.0)
15
+ rspec-core (3.9.1)
16
+ rspec-support (~> 3.9.1)
17
+ rspec-expectations (3.9.1)
18
18
  diff-lcs (>= 1.2.0, < 2.0)
19
- rspec-support (~> 3.5.0)
20
- rspec-mocks (3.5.0)
19
+ rspec-support (~> 3.9.0)
20
+ rspec-mocks (3.9.1)
21
21
  diff-lcs (>= 1.2.0, < 2.0)
22
- rspec-support (~> 3.5.0)
23
- rspec-support (3.5.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-support (3.9.2)
24
24
 
25
25
  PLATFORMS
26
26
  ruby
27
27
 
28
28
  DEPENDENCIES
29
29
  bundler (~> 2.0)
30
- rake (~> 11.0)
31
- rspec (~> 3.0)
30
+ rake (~> 13.0)
31
+ rspec (~> 3.9)
32
32
  wechat-callback!
33
33
 
34
34
  BUNDLED WITH
data/ROADMAP.md CHANGED
@@ -29,3 +29,7 @@
29
29
  ## v1.0
30
30
 
31
31
  1. Improve the Gem Spec
32
+
33
+ ## v1.1
34
+
35
+ 1. Improved the Ruby Gem Specification to depend on Rake v13.0 & RSpec v3.9
@@ -1,5 +1,5 @@
1
1
  module Wechat
2
2
  module Callback
3
- VERSION = '1.0'.freeze
3
+ VERSION = '1.1'.freeze
4
4
  end
5
5
  end
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.require_paths = [ 'lib' ]
28
28
 
29
29
  spec.add_development_dependency 'bundler', '~> 2.0'
30
- spec.add_development_dependency 'rake', '~> 11.0'
31
- spec.add_development_dependency 'rspec', '~> 3.0'
30
+ spec.add_development_dependency 'rake', '~> 13.0'
31
+ spec.add_development_dependency 'rspec', '~> 3.9'
32
32
 
33
33
  end
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: '1.0'
4
+ version: '1.1'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Topbit Du
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-17 00:00:00.000000000 Z
11
+ date: 2020-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '11.0'
33
+ version: '13.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '11.0'
40
+ version: '13.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '3.0'
47
+ version: '3.9'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '3.0'
54
+ version: '3.9'
55
55
  description: Wechat Callback Library is a code base to handle the remote calls from
56
56
  the Wechat servers. 微信回调库用于处理微信服务器发出的请求。
57
57
  email: