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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e64e030d3ee4520a2e563c4b17dd36846b6c8dc8375935f00da4ff0e0d4ddbd
4
- data.tar.gz: be8e38f346eb13659b072e7d8310647836781c4002c6f1a88a9f7b41d102103c
3
+ metadata.gz: c6259199f7664798d339669ee679182f3876bbd71ff426f3f6810840b7aa2b43
4
+ data.tar.gz: 65e5b754e8381e01f486faad4eea1eccb80176743fca4bdd94c5a87ce35d4e54
5
5
  SHA512:
6
- metadata.gz: 19fc8b2f791a0e4c0180315a9c32d0e654fdf672ad0cbeab660767ccf8165fea5386895a2a11ca211e8ae7df2aa19dadbf7ec4e64600313ae40cb0cee923b5c1
7
- data.tar.gz: 61f0b3a161f6375d8520326bd97c901dbaac51a769559fd59e5ab92f62fab64148cde9aec614d4cd26491be800333a996701cc8b3e01cb20864dee908119f794
6
+ metadata.gz: 2b3a36f7079a85027d3a2cd5e2aad3230e70affcdaac34019a51af49f6aecfe6e5d3fad187bb48a9934aae8a670324c4845c97363c4e137deb23d69156e3b80d
7
+ data.tar.gz: 99d0ba75cc97f3e389836a85ea0afb65a05e453e8e430ec6320d6c07af971c229a969b9fd0f5412cc4e43b00de0845e7c9184dd95a41fee9529ba17485d91391
@@ -13,5 +13,5 @@
13
13
  # Copyright:: Copyright (c) 2024 Yegor Bugayenko
14
14
  # License:: MIT
15
15
  class BazaRb
16
- VERSION = '0.0.10'
16
+ VERSION = '0.0.11'
17
17
  end
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
- with_retries(max_tries: @retries, rescue: TimedOut) do
476
- checked(
477
- Typhoeus::Request.post(
478
- home.append('account').append('transfer').to_s,
479
- body: {
480
- '_csrf' => csrf,
481
- 'human' => recipient,
482
- 'amount' => amount.to_s,
483
- 'summary' => summary
484
- },
485
- headers:,
486
- connecttimeout: @timeout,
487
- timeout: @timeout
488
- ),
489
- 302
490
- )
491
- end
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(status: 302)
102
- BazaRb.new('example.org', 443, '000').transfer('jeff', 42.50, 'for fun')
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.10
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-28 00:00:00.000000000 Z
10
+ date: 2025-03-29 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: backtrace