wechat-jsapi 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: a69f90ea4b1e0fa0ab2f79a356c1ecfca1b24418784780c1d43e60ffa4a2e974
4
- data.tar.gz: 3d13a0e114bddc12e4e9e5171a6e628c71715e2cae92737b00c517ffb9987c2d
3
+ metadata.gz: ffa1f7cd924af64addefdfb8a6fb4b5e91057963d534c93471902b2455357262
4
+ data.tar.gz: d7dabacecd088826cc469ce6836f25202ff1a9b361efe39691e8b47f8d2c1520
5
5
  SHA512:
6
- metadata.gz: '08f493d640e0eb641e14d4b3695fa248f5442835d2770e109f14fff0b05cedcbe8e19bc467733b5dbfa53f9ce66c30e6a7c8aea7482d35c67c545b3198459515'
7
- data.tar.gz: c2abca5285985f1d63dd75b4dedba2e0822350112d37f5f4f0815c5752ff3087ee3b0b965401ef053195ae383dbe20a0209512e572ae3e30debff343ee0d6aaf
6
+ metadata.gz: d058aff845ea4942ceac01ff4a46d6e87f451ddc61892aa197b60b8f96f7d6e316d0c7dee7e99965b937e203d0aa8d40e230979d4569f6f3bf7611e134e63f6c
7
+ data.tar.gz: cd0b21dd48a8f3e2fc877e995092e3985eeb7440f91ff0c5b33e8ca349b87c59ebd684bc4730795d85fa245196b03b11579c58879a42cb51b1ab1d16cda000c3
@@ -7,7 +7,7 @@
7
7
 
8
8
  ## v0.1.1
9
9
 
10
- 1. Improved the Ruby Gem Specification to depend on [wechat-core](https://github.com/topbitdu/wechat-core) v0.4
10
+ 1. Improved the Ruby Gem Specification to depend on [Wechat Core](https://github.com/topbitdu/wechat-core) v0.4
11
11
  2. Improved the Signature class for the argument validation
12
12
  3. Improved the Ticket wrapper class for the argument validation & HTTP request
13
13
 
@@ -21,4 +21,8 @@
21
21
 
22
22
  ## v1.0
23
23
 
24
- 1. Improved the Ruby Gem Specificaition to depend on bundler v2.0, rake v11.0, & [wechat-core](https://github.com/topbitdu/wechat-core) v1.0
24
+ 1. Improved the Ruby Gem Specificaition to depend on Bundler v2.0, Rake v11.0, & [Wechat Core](https://github.com/topbitdu/wechat-core) v1.0
25
+
26
+ ## v1.1
27
+
28
+ 1. Improved the Ruby Gem Specificaition to depend on Rake v13.0, & RSpec v3.9
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wechat-jsapi (1.0)
4
+ wechat-jsapi (1.1)
5
5
  wechat-core (~> 1.0)
6
6
 
7
7
  GEM
@@ -19,24 +19,24 @@ GEM
19
19
  i18n (1.8.2)
20
20
  concurrent-ruby (~> 1.0)
21
21
  minitest (5.14.0)
22
- rake (11.3.0)
23
- rspec (3.5.0)
24
- rspec-core (~> 3.5.0)
25
- rspec-expectations (~> 3.5.0)
26
- rspec-mocks (~> 3.5.0)
27
- rspec-core (3.5.4)
28
- rspec-support (~> 3.5.0)
29
- rspec-expectations (3.5.0)
22
+ rake (13.0.1)
23
+ rspec (3.9.0)
24
+ rspec-core (~> 3.9.0)
25
+ rspec-expectations (~> 3.9.0)
26
+ rspec-mocks (~> 3.9.0)
27
+ rspec-core (3.9.1)
28
+ rspec-support (~> 3.9.1)
29
+ rspec-expectations (3.9.1)
30
30
  diff-lcs (>= 1.2.0, < 2.0)
31
- rspec-support (~> 3.5.0)
32
- rspec-mocks (3.5.0)
31
+ rspec-support (~> 3.9.0)
32
+ rspec-mocks (3.9.1)
33
33
  diff-lcs (>= 1.2.0, < 2.0)
34
- rspec-support (~> 3.5.0)
35
- rspec-support (3.5.0)
34
+ rspec-support (~> 3.9.0)
35
+ rspec-support (3.9.2)
36
36
  thread_safe (0.3.6)
37
37
  tzinfo (1.2.7)
38
38
  thread_safe (~> 0.1)
39
- wechat-core (1.0)
39
+ wechat-core (1.1)
40
40
  activesupport (~> 6.0)
41
41
  httpclient (~> 2.8)
42
42
  zeitwerk (2.3.0)
@@ -46,8 +46,8 @@ PLATFORMS
46
46
 
47
47
  DEPENDENCIES
48
48
  bundler (~> 2.0)
49
- rake (~> 11.0)
50
- rspec (~> 3.0)
49
+ rake (~> 13.0)
50
+ rspec (~> 3.9)
51
51
  wechat-jsapi!
52
52
 
53
53
  BUNDLED WITH
data/ROADMAP.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ## v0.1.1
9
9
 
10
- 1. Improve the Ruby Gem Specification to depend on [wechat-core](https://github.com/topbitdu/wechat-core) v0.4
10
+ 1. Improve the Ruby Gem Specification to depend on [Wechat Core](https://github.com/topbitdu/wechat-core) v0.4
11
11
  2. Improve the Signature class for the argument validation
12
12
  3. Improve the Ticket wrapper class for the argument validation & HTTP request
13
13
 
@@ -21,4 +21,8 @@
21
21
 
22
22
  ## v1.0
23
23
 
24
- 1. Improve the Ruby Gem Specificaition to depend on bundler v2.0, rake v11.0, & [wechat-core](https://github.com/topbitdu/wechat-core) v1.0
24
+ 1. Improve the Ruby Gem Specificaition to depend on Bundler v2.0, Rake v11.0, & [Wechat Core](https://github.com/topbitdu/wechat-core) v1.0
25
+
26
+ ## v1.1
27
+
28
+ 1. Improve the Ruby Gem Specificaition to depend on Rake v13.0, & RSpec v3.9
@@ -1,5 +1,5 @@
1
1
  module Wechat
2
2
  module JSAPI
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 'wechat-core', '~> 1.0'
34
34
 
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: '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: wechat-core
57
57
  requirement: !ruby/object:Gem::Requirement