chargebee 2.31.0 → 2.31.1

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
  SHA1:
3
- metadata.gz: 64f4251f26d17c34b6bebfc99dd71bfaefe2b500
4
- data.tar.gz: 4a2e677272067e2a1a21e7750bfb4200ea7cb18a
3
+ metadata.gz: d37ea625e5a4d88572994a5bb068275cc9cdac0b
4
+ data.tar.gz: 3c53db3993c9df8bc3c4caf2fbae82ff4698d35e
5
5
  SHA512:
6
- metadata.gz: cc9700091cd6d512566218765d56e13fcd3e0b468e85bbdcce8e2037d6ae48c7a7f623f05da59f63c6910475f6157b73967544ebf2de16b458df8b2fd8135fd4
7
- data.tar.gz: 5bfdccbb3e7eb2955e976178bf48aa9298ffe00aa7bf484e5eda794f2e4b85637d5dc132834205a324208d9b7c029a9f8014343bb6c25cd1bee9c72ad4916877
6
+ metadata.gz: 29ba26e14427489f8793bab92f3c903a5b6c6c47e9557853cfb8cb248faef71e35e71077524ade60e82165b6c3aa373bea697a6c5ada616c2c86522eb802a761
7
+ data.tar.gz: 010fd1a83c7da71d75f24db40e6e6549a554c5af0855c0fe90c305f8945dc2358b426336bf2f83a3c99a0055b8d15b3188afdd87f71c043e57edf03896171ab1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### v2.31.1 (2023-10-09)
2
+ * * *
3
+
4
+ * Fixed URI encoded isue.
5
+
6
+
1
7
  ### v2.31.0 (2023-09-26)
2
8
  * * *
3
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- chargebee (2.31.0)
4
+ chargebee (2.31.1)
5
5
  cgi (>= 0.1.0, < 1.0.0)
6
6
  json_pure (~> 2.1)
7
7
  rest-client (>= 1.8, <= 2.0.2)
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![gem](https://img.shields.io/gem/v/chargebee.svg?maxAge=2)](https://rubygems.org/gems/chargebee)
4
4
  [![gem](https://img.shields.io/gem/dtv/chargebee.svg?maxAge=2)](https://rubygems.org/gems/chargebee)
5
5
 
6
- This is the Ruby Library for integrating with Chargebee. Sign up for a Chargebee account [here](https://www.chargebee.com).
6
+ This is the Ruby Library for integrating with Chargebee. Sign up for a Chargebee account {here}[https://www.chargebee.com].
7
7
 
8
8
  Chargebee now supports two API versions - [V1](https://apidocs.chargebee.com/docs/api/v1) and [V2](https://apidocs.chargebee.com/docs/api), of which V2 is the latest release and all future developments will happen in V2. This library is for <b>API version V2</b>. If you’re looking for V1, head to [chargebee-v1 branch](https://github.com/chargebee/chargebee-ruby/tree/chargebee-v1).
9
9
 
data/chargebee.gemspec CHANGED
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.5'
5
5
  s.required_ruby_version = '>= 1.9.3'
6
6
  s.name = 'chargebee'
7
- s.version = '2.31.0'
8
- s.date = '2023-09-26'
7
+ s.version = '2.31.1'
8
+ s.date = '2023-10-09'
9
9
  s.summary = "Ruby client for Chargebee API."
10
10
  s.description = "Subscription Billing - Simple. Secure. Affordable. More details at www.chargebee.com."
11
11
  s.metadata = {
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
 
15
15
  s.authors = ['Rajaraman S', 'Thiyagarajan T']
16
16
  s.email = ['rr@chargebee.com', 'thiyagu@chargebee.com']
17
- s.homepage = 'https://apidocs.chargebee.com/api/docs?lang=ruby'
17
+ s.homepage = 'https://apidocs.chargebee.com/docs/api?lang=ruby'
18
18
  s.license = 'MIT'
19
19
 
20
20
  s.require_paths = %w[lib]
@@ -57,7 +57,7 @@ module ChargeBee
57
57
  if(path.nil? || path.strip.length < 1)
58
58
  raise "Id is empty or nil"
59
59
  end
60
- url = "#{url}/#{CGI.escape(path.strip)}"
60
+ url = "#{url}/#{CGI.escape(path.strip).gsub("%2F", "/")}"
61
61
  end
62
62
  return url
63
63
  end
data/lib/chargebee.rb CHANGED
@@ -68,7 +68,7 @@ require File.dirname(__FILE__) + '/chargebee/models/token.rb'
68
68
 
69
69
  module ChargeBee
70
70
 
71
- VERSION = '2.31.0'
71
+ VERSION = '2.31.1'
72
72
 
73
73
  @@default_env = nil
74
74
  @@verify_ca_certs = true
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chargebee
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.31.0
4
+ version: 2.31.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rajaraman S
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-09-26 00:00:00.000000000 Z
12
+ date: 2023-10-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure
@@ -187,7 +187,7 @@ files:
187
187
  - spec/errors_spec.rb
188
188
  - spec/sample_response.rb
189
189
  - spec/spec_helper.rb
190
- homepage: https://apidocs.chargebee.com/api/docs?lang=ruby
190
+ homepage: https://apidocs.chargebee.com/docs/api?lang=ruby
191
191
  licenses:
192
192
  - MIT
193
193
  metadata: