stripe 4.4.0 → 4.4.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: c6de5937bd8a3dbcb24eff963fe7fc5c9eadb51277bd0fb9eb0da1e4d29ed7ae
4
- data.tar.gz: f932fda4faabb39cc3ebea6486b7316a39f0a16a83fcacd4e3546d8cabff48a7
3
+ metadata.gz: d1df52a297e70052aeb384082e215945ae3ca4c7f5269b284fab2e3f2a14c3f7
4
+ data.tar.gz: 3841e60c6dc529a32b175b67020fc5b55bb7ae684a45d4b5c650071a3e841491
5
5
  SHA512:
6
- metadata.gz: 8677c53d52d58d392a3b79329f3e7b582e3b89748a6dacee46befef16402777c31fc73ceef3538df62d02ed3d0f268032316519f58671ee1857b2b446daca32d
7
- data.tar.gz: 5902050338e4224c82e70e14d0a84c3aa5be36f184f530646d1978c5afe2a1e4bb875b2d4a7610510a7e252644abc1a8eb919c03b85bae5191665155c8ab3d5a
6
+ metadata.gz: c9c6d3cd1d35c6ee4d6203f82d03682fa97319fbc1ec601c974465d3e98917ed330e33a04e96008efdb8f16116886d0a6bbfbd111f38d2fb120f5af2ee1a426c
7
+ data.tar.gz: 3c6e277707c0bbe950f63b964c61eb012668ae3750c06e0b0e601c194fbe9038cd8be6bebae7ebd2fe92cf546adc9fcb96d9d6dcd454e55658971d4762826989
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.4.1 - 2018-12-31
4
+ * [#718](https://github.com/stripe/stripe-ruby/pull/718) Fix an error message typo
5
+
3
6
  ## 4.4.0 - 2018-12-21
4
7
  * [#716](https://github.com/stripe/stripe-ruby/pull/716) Add support for the `CheckoutSession` resource
5
8
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.4.0
1
+ 4.4.1
@@ -103,7 +103,7 @@ module Stripe
103
103
  end
104
104
 
105
105
  def legal_entity=(_)
106
- raise NoMethodError, 'Overridding legal_entity can cause serious issues. Instead, set the individual fields of legal_entity like blah.legal_entity.first_name = \'Blah\''
106
+ raise NoMethodError, 'Overriding legal_entity can cause serious issues. Instead, set the individual fields of legal_entity like blah.legal_entity.first_name = \'Blah\''
107
107
  end
108
108
 
109
109
  def deauthorize(client_id = nil, opts = {})
@@ -278,7 +278,7 @@ module Stripe
278
278
  end
279
279
 
280
280
  # Formats a plugin "app info" hash into a string that we can tack onto the
281
- # end of a User-Agent string where it'll be fairly prominant in places like
281
+ # end of a User-Agent string where it'll be fairly prominent in places like
282
282
  # the Dashboard. Note that this formatting has been implemented to match
283
283
  # other libraries, and shouldn't be changed without universal consensus.
284
284
  def format_app_info(info)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "4.4.0".freeze
4
+ VERSION = "4.4.1".freeze
5
5
  end
@@ -452,14 +452,14 @@ module Stripe
452
452
 
453
453
  should "#to_s will call to_s for all embedded stripe objects" do
454
454
  obj = Stripe::StripeObject.construct_from(id: "id",
455
- # embeded list object
455
+ # embedded list object
456
456
  refunds: Stripe::ListObject.construct_from(data: [
457
457
  # embedded object in list
458
458
  Stripe::StripeObject.construct_from(id: "id",
459
459
  # embedded object in an object in a list object
460
460
  metadata: Stripe::StripeObject.construct_from(foo: "bar")),
461
461
  ]),
462
- # embeded stripe object
462
+ # embedded stripe object
463
463
  metadata: Stripe::StripeObject.construct_from(foo: "bar"))
464
464
  expected = JSON.pretty_generate(id: "id",
465
465
  refunds: {
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: 4.4.0
4
+ version: 4.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-21 00:00:00.000000000 Z
11
+ date: 2018-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday