corepro_eg 1.0.3 → 1.0.4
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 +4 -4
- data/corepro_eg.gemspec +3 -3
- data/lib/corepro/customer.rb +2 -1
- data/lib/corepro/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b56c75d079c41703f5ee757d689d7d80ac3ec854d14c52c433e8124b01471b80
|
|
4
|
+
data.tar.gz: 67313239162502a20f82e981b7cb6dbabbfb19189446a2307fb32187fe1f6734
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77227db6c27e0ce7fcd88d686b6e29440a3dbbc0534a1788fe8ef803d6acdc766166cfed8e81af5d536e30537fd297c0244e631b511042b15772e9f6eba7acc3
|
|
7
|
+
data.tar.gz: da2441b81dc078a87232801f1a90591371026b31968c512ab64b8e2dce703a9240b1f80e4577bbb7de8affbe2df2751d86630912acbb2cb8e0e860b6a6aa16b8
|
data/corepro_eg.gemspec
CHANGED
|
@@ -6,11 +6,11 @@ require 'corepro/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'corepro_eg'
|
|
8
8
|
spec.version = CorePro::VERSION
|
|
9
|
-
spec.authors = ['devsupport']
|
|
10
|
-
spec.email = ['devsupport@socialmoney.com']
|
|
9
|
+
spec.authors = ['devsupport', 'erendira']
|
|
10
|
+
spec.email = ['devsupport@socialmoney.com', 'garciaerendira@gmail.com']
|
|
11
11
|
spec.summary = %q{A Ruby SDK for consuming the CorePro API.}
|
|
12
12
|
spec.description = %q{See https://docs.corepro.io for more detail.}
|
|
13
|
-
spec.homepage = 'https://github.com/
|
|
13
|
+
spec.homepage = 'https://github.com/erendira/corepro-sdk-ruby'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
data/lib/corepro/customer.rb
CHANGED
|
@@ -129,8 +129,9 @@ module CorePro
|
|
|
129
129
|
CorePro::Utils::Requestor.post('/customer/initiate', CorePro::Models::CustomerResponse, self, connection, loggingObject)
|
|
130
130
|
end
|
|
131
131
|
|
|
132
|
-
def verify(verificationId, answers, connection = nil, loggingObject = nil)
|
|
132
|
+
def verify(verificationId, customerId, answers, connection = nil, loggingObject = nil)
|
|
133
133
|
cvr = CorePro::Models::CustomerVerifyRequest.new
|
|
134
|
+
cvr.customerId = customerId
|
|
134
135
|
cvr.verificationId = verificationId
|
|
135
136
|
cvr.answers = answers
|
|
136
137
|
cvr.verify connection, loggingObject
|
data/lib/corepro/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: corepro_eg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- devsupport
|
|
8
|
+
- erendira
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
12
|
+
date: 2018-10-21 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: bundler
|
|
@@ -55,6 +56,7 @@ dependencies:
|
|
|
55
56
|
description: See https://docs.corepro.io for more detail.
|
|
56
57
|
email:
|
|
57
58
|
- devsupport@socialmoney.com
|
|
59
|
+
- garciaerendira@gmail.com
|
|
58
60
|
executables: []
|
|
59
61
|
extensions: []
|
|
60
62
|
extra_rdoc_files: []
|
|
@@ -135,7 +137,7 @@ files:
|
|
|
135
137
|
- test/ak_transaction_test.rb
|
|
136
138
|
- test/al_card_test.rb
|
|
137
139
|
- test/core_pro_test_base.rb
|
|
138
|
-
homepage: https://github.com/
|
|
140
|
+
homepage: https://github.com/erendira/corepro-sdk-ruby
|
|
139
141
|
licenses:
|
|
140
142
|
- MIT
|
|
141
143
|
metadata: {}
|