paykassa 0.1.18 → 0.1.19

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: 9ca6c7d9fae130410993885a70ac79f73f0931ea070b3a2764930ebe0a4c5f60
4
- data.tar.gz: 47ac9b82c7a7a72cdd3f6fa20bd98ac1f66c67883cafc8e4ae5c0c62d79f6604
3
+ metadata.gz: 70a713697194fdb5fd26d597affdbd11f99ede103c580120f9ec6a4ede4c8b4e
4
+ data.tar.gz: 850ad95ef63c237a96723798d274b86c187c99887ca6485b36639ee1341e9f9c
5
5
  SHA512:
6
- metadata.gz: 7bf84147032c2715e7aa57fa5516f1ad16559ef3085af263784147ce47e0936ac665e82e422cced940dd0cbd353c8992719babf66c15b903e3500d40b05769d6
7
- data.tar.gz: c9f55bc8ff40546c6da604404833fbb7ae44e3e66c61bfe1e6b9b522425fdad726e414b49d008de5350fffe3f22e0426e48e59c099f5c38cafe17433aeaf94c7
6
+ metadata.gz: ec7af94670998882aa912ff51649bba3644298a12cdaea7798d396087dcbc6bb6da8f336265cc0ffdb3514911cb4f0e69de096f0b4029d76f7099aaf018754c1
7
+ data.tar.gz: 6e8cf3a0a482bffd547fd9755fc9811a1b854b0a9525b0f44517fac4ad1728e051965ea2e065e8d9bd55ce007bf6fb14182982fd35b871b1670f0f0323a282b1
@@ -37,26 +37,30 @@ class PaykassaOrder
37
37
  # Request for create order
38
38
  def create_order(amount: , currency:, order_id:, paid_commision: , comment:, system:)
39
39
  make_request(
40
- func: :sci_create_order,
41
- amount: amount,
42
- currency: currency,
43
- order_id: order_id,
44
- phone: "false",
45
- paid_commission: paid_commision,
46
- comment: comment,
47
- system: SYSTEM_IDS[system]
40
+ {
41
+ func: :sci_create_order,
42
+ amount: amount,
43
+ currency: currency,
44
+ order_id: order_id,
45
+ phone: "false",
46
+ paid_commission: paid_commision,
47
+ comment: comment,
48
+ system: SYSTEM_IDS[system]
49
+ }
48
50
  )
49
51
  end
50
52
  def get_data(amount: , currency:, order_id:, paid_commission: , comment:, system:)
51
53
  make_request(
52
- func: :sci_create_order_get_data,
53
- amount: amount,
54
- currency: currency,
55
- order_id: order_id,
56
- phone: "false",
57
- paid_commission: paid_commission,
58
- comment: comment,
59
- system: SYSTEM_IDS[system]
54
+ {
55
+ func: :sci_create_order_get_data,
56
+ amount: amount,
57
+ currency: currency,
58
+ order_id: order_id,
59
+ phone: "false",
60
+ paid_commission: paid_commission,
61
+ comment: comment,
62
+ system: SYSTEM_IDS[system]
63
+ }
60
64
  )
61
65
  end
62
66
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Paykassa
4
- VERSION = "0.1.18"
4
+ VERSION = "0.1.19"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paykassa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - nottewae