workarea-usaepay 1.0.44 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 362ae18802b8383763ffd2514f3eb395c8abaf00cdc12b4c8b59e498eff987e9
|
4
|
+
data.tar.gz: 0fdb74dff14dbf0db798dde94870ccbb45c7d47d71c0535c0ec081a5c74ebeee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 735f2a2f222462aadddfdab7d9f2386a5a2c0256bee2d2c42dd848e8c8dd36174f2adbf71b183fe30ab32f4fac4609dccf5f43d6f89985fc460bea41cce54ad0
|
7
|
+
data.tar.gz: ac904741ff5812ffa76f143c140e0e2809e3353136e620a3f00d69e1db41d6646a1ccd27173ddb27f19b38997c87961040fefab9c59af8bae444a5b3c0409e11
|
@@ -7,13 +7,14 @@ module Workarea
|
|
7
7
|
|
8
8
|
def complete! #[3]
|
9
9
|
return unless Payment::StoreCreditCard.new(tender, options).save! #[4]
|
10
|
-
|
10
|
+
ip_address = options[:checkout]&.order&.ip_address
|
11
11
|
transaction.response = #[5][6]
|
12
12
|
handle_active_merchant_errors do #[7]
|
13
13
|
gateway.authorize( #[8]
|
14
14
|
transaction.amount.cents, #[9]
|
15
15
|
payment_source,
|
16
|
-
transaction_args
|
16
|
+
transaction_args,
|
17
|
+
ip_address
|
17
18
|
)
|
18
19
|
end
|
19
20
|
|
data/lib/usaepay/gateway.rb
CHANGED
@@ -6,8 +6,9 @@ module ActiveMerchant
|
|
6
6
|
class_attribute :test_rest_endpoint, :production_rest_endpoint
|
7
7
|
|
8
8
|
|
9
|
-
def authorize(money, credit_card, options = {})
|
9
|
+
def authorize(money, credit_card, options = {}, ip_address)
|
10
10
|
post = {}
|
11
|
+
post[:ip] = ip_address if ip_address.present?
|
11
12
|
add_amount(post, money)
|
12
13
|
add_invoice(post, options)
|
13
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-usaepay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gunasekaran.Raja
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea
|