stripe 5.28.0 → 5.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/VERSION +1 -1
- data/lib/stripe.rb +1 -2
- data/lib/stripe/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6279813f9c71288d0e0ebaed2322dca113ef330825ff6d0ca9cbb714e8b32629
|
4
|
+
data.tar.gz: 3669b9c18714d88ee54ee14d5446a07ccbd64e29d6ab6755ea1265037c52e4b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b23da505116525af9e0d3effb22b93ea6fcb59bea0ffec13ca56bb18a21a6ab6317e0885a213570328d192a55f03ff4fa307108e0765d7a15b6973de00c4e906
|
7
|
+
data.tar.gz: f44454e686caa4b97663a6629d78c1ac07406c9ef789f7f7c3f33091f3432e5d90a27207f1e35cb4d0e1e7fc7453266a6d233e5e70dadeacf993686dd306bf19
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 5.29.0 - 2021-01-05
|
4
|
+
* [#952](https://github.com/stripe/stripe-ruby/pull/952) Allow client_id configuration on instance config
|
5
|
+
|
3
6
|
## 5.28.0 - 2020-10-14
|
4
7
|
* [#950](https://github.com/stripe/stripe-ruby/pull/950) Add configuration option for `write_timeout` for connections on Ruby 2.6+
|
5
8
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
5.
|
1
|
+
5.29.0
|
data/lib/stripe.rb
CHANGED
@@ -79,13 +79,12 @@ module Stripe
|
|
79
79
|
def_delegators :@configuration, :logger, :logger=
|
80
80
|
def_delegators :@configuration, :max_network_retries, :max_network_retries=
|
81
81
|
def_delegators :@configuration, :enable_telemetry=, :enable_telemetry?
|
82
|
+
def_delegators :@configuration, :client_id=, :client_id
|
82
83
|
|
83
84
|
# Internal configurations
|
84
85
|
def_delegators :@configuration, :max_network_retry_delay
|
85
86
|
def_delegators :@configuration, :initial_network_retry_delay
|
86
87
|
def_delegators :@configuration, :ca_store
|
87
|
-
|
88
|
-
attr_accessor :client_id
|
89
88
|
end
|
90
89
|
|
91
90
|
# Gets the application for a plugin that's identified some. See
|
data/lib/stripe/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Stripe is the easiest way to accept payments online. See https://stripe.com
|
14
14
|
for details.
|
@@ -246,7 +246,7 @@ metadata:
|
|
246
246
|
github_repo: ssh://github.com/stripe/stripe-ruby
|
247
247
|
homepage_uri: https://stripe.com/docs/api/ruby
|
248
248
|
source_code_uri: https://github.com/stripe/stripe-ruby
|
249
|
-
post_install_message:
|
249
|
+
post_install_message:
|
250
250
|
rdoc_options: []
|
251
251
|
require_paths:
|
252
252
|
- lib
|
@@ -262,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
262
262
|
version: '0'
|
263
263
|
requirements: []
|
264
264
|
rubygems_version: 3.1.2
|
265
|
-
signing_key:
|
265
|
+
signing_key:
|
266
266
|
specification_version: 4
|
267
267
|
summary: Ruby bindings for the Stripe API
|
268
268
|
test_files:
|