baza.rb 0.0.10 → 0.0.11
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/lib/baza-rb/version.rb +1 -1
- data/lib/baza-rb.rb +21 -17
- data/test/test_baza-rb.rb +5 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6259199f7664798d339669ee679182f3876bbd71ff426f3f6810840b7aa2b43
|
4
|
+
data.tar.gz: 65e5b754e8381e01f486faad4eea1eccb80176743fca4bdd94c5a87ce35d4e54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b3a36f7079a85027d3a2cd5e2aad3230e70affcdaac34019a51af49f6aecfe6e5d3fad187bb48a9934aae8a670324c4845c97363c4e137deb23d69156e3b80d
|
7
|
+
data.tar.gz: 99d0ba75cc97f3e389836a85ea0afb65a05e453e8e430ec6320d6c07af971c229a969b9fd0f5412cc4e43b00de0845e7c9184dd95a41fee9529ba17485d91391
|
data/lib/baza-rb/version.rb
CHANGED
data/lib/baza-rb.rb
CHANGED
@@ -471,26 +471,30 @@ class BazaRb
|
|
471
471
|
raise 'The "amount" is nil' if amount.nil?
|
472
472
|
raise 'The "amount" must be Float' unless amount.is_a?(Float)
|
473
473
|
raise 'The "summary" is nil' if summary.nil?
|
474
|
+
id = nil
|
474
475
|
elapsed(@loog) do
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
476
|
+
ret =
|
477
|
+
with_retries(max_tries: @retries, rescue: TimedOut) do
|
478
|
+
checked(
|
479
|
+
Typhoeus::Request.post(
|
480
|
+
home.append('account').append('transfer').to_s,
|
481
|
+
body: {
|
482
|
+
'_csrf' => csrf,
|
483
|
+
'human' => recipient,
|
484
|
+
'amount' => amount.to_s,
|
485
|
+
'summary' => summary
|
486
|
+
},
|
487
|
+
headers:,
|
488
|
+
connecttimeout: @timeout,
|
489
|
+
timeout: @timeout
|
490
|
+
),
|
491
|
+
302
|
492
|
+
)
|
493
|
+
end
|
494
|
+
id = ret.headers['X-Zerocracy-ReceiptId'].to_i
|
492
495
|
throw :"Transferred ##{amount} to @#{recipient} at #{@host}"
|
493
496
|
end
|
497
|
+
id
|
494
498
|
end
|
495
499
|
|
496
500
|
# Pop job from the server.
|
data/test/test_baza-rb.rb
CHANGED
@@ -98,8 +98,11 @@ class TestBazaRb < Minitest::Test
|
|
98
98
|
def test_transfer_payment
|
99
99
|
WebMock.disable_net_connect!
|
100
100
|
stub_request(:get, 'https://example.org/csrf').to_return(body: 'token')
|
101
|
-
stub_request(:post, 'https://example.org/account/transfer').to_return(
|
102
|
-
|
101
|
+
stub_request(:post, 'https://example.org/account/transfer').to_return(
|
102
|
+
status: 302, headers: { 'X-Zerocracy-ReceiptId' => '42' }
|
103
|
+
)
|
104
|
+
id = BazaRb.new('example.org', 443, '000').transfer('jeff', 42.50, 'for fun')
|
105
|
+
assert_equal(42, id)
|
103
106
|
end
|
104
107
|
|
105
108
|
def test_durable_place
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: baza.rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-29 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: backtrace
|