TodoPagoConectorSS 1.7.5 → 1.7.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/todo_pago_conector.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e6f1bea43ff2c9f522f586abb2cfe05ac9d7f6c
|
4
|
+
data.tar.gz: 746687b23bd6f2a178698b66660c74d1377f76d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac8688c98ae630a98b699e3a74c5cdbde4e5943fcf0a07c789be5f2c97ed231f744f2a999b52658ea8942195b23f4a72979e3498065cee3e47f301e094335e1d
|
7
|
+
data.tar.gz: 182ac0fa71dbed049faabd156067c33a9b1453512626f2bc825469a4fe1d5200b682f53d807ca77607e5aeed98083a404b22e768cb14394247effbb93397c0fc
|
data/lib/todo_pago_conector.rb
CHANGED
@@ -7,11 +7,11 @@ $versionTodoPago = '1.7.0'
|
|
7
7
|
|
8
8
|
class TodoPagoConector
|
9
9
|
# método inicializar clase
|
10
|
-
def initialize(j_header_http,
|
10
|
+
def initialize(j_header_http, j_wsdl, endpoint, env)#j_wsdl=nil, endpoint=nil, env=nil
|
11
11
|
@discover = nil
|
12
12
|
@Fcv = nil
|
13
|
-
@restConnector = RestConnector.new(j_header_http,
|
14
|
-
@soapConnector = SoapConnector.new(j_header_http,
|
13
|
+
@restConnector = RestConnector.new(j_header_http, j_wsdl, endpoint, env)
|
14
|
+
@soapConnector = SoapConnector.new(j_header_http, j_wsdl, endpoint, env)
|
15
15
|
end
|
16
16
|
|
17
17
|
def setSoapConnector(soapConnector)
|