paykassa 0.1.17 → 0.1.18

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: 8e3593a8efb9f87d15ae638745fa20b92222155605b70b51114fbaf77afe28d2
4
- data.tar.gz: 3b0113e6185dbd9fa1e62109fd6e9e4c7adea32546cefcdbd61b9bf27ec001f4
3
+ metadata.gz: 9ca6c7d9fae130410993885a70ac79f73f0931ea070b3a2764930ebe0a4c5f60
4
+ data.tar.gz: 47ac9b82c7a7a72cdd3f6fa20bd98ac1f66c67883cafc8e4ae5c0c62d79f6604
5
5
  SHA512:
6
- metadata.gz: d0012c0e1e99aea0ed3473c76f6fd2825456d124f22d9fed61cc3946110c4fb70e206f32bb47ffa687fbe7db94c41c7cd50edeed79c62f352bb351f71a1e364d
7
- data.tar.gz: f48c8bfed4f650ac94a26bdf0a03304b03df16fcb18c1f81f8a4580ee93dddf45c3e34e63c2a7803f48eeae93a5e977382ce0f552ebee5f3a248b1f8073c9d53
6
+ metadata.gz: 7bf84147032c2715e7aa57fa5516f1ad16559ef3085af263784147ce47e0936ac665e82e422cced940dd0cbd353c8992719babf66c15b903e3500d40b05769d6
7
+ data.tar.gz: c9f55bc8ff40546c6da604404833fbb7ae44e3e66c61bfe1e6b9b522425fdad726e414b49d008de5350fffe3f22e0426e48e59c099f5c38cafe17433aeaf94c7
@@ -47,14 +47,14 @@ class PaykassaOrder
47
47
  system: SYSTEM_IDS[system]
48
48
  )
49
49
  end
50
- def get_data(amount: , currency:, order_id:, paid_commision: , comment:, system:)
50
+ def get_data(amount: , currency:, order_id:, paid_commission: , comment:, system:)
51
51
  make_request(
52
52
  func: :sci_create_order_get_data,
53
53
  amount: amount,
54
54
  currency: currency,
55
55
  order_id: order_id,
56
56
  phone: "false",
57
- paid_commission: paid_commision,
57
+ paid_commission: paid_commission,
58
58
  comment: comment,
59
59
  system: SYSTEM_IDS[system]
60
60
  )
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Paykassa
4
- VERSION = "0.1.17"
4
+ VERSION = "0.1.18"
5
5
  end
data/lib/paykassa.rb CHANGED
@@ -42,12 +42,12 @@ module Paykassa
42
42
  def rate(c_in, c_out)
43
43
  @paykassa_pay.currency_rate(c_in, c_out)
44
44
  end
45
- def get_order_address(amount: , currency:, order_id:, paid_commision: , comment: "from paykassa gem", system:)
45
+ def get_order_address(amount: , currency:, order_id:, paid_commission: , comment: "from paykassa gem", system:)
46
46
  order = @paykassa_order.get_data( amount: amount,
47
47
  currency: currency,
48
48
  order_id: order_id,
49
49
  phone: "false",
50
- paid_commission: paid_commision,
50
+ paid_commission: paid_commission,
51
51
  comment: comment,
52
52
  system: system
53
53
  )
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.17
4
+ version: 0.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - nottewae