tencentcloud-sdk-ruby 0.3.2 → 0.3.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0594512f5719b5ff7afc0f7a8d247df73b89ca649e58f4999c50508999ae4499'
4
- data.tar.gz: b8ef33c6e853c32fd36b7285ba2417a5dfbc9cf210f1573c8940c3c3a7f4a3cc
3
+ metadata.gz: de048898d122a83d0196714978d88e9827acf2c076d8cc6b2d581473b4e6c08f
4
+ data.tar.gz: 9d0d36a10f052c9c4312b67f6a253fdabd4486e1bedcaa7dcaf6e553a22a796e
5
5
  SHA512:
6
- metadata.gz: ac82dd64ce1e9c4541ee90f02afcebcf4a8be63b90edbc2464038ac131b46b243e2cf7481874d2295b83ff73ac82ce3b02c540ab5a712ca7d47dff36f93d9b8e
7
- data.tar.gz: f985fe3c4346d03dec5801b32443b91f8275b35486b87ea9655f36e0136c8063ec3c3d678a75c2bc87a2630c3f1f3100bc8e35c14413432a683fe6cbd4b28436
6
+ metadata.gz: 1bffe812d2c1677dbdc2135049090636ab69b567a1a932abe3ad3e01e311a888cf72d892223c865cf39fd5b2eb3c5027da00ffc680aeeb8ffd2a73da16a282dd
7
+ data.tar.gz: 6341579e48b0c0ab5e51887594b77c95d86204ba3822a79731065536f70b521f9d0c0802f04375a6ff1b3ea484a50375e7d888e469f4a161e02f81cc28225ce0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tencentcloud-sdk-ruby (0.3.2)
4
+ tencentcloud-sdk-ruby (0.3.3)
5
5
  typhoeus (~> 1.0)
6
6
 
7
7
  GEM
@@ -9,9 +9,9 @@ GEM
9
9
  specs:
10
10
  coderay (1.1.3)
11
11
  diff-lcs (1.3)
12
- ethon (0.12.0)
13
- ffi (>= 1.3.0)
14
- ffi (1.13.1)
12
+ ethon (0.14.0)
13
+ ffi (>= 1.15.0)
14
+ ffi (1.15.1)
15
15
  method_source (1.0.0)
16
16
  pry (0.13.1)
17
17
  coderay (~> 1.1)
@@ -44,4 +44,4 @@ DEPENDENCIES
44
44
  tencentcloud-sdk-ruby!
45
45
 
46
46
  BUNDLED WITH
47
- 2.1.4
47
+ 2.2.16
data/README.md CHANGED
@@ -1,7 +1,4 @@
1
1
  # TencentCloud
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/tencent_cloud`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
2
  ## Installation
6
3
 
7
4
  Add this line to your application's Gemfile:
@@ -35,10 +32,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
35
32
 
36
33
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
37
34
 
38
- ## Contributing
39
-
40
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/tencent_cloud. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
41
-
42
35
  ## License
43
36
 
44
37
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -3,6 +3,7 @@
3
3
  require 'openssl'
4
4
  require 'typhoeus'
5
5
  require 'uri'
6
+ require 'cgi'
6
7
  require 'json'
7
8
  module TencentCloud
8
9
  module Common
@@ -78,7 +79,7 @@ module TencentCloud
78
79
 
79
80
  def canonical_uri
80
81
  uri = URI(request.base_url)
81
- url_path = URI.encode(uri.path)
82
+ url_path = CGI.escape(uri.path)
82
83
  url_path == '' ? '/' : url_path
83
84
  end
84
85
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TencentCloud
4
- VERSION = '0.3.2'
4
+ VERSION = '0.3.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - FengCe
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-12-16 00:00:00.000000000 Z
11
+ date: 2021-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -121,7 +121,7 @@ metadata:
121
121
  homepage_uri: https://github.com/acecamp/tencentcloud-sdk-ruby
122
122
  source_code_uri: https://github.com/acecamp/tencentcloud-sdk-ruby
123
123
  changelog_uri: https://github.com/acecamp/agora-education-web-demo/blob/master/CHANGELOG.txt
124
- post_install_message:
124
+ post_install_message:
125
125
  rdoc_options: []
126
126
  require_paths:
127
127
  - lib
@@ -136,8 +136,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  - !ruby/object:Gem::Version
137
137
  version: '0'
138
138
  requirements: []
139
- rubygems_version: 3.1.2
140
- signing_key:
139
+ rubygems_version: 3.2.15
140
+ signing_key:
141
141
  specification_version: 4
142
142
  summary: 腾讯云开发者工具套件(SDK)3.0,SDK3.0是云 API3.0 平台的配套工具
143
143
  test_files: []