wechat-core 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: 2b8c7807e62ea30f7f58700085d58c896b7912d9ed607f2691e65103930b17f8
4
- data.tar.gz: 2495f4c459e434311e2236893ca21d4ad086940cd2d1df632230e1a1122c711b
3
+ metadata.gz: 5d2196843ea9386bc5cb2ffcefbc295d63afad08712f2e0438f87a5e0714a10b
4
+ data.tar.gz: 5c20fd3b36546284e28f7062c90e29c6ac832f23bc7de25e5cbc1b6ec753ad61
5
5
  SHA512:
6
- metadata.gz: 4641b00392450119b41e285994c0912a22d39e4a297e9f5fbc319e05dae9b2baf32e512416bfd113a8c426102a78942495f115511e5d9d86cbc8ea0929e078c5
7
- data.tar.gz: 3f3214f8391dff6ae3f5ad574108b3aa0c042a95f83d8558c93832525d1f6936676de4371d99aaebf8caa478c0c7c13c3bfd09406fcb29e59e7254b77087f89f
6
+ metadata.gz: 48f6b7c08a24e898a13a09dff6229d9dc46b729ead4ee9ac816035da381871020ce0a4c267681b8f62ef76755128d5738bda99cd435f1c6c342d64da646a18b3
7
+ data.tar.gz: fc9b12abf85f6af910aa561e5aa5790b4e1d0740d8642a3aa1a51c6206041d2d1c3ce1be311da73ea37dc50880e09ae16666ce7e91aefa609c3bd9db80e851c8
@@ -23,21 +23,29 @@
23
23
  4. Improved the Follower wrapper class for the argument validation
24
24
  5. Improved the Follower Profile wrapper class for the argument validation
25
25
  6. Improved the Server Address wrapper class for the argument validation
26
- 7. Improve the Tiny Link wrapper class for the argument validation
27
- 8. Improve the Access Token wrapper class to deprecate ::load method, use the Access Token ::create method instead
26
+ 7. Improved the Tiny Link wrapper class for the argument validation
27
+ 8. Improved the Access Token wrapper class to deprecate ::load method, use the Access Token ::create method instead
28
28
 
29
29
  ## v0.4.1
30
30
 
31
- 1. Improve the Access Token wrapper class for the HTTP request
32
- 2. Improve the Follower wrapper class for the HTTP request
33
- 3. Improve the Follower Profile wrapper class for the HTTP request
34
- 4. Improve the Server Address wrapper class for the HTTP request
35
- 5. Improve the Tiny Link wrapper class for the HTTP request
31
+ 1. Improved the Access Token wrapper class for the HTTP request
32
+ 2. Improved the Follower wrapper class for the HTTP request
33
+ 3. Improved the Follower Profile wrapper class for the HTTP request
34
+ 4. Improved the Server Address wrapper class for the HTTP request
35
+ 5. Improved the Tiny Link wrapper class for the HTTP request
36
36
 
37
37
  ## v0.4.2
38
38
 
39
- 1. Improve the Access Token wrapper class for the HTTP request
40
- 2. Improve the Follower wrapper class for the HTTP request
41
- 3. Improve the Follower Profile wrapper class for the HTTP request
42
- 4. Improve the Server Address wrapper class for the HTTP request
43
- 5. Improve the Tiny Link wrapper class for the HTTP request
39
+ 1. Improved the Access Token wrapper class for the HTTP request
40
+ 2. Improved the Follower wrapper class for the HTTP request
41
+ 3. Improved the Follower Profile wrapper class for the HTTP request
42
+ 4. Improved the Server Address wrapper class for the HTTP request
43
+ 5. Improved the Tiny Link wrapper class for the HTTP request
44
+
45
+ ## v1.0
46
+
47
+ 1. Improved the Gem Spec
48
+
49
+ ## v1.1
50
+
51
+ 1. Improved the Ruby Gem Specification to depend on Rake v13.0 & RSpec v3.9
data/ROADMAP.md CHANGED
@@ -48,9 +48,13 @@
48
48
 
49
49
  ## v1.1
50
50
 
51
+ 1. Improve the Ruby Gem Specification to depend on Rake v13.0 & RSpec v3.9
52
+
53
+ ## v1.2
54
+
51
55
  1. Improve the Follower & Follower Profile wrapper class to support the Keyword Arguments
52
56
  2. Removed the depreated classes and methods
53
57
 
54
- ## v1.2
58
+ ## v1.3
55
59
 
56
60
  1. Logo wrapper class
@@ -1,5 +1,5 @@
1
1
  module Wechat
2
2
  module Core
3
- VERSION = '1.0'.freeze
3
+ VERSION = '1.1'.freeze
4
4
  end
5
5
  end
@@ -27,8 +27,8 @@ 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
  spec.add_dependency 'activesupport', '~> 6.0'
34
34
  spec.add_dependency 'httpclient', '~> 2.8'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wechat-core
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
  - !ruby/object:Gem::Dependency
56
56
  name: activesupport
57
57
  requirement: !ruby/object:Gem::Requirement