stripe 1.51.0 → 1.51.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 +4 -4
- data/History.txt +4 -0
- data/VERSION +1 -1
- data/lib/stripe/account.rb +33 -0
- data/lib/stripe/version.rb +1 -1
- data/test/stripe/account_test.rb +58 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d4b487a7f1742c56ebfafadb07b0a4ee7a352a4
|
4
|
+
data.tar.gz: ca0ab770ffc1e382f75b33c30a667d9fccd2af26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb66566f5cddad11f7fcdae7bd5ab6f50daf4366475da0da6bf8e2394063720b08c761bbc7f7afac446af907e2ecb5a8ea93b88d8e6aa9f5110c3afd44f00eb
|
7
|
+
data.tar.gz: 73c72693910b62975a67035cceca3ba5a3029c988eda0abeb268fd6d96dd2754bf93cb5198799c5f6903f06c2fe8dd031a85382047c24c6b90215fe1038707c6
|
data/History.txt
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.51.
|
1
|
+
1.51.1
|
data/lib/stripe/account.rb
CHANGED
@@ -28,6 +28,23 @@ module Stripe
|
|
28
28
|
super(id, opts)
|
29
29
|
end
|
30
30
|
|
31
|
+
# Set or replace an account's external account.
|
32
|
+
def external_account=(value)
|
33
|
+
super
|
34
|
+
|
35
|
+
# The parent setter will perform certain useful operations like
|
36
|
+
# converting to an APIResource if appropriate.
|
37
|
+
value = self.external_account
|
38
|
+
|
39
|
+
# Note that external_account may be a card, but could also be a tokenized
|
40
|
+
# card's ID (which is a string), and so we check its type here.
|
41
|
+
if value.is_a?(APIResource)
|
42
|
+
value.save_with_parent = true
|
43
|
+
end
|
44
|
+
|
45
|
+
value
|
46
|
+
end
|
47
|
+
|
31
48
|
def reject(params={}, opts={})
|
32
49
|
opts = Util.normalize_opts(opts)
|
33
50
|
response, opts = request(:post, resource_url + '/reject', params, opts)
|
@@ -93,6 +110,22 @@ module Stripe
|
|
93
110
|
|
94
111
|
ARGUMENT_NOT_PROVIDED = Object.new
|
95
112
|
|
113
|
+
# Set or replace an account's bank account.
|
114
|
+
#
|
115
|
+
# This method is deprecated. Please use #external_account instead.
|
116
|
+
def bank_account=(value)
|
117
|
+
super
|
118
|
+
value = self.bank_account
|
119
|
+
|
120
|
+
if value.is_a?(APIResource)
|
121
|
+
value.save_with_parent = true
|
122
|
+
end
|
123
|
+
|
124
|
+
value
|
125
|
+
end
|
126
|
+
extend Gem::Deprecate
|
127
|
+
deprecate :bank_account=, "#external_account=", 2017, 8
|
128
|
+
|
96
129
|
private
|
97
130
|
|
98
131
|
def serialize_additional_owners(legal_entity, additional_owners)
|
data/lib/stripe/version.rb
CHANGED
data/test/stripe/account_test.rb
CHANGED
@@ -289,5 +289,63 @@ module Stripe
|
|
289
289
|
}
|
290
290
|
assert_equal(expected, obj.serialize_params)
|
291
291
|
end
|
292
|
+
|
293
|
+
context "#external_account=" do
|
294
|
+
should "can have a token source set" do
|
295
|
+
a = Stripe::Account.new("test_account")
|
296
|
+
a.external_account = "tok_123"
|
297
|
+
assert_equal "tok_123", a.external_account
|
298
|
+
end
|
299
|
+
|
300
|
+
should "set a flag if given an object source" do
|
301
|
+
a = Stripe::Account.new("test_account")
|
302
|
+
a.external_account = {
|
303
|
+
:object => 'card'
|
304
|
+
}
|
305
|
+
assert_equal true, a.external_account.save_with_parent
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
context "#bank_account=" do
|
310
|
+
should "can have a token source set" do
|
311
|
+
old_stderr = $stderr
|
312
|
+
$stderr = StringIO.new
|
313
|
+
begin
|
314
|
+
a = Stripe::Account.new("test_account")
|
315
|
+
a.bank_account = "tok_123"
|
316
|
+
assert_equal "tok_123", a.bank_account
|
317
|
+
ensure
|
318
|
+
$stderr = old_stderr
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
should "set a flag if given an object source" do
|
323
|
+
old_stderr = $stderr
|
324
|
+
$stderr = StringIO.new
|
325
|
+
begin
|
326
|
+
a = Stripe::Account.new("test_account")
|
327
|
+
a.bank_account = {
|
328
|
+
:object => 'bank_account'
|
329
|
+
}
|
330
|
+
assert_equal true, a.bank_account.save_with_parent
|
331
|
+
ensure
|
332
|
+
$stderr = old_stderr
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
should "warn that #bank_account= is deprecated" do
|
337
|
+
old_stderr = $stderr
|
338
|
+
$stderr = StringIO.new
|
339
|
+
begin
|
340
|
+
a = Stripe::Account.new("test_account")
|
341
|
+
a.bank_account = "tok_123"
|
342
|
+
message = "NOTE: Stripe::Account#bank_account= is " +
|
343
|
+
"deprecated; use #external_account= instead"
|
344
|
+
assert_match Regexp.new(message), $stderr.string
|
345
|
+
ensure
|
346
|
+
$stderr = old_stderr
|
347
|
+
end
|
348
|
+
end
|
349
|
+
end
|
292
350
|
end
|
293
351
|
end
|
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: 1.51.
|
4
|
+
version: 1.51.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|