corepro_fvr 1.0.9
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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +15 -0
- data/LICENSE +21 -0
- data/README.md +47 -0
- data/Rakefile +2 -0
- data/config-sample.yml +5 -0
- data/corepro_fvr.gemspec +25 -0
- data/lib/corepro.rb +15 -0
- data/lib/corepro/account.rb +111 -0
- data/lib/corepro/account_close.rb +21 -0
- data/lib/corepro/bank_document.rb +42 -0
- data/lib/corepro/card.rb +90 -0
- data/lib/corepro/connection.rb +90 -0
- data/lib/corepro/core_pro_api_exception.rb +26 -0
- data/lib/corepro/customer.rb +140 -0
- data/lib/corepro/customer_beneficiary.rb +42 -0
- data/lib/corepro/customer_document.rb +22 -0
- data/lib/corepro/external_account.rb +84 -0
- data/lib/corepro/external_account_document.rb +34 -0
- data/lib/corepro/models/account_access.rb +25 -0
- data/lib/corepro/models/account_id_only.rb +9 -0
- data/lib/corepro/models/api_error.rb +14 -0
- data/lib/corepro/models/customer_address.rb +17 -0
- data/lib/corepro/models/customer_answer.rb +9 -0
- data/lib/corepro/models/customer_beneficiary_id_only.rb +8 -0
- data/lib/corepro/models/customer_id_only.rb +8 -0
- data/lib/corepro/models/customer_message.rb +10 -0
- data/lib/corepro/models/customer_phone.rb +11 -0
- data/lib/corepro/models/customer_question.rb +21 -0
- data/lib/corepro/models/customer_response.rb +28 -0
- data/lib/corepro/models/customer_verify_request.rb +28 -0
- data/lib/corepro/models/envelope.rb +37 -0
- data/lib/corepro/models/external_account_id_only.rb +8 -0
- data/lib/corepro/models/external_account_verify.rb +13 -0
- data/lib/corepro/models/file_content.rb +10 -0
- data/lib/corepro/models/json_base.rb +93 -0
- data/lib/corepro/models/model_base.rb +26 -0
- data/lib/corepro/models/program_account.rb +20 -0
- data/lib/corepro/models/program_checking.rb +38 -0
- data/lib/corepro/models/program_e_code.rb +31 -0
- data/lib/corepro/models/program_external_account.rb +21 -0
- data/lib/corepro/models/program_interest_rate.rb +18 -0
- data/lib/corepro/models/program_limit.rb +12 -0
- data/lib/corepro/models/program_prepaid.rb +37 -0
- data/lib/corepro/models/program_savings.rb +36 -0
- data/lib/corepro/program.rb +74 -0
- data/lib/corepro/statement.rb +25 -0
- data/lib/corepro/transaction.rb +53 -0
- data/lib/corepro/transfer.rb +42 -0
- data/lib/corepro/utils/logger.rb +9 -0
- data/lib/corepro/utils/requestor.rb +120 -0
- data/lib/corepro/version.rb +4 -0
- data/q2labs_public.pem +9 -0
- data/test.pdf +0 -0
- data/test/a_program_test.rb +12 -0
- data/test/aa_customer_test.rb +78 -0
- data/test/ab_account_test.rb +45 -0
- data/test/ac_external_account_test.rb +39 -0
- data/test/ad_customer_beneficiary_test.rb +43 -0
- data/test/ae_customer_document_test.rb +16 -0
- data/test/af_bankdocument_test.rb +20 -0
- data/test/ag_external_account_document_test.rb +18 -0
- data/test/ai_statement_test.rb +23 -0
- data/test/aj_transfer_test.rb +53 -0
- data/test/ak_transaction_test.rb +19 -0
- data/test/al_card_test.rb +51 -0
- data/test/core_pro_test_base.rb +30 -0
- metadata +170 -0
metadata
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: corepro_fvr
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.9
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- devsupport
|
8
|
+
- erendira
|
9
|
+
- felipe
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2019-04-26 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: bundler
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - "~>"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.6'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - "~>"
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: '1.6'
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: rake
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - "~>"
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '10.0'
|
36
|
+
type: :development
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - "~>"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '10.0'
|
43
|
+
- !ruby/object:Gem::Dependency
|
44
|
+
name: test-unit
|
45
|
+
requirement: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '3.2'
|
50
|
+
type: :development
|
51
|
+
prerelease: false
|
52
|
+
version_requirements: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - "~>"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '3.2'
|
57
|
+
description: See https://docs.corepro.io for more detail.
|
58
|
+
email:
|
59
|
+
- devsupport@socialmoney.com
|
60
|
+
- garciaerendira@gmail.com
|
61
|
+
- felipe.vr1591@gmail.com
|
62
|
+
executables: []
|
63
|
+
extensions: []
|
64
|
+
extra_rdoc_files: []
|
65
|
+
files:
|
66
|
+
- ".gitignore"
|
67
|
+
- Gemfile
|
68
|
+
- LICENSE
|
69
|
+
- README.md
|
70
|
+
- Rakefile
|
71
|
+
- config-sample.yml
|
72
|
+
- corepro_fvr.gemspec
|
73
|
+
- lib/corepro.rb
|
74
|
+
- lib/corepro/account.rb
|
75
|
+
- lib/corepro/account_close.rb
|
76
|
+
- lib/corepro/bank_document.rb
|
77
|
+
- lib/corepro/card.rb
|
78
|
+
- lib/corepro/connection.rb
|
79
|
+
- lib/corepro/core_pro_api_exception.rb
|
80
|
+
- lib/corepro/customer.rb
|
81
|
+
- lib/corepro/customer_beneficiary.rb
|
82
|
+
- lib/corepro/customer_document.rb
|
83
|
+
- lib/corepro/external_account.rb
|
84
|
+
- lib/corepro/external_account_document.rb
|
85
|
+
- lib/corepro/models/account_access.rb
|
86
|
+
- lib/corepro/models/account_id_only.rb
|
87
|
+
- lib/corepro/models/api_error.rb
|
88
|
+
- lib/corepro/models/customer_address.rb
|
89
|
+
- lib/corepro/models/customer_answer.rb
|
90
|
+
- lib/corepro/models/customer_beneficiary_id_only.rb
|
91
|
+
- lib/corepro/models/customer_id_only.rb
|
92
|
+
- lib/corepro/models/customer_message.rb
|
93
|
+
- lib/corepro/models/customer_phone.rb
|
94
|
+
- lib/corepro/models/customer_question.rb
|
95
|
+
- lib/corepro/models/customer_response.rb
|
96
|
+
- lib/corepro/models/customer_verify_request.rb
|
97
|
+
- lib/corepro/models/envelope.rb
|
98
|
+
- lib/corepro/models/external_account_id_only.rb
|
99
|
+
- lib/corepro/models/external_account_verify.rb
|
100
|
+
- lib/corepro/models/file_content.rb
|
101
|
+
- lib/corepro/models/json_base.rb
|
102
|
+
- lib/corepro/models/model_base.rb
|
103
|
+
- lib/corepro/models/program_account.rb
|
104
|
+
- lib/corepro/models/program_checking.rb
|
105
|
+
- lib/corepro/models/program_e_code.rb
|
106
|
+
- lib/corepro/models/program_external_account.rb
|
107
|
+
- lib/corepro/models/program_interest_rate.rb
|
108
|
+
- lib/corepro/models/program_limit.rb
|
109
|
+
- lib/corepro/models/program_prepaid.rb
|
110
|
+
- lib/corepro/models/program_savings.rb
|
111
|
+
- lib/corepro/program.rb
|
112
|
+
- lib/corepro/statement.rb
|
113
|
+
- lib/corepro/transaction.rb
|
114
|
+
- lib/corepro/transfer.rb
|
115
|
+
- lib/corepro/utils/logger.rb
|
116
|
+
- lib/corepro/utils/requestor.rb
|
117
|
+
- lib/corepro/version.rb
|
118
|
+
- q2labs_public.pem
|
119
|
+
- test.pdf
|
120
|
+
- test/a_program_test.rb
|
121
|
+
- test/aa_customer_test.rb
|
122
|
+
- test/ab_account_test.rb
|
123
|
+
- test/ac_external_account_test.rb
|
124
|
+
- test/ad_customer_beneficiary_test.rb
|
125
|
+
- test/ae_customer_document_test.rb
|
126
|
+
- test/af_bankdocument_test.rb
|
127
|
+
- test/ag_external_account_document_test.rb
|
128
|
+
- test/ai_statement_test.rb
|
129
|
+
- test/aj_transfer_test.rb
|
130
|
+
- test/ak_transaction_test.rb
|
131
|
+
- test/al_card_test.rb
|
132
|
+
- test/core_pro_test_base.rb
|
133
|
+
homepage: https://github.com/nixv2/corepro-sdk-ruby
|
134
|
+
licenses:
|
135
|
+
- MIT
|
136
|
+
metadata: {}
|
137
|
+
post_install_message:
|
138
|
+
rdoc_options: []
|
139
|
+
require_paths:
|
140
|
+
- lib
|
141
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '2.4'
|
146
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - ">="
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: '0'
|
151
|
+
requirements: []
|
152
|
+
rubyforge_project:
|
153
|
+
rubygems_version: 2.6.14
|
154
|
+
signing_key:
|
155
|
+
specification_version: 4
|
156
|
+
summary: A Ruby SDK for consuming the CorePro API.
|
157
|
+
test_files:
|
158
|
+
- test/a_program_test.rb
|
159
|
+
- test/aa_customer_test.rb
|
160
|
+
- test/ab_account_test.rb
|
161
|
+
- test/ac_external_account_test.rb
|
162
|
+
- test/ad_customer_beneficiary_test.rb
|
163
|
+
- test/ae_customer_document_test.rb
|
164
|
+
- test/af_bankdocument_test.rb
|
165
|
+
- test/ag_external_account_document_test.rb
|
166
|
+
- test/ai_statement_test.rb
|
167
|
+
- test/aj_transfer_test.rb
|
168
|
+
- test/ak_transaction_test.rb
|
169
|
+
- test/al_card_test.rb
|
170
|
+
- test/core_pro_test_base.rb
|