active_merchant-epsilon 0.6.0 → 0.7.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e4f6ea896f7ac2a6d7e8f78187bbf38b8d03aa8
|
4
|
+
data.tar.gz: 3b55b9ee29b881156db16a3c509055b18d423c7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebefda491294d4a5fde7e45aa0ac17384f8fff77a5e5320154663f643b56c1052af63d80eefdd16696a0dcb32cb676fd7127fe173f17b8153491b9db5f1af061
|
7
|
+
data.tar.gz: 7b4ecb75faef7822d320579a8f13fbce22c18d3be350ba7bd1c1eaef1c4450a2f71eeedeaf27f8e4d93fc001394075a384e3838ce3d8267e788f361352c20dc5
|
@@ -41,6 +41,10 @@ module ActiveMerchant #:nodoc:
|
|
41
41
|
uri_decode(@xml.xpath(ResponseXpath::CARD_BRAND).to_s)
|
42
42
|
end
|
43
43
|
|
44
|
+
def card_expire
|
45
|
+
uri_decode(@xml.xpath(ResponseXpath::CARD_EXPIRE).to_s)
|
46
|
+
end
|
47
|
+
|
44
48
|
def three_d_secure
|
45
49
|
@result == ResultCode::THREE_D_SECURE
|
46
50
|
end
|
@@ -84,6 +88,7 @@ module ActiveMerchant #:nodoc:
|
|
84
88
|
ERROR_DETAIL = '//Epsilon_result/result[@err_detail]/@err_detail'
|
85
89
|
CARD_NUMBER_MASK = '//Epsilon_result/result[@card_number_mask]/@card_number_mask'
|
86
90
|
CARD_BRAND = '//Epsilon_result/result[@card_brand]/@card_brand'
|
91
|
+
CARD_EXPIRE = '//Epsilon_result/result[@card_expire]/@card_expire'
|
87
92
|
ACS_URL = '//Epsilon_result/result[@acsurl]/@acsurl' # ACS (Access Control Server)
|
88
93
|
PA_REQ = '//Epsilon_result/result[@pareq]/@pareq' # PAReq (payer authentication request)
|
89
94
|
RECEIPT_NUMBER = '//Epsilon_result/result[@receipt_no][1]/@receipt_no'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_merchant-epsilon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kenichi TAKAHASHI
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemerchant
|