pier-sdk-ruby 1.0.0
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.
- data/README.md +141 -0
- data/docs/AuthToken.md +12 -0
- data/docs/BodyAccessToken.md +10 -0
- data/docs/CancelarCartaoResponse.md +11 -0
- data/docs/CartaoApi.md +252 -0
- data/docs/CartaoResponse.md +29 -0
- data/docs/ConsultarCartaoResponse.md +10 -0
- data/docs/ConsultarContaCartaoResponse.md +18 -0
- data/docs/ConsultarContaResponse.md +11 -0
- data/docs/ConsultarExtratoContaResponse.md +23 -0
- data/docs/ConsultarSaldoLimitesResponse.md +23 -0
- data/docs/ContaApi.md +238 -0
- data/docs/ContaCartaoResponse.md +21 -0
- data/docs/ContaResponse.md +41 -0
- data/docs/DesbloquearCartaoResponse.md +9 -0
- data/docs/ExtraInfo.md +8 -0
- data/docs/ExtratoResponse.md +35 -0
- data/docs/PessoaFisicaResponse.md +26 -0
- data/docs/SaldoLimiteResponse.md +39 -0
- data/docs/TokenApi.md +114 -0
- data/git_push.sh +52 -0
- data/lib/pier-sdk-ruby.rb +62 -0
- data/lib/pier-sdk-ruby/api/cartao_api.rb +355 -0
- data/lib/pier-sdk-ruby/api/conta_api.rb +324 -0
- data/lib/pier-sdk-ruby/api/token_api.rb +157 -0
- data/lib/pier-sdk-ruby/api_client.rb +368 -0
- data/lib/pier-sdk-ruby/api_error.rb +40 -0
- data/lib/pier-sdk-ruby/configuration.rb +177 -0
- data/lib/pier-sdk-ruby/models/auth_token.rb +325 -0
- data/lib/pier-sdk-ruby/models/body_access_token.rb +275 -0
- data/lib/pier-sdk-ruby/models/cancelar_cartao_response.rb +286 -0
- data/lib/pier-sdk-ruby/models/cartao_response.rb +736 -0
- data/lib/pier-sdk-ruby/models/consultar_cartao_response.rb +263 -0
- data/lib/pier-sdk-ruby/models/consultar_conta_cartao_response.rb +461 -0
- data/lib/pier-sdk-ruby/models/consultar_conta_response.rb +288 -0
- data/lib/pier-sdk-ruby/models/consultar_extrato_conta_response.rb +588 -0
- data/lib/pier-sdk-ruby/models/consultar_saldo_limites_response.rb +586 -0
- data/lib/pier-sdk-ruby/models/conta_cartao_response.rb +536 -0
- data/lib/pier-sdk-ruby/models/conta_response.rb +1036 -0
- data/lib/pier-sdk-ruby/models/desbloquear_cartao_response.rb +236 -0
- data/lib/pier-sdk-ruby/models/extra_info.rb +211 -0
- data/lib/pier-sdk-ruby/models/extrato_response.rb +886 -0
- data/lib/pier-sdk-ruby/models/pessoa_fisica_response.rb +661 -0
- data/lib/pier-sdk-ruby/models/saldo_limite_response.rb +986 -0
- data/lib/pier-sdk-ruby/version.rb +19 -0
- data/pier-sdk-ruby.gemspec +33 -0
- data/spec/api/cartao_api_spec.rb +110 -0
- data/spec/api/conta_api_spec.rb +107 -0
- data/spec/api/token_api_spec.rb +71 -0
- data/spec/models/auth_token_spec.rb +90 -0
- data/spec/models/body_access_token_spec.rb +70 -0
- data/spec/models/cancelar_cartao_response_spec.rb +80 -0
- data/spec/models/cartao_response_spec.rb +260 -0
- data/spec/models/consultar_cartao_response_spec.rb +70 -0
- data/spec/models/consultar_conta_cartao_response_spec.rb +150 -0
- data/spec/models/consultar_conta_response_spec.rb +80 -0
- data/spec/models/consultar_extrato_conta_response_spec.rb +200 -0
- data/spec/models/consultar_saldo_limites_response_spec.rb +200 -0
- data/spec/models/conta_cartao_response_spec.rb +180 -0
- data/spec/models/conta_response_spec.rb +380 -0
- data/spec/models/desbloquear_cartao_response_spec.rb +60 -0
- data/spec/models/extra_info_spec.rb +50 -0
- data/spec/models/extrato_response_spec.rb +320 -0
- data/spec/models/pessoa_fisica_response_spec.rb +230 -0
- data/spec/models/saldo_limite_response_spec.rb +360 -0
- metadata +310 -0
@@ -0,0 +1,360 @@
|
|
1
|
+
=begin
|
2
|
+
CaaS - Conductor as a Service
|
3
|
+
|
4
|
+
Gest\u00C3\u00A3o de pagamento eletr\u00C3\u00B4nicos como servi\u00C3\u00A7o
|
5
|
+
|
6
|
+
OpenAPI spec version: 0.0.1
|
7
|
+
Contact: contato@conductor.com.br
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
License: Apache 2.0
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0.html
|
12
|
+
|
13
|
+
Terms of Service: http://dev.conductor.com.br/terms/
|
14
|
+
|
15
|
+
=end
|
16
|
+
|
17
|
+
require 'spec_helper'
|
18
|
+
require 'json'
|
19
|
+
require 'date'
|
20
|
+
|
21
|
+
# Unit tests for Pier::SaldoLimiteResponse
|
22
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
23
|
+
# Please update as you see appropriate
|
24
|
+
describe 'SaldoLimiteResponse' do
|
25
|
+
before do
|
26
|
+
# run before each test
|
27
|
+
@instance = Pier::SaldoLimiteResponse.new
|
28
|
+
end
|
29
|
+
|
30
|
+
after do
|
31
|
+
# run after each test
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test an instance of SaldoLimiteResponse' do
|
35
|
+
it 'should create an instact of SaldoLimiteResponse' do
|
36
|
+
@instance.should be_a(Pier::SaldoLimiteResponse)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
describe 'test attribute "disponib_compra_nac"' do
|
40
|
+
it 'should work' do
|
41
|
+
# assertion here
|
42
|
+
# should be_a()
|
43
|
+
# should be_nil
|
44
|
+
# should ==
|
45
|
+
# should_not ==
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
describe 'test attribute "disponib_global_credito"' do
|
50
|
+
it 'should work' do
|
51
|
+
# assertion here
|
52
|
+
# should be_a()
|
53
|
+
# should be_nil
|
54
|
+
# should ==
|
55
|
+
# should_not ==
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "disponib_parcelado_nac"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here
|
62
|
+
# should be_a()
|
63
|
+
# should be_nil
|
64
|
+
# should ==
|
65
|
+
# should_not ==
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'test attribute "disponib_parcelas_nac"' do
|
70
|
+
it 'should work' do
|
71
|
+
# assertion here
|
72
|
+
# should be_a()
|
73
|
+
# should be_nil
|
74
|
+
# should ==
|
75
|
+
# should_not ==
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe 'test attribute "disponib_saque_nac_global"' do
|
80
|
+
it 'should work' do
|
81
|
+
# assertion here
|
82
|
+
# should be_a()
|
83
|
+
# should be_nil
|
84
|
+
# should ==
|
85
|
+
# should_not ==
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
describe 'test attribute "flag_antecipacao"' do
|
90
|
+
it 'should work' do
|
91
|
+
# assertion here
|
92
|
+
# should be_a()
|
93
|
+
# should be_nil
|
94
|
+
# should ==
|
95
|
+
# should_not ==
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe 'test attribute "limite_compra_nac"' do
|
100
|
+
it 'should work' do
|
101
|
+
# assertion here
|
102
|
+
# should be_a()
|
103
|
+
# should be_nil
|
104
|
+
# should ==
|
105
|
+
# should_not ==
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
describe 'test attribute "limite_credito_concedido"' do
|
110
|
+
it 'should work' do
|
111
|
+
# assertion here
|
112
|
+
# should be_a()
|
113
|
+
# should be_nil
|
114
|
+
# should ==
|
115
|
+
# should_not ==
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
describe 'test attribute "limite_credito_disponivel"' do
|
120
|
+
it 'should work' do
|
121
|
+
# assertion here
|
122
|
+
# should be_a()
|
123
|
+
# should be_nil
|
124
|
+
# should ==
|
125
|
+
# should_not ==
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
describe 'test attribute "limite_global_credito"' do
|
130
|
+
it 'should work' do
|
131
|
+
# assertion here
|
132
|
+
# should be_a()
|
133
|
+
# should be_nil
|
134
|
+
# should ==
|
135
|
+
# should_not ==
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
describe 'test attribute "limite_parcelado_nac"' do
|
140
|
+
it 'should work' do
|
141
|
+
# assertion here
|
142
|
+
# should be_a()
|
143
|
+
# should be_nil
|
144
|
+
# should ==
|
145
|
+
# should_not ==
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
describe 'test attribute "limite_parcelas_nac"' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here
|
152
|
+
# should be_a()
|
153
|
+
# should be_nil
|
154
|
+
# should ==
|
155
|
+
# should_not ==
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
describe 'test attribute "limite_pontuacao"' do
|
160
|
+
it 'should work' do
|
161
|
+
# assertion here
|
162
|
+
# should be_a()
|
163
|
+
# should be_nil
|
164
|
+
# should ==
|
165
|
+
# should_not ==
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
describe 'test attribute "limite_saque_nac_global"' do
|
170
|
+
it 'should work' do
|
171
|
+
# assertion here
|
172
|
+
# should be_a()
|
173
|
+
# should be_nil
|
174
|
+
# should ==
|
175
|
+
# should_not ==
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
describe 'test attribute "numero_ciclo"' do
|
180
|
+
it 'should work' do
|
181
|
+
# assertion here
|
182
|
+
# should be_a()
|
183
|
+
# should be_nil
|
184
|
+
# should ==
|
185
|
+
# should_not ==
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
189
|
+
describe 'test attribute "pontos_concedidos"' do
|
190
|
+
it 'should work' do
|
191
|
+
# assertion here
|
192
|
+
# should be_a()
|
193
|
+
# should be_nil
|
194
|
+
# should ==
|
195
|
+
# should_not ==
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
describe 'test attribute "pontos_remanescentes"' do
|
200
|
+
it 'should work' do
|
201
|
+
# assertion here
|
202
|
+
# should be_a()
|
203
|
+
# should be_nil
|
204
|
+
# should ==
|
205
|
+
# should_not ==
|
206
|
+
end
|
207
|
+
end
|
208
|
+
|
209
|
+
describe 'test attribute "proximo_vencimento_padrao"' do
|
210
|
+
it 'should work' do
|
211
|
+
# assertion here
|
212
|
+
# should be_a()
|
213
|
+
# should be_nil
|
214
|
+
# should ==
|
215
|
+
# should_not ==
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
describe 'test attribute "proximo_vencimento_real"' do
|
220
|
+
it 'should work' do
|
221
|
+
# assertion here
|
222
|
+
# should be_a()
|
223
|
+
# should be_nil
|
224
|
+
# should ==
|
225
|
+
# should_not ==
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
describe 'test attribute "saldo_atual_final"' do
|
230
|
+
it 'should work' do
|
231
|
+
# assertion here
|
232
|
+
# should be_a()
|
233
|
+
# should be_nil
|
234
|
+
# should ==
|
235
|
+
# should_not ==
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
describe 'test attribute "saldo_credor"' do
|
240
|
+
it 'should work' do
|
241
|
+
# assertion here
|
242
|
+
# should be_a()
|
243
|
+
# should be_nil
|
244
|
+
# should ==
|
245
|
+
# should_not ==
|
246
|
+
end
|
247
|
+
end
|
248
|
+
|
249
|
+
describe 'test attribute "saldo_devedor"' do
|
250
|
+
it 'should work' do
|
251
|
+
# assertion here
|
252
|
+
# should be_a()
|
253
|
+
# should be_nil
|
254
|
+
# should ==
|
255
|
+
# should_not ==
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
describe 'test attribute "saldo_devedor_oneroso"' do
|
260
|
+
it 'should work' do
|
261
|
+
# assertion here
|
262
|
+
# should be_a()
|
263
|
+
# should be_nil
|
264
|
+
# should ==
|
265
|
+
# should_not ==
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
269
|
+
describe 'test attribute "saldo_devedor_total"' do
|
270
|
+
it 'should work' do
|
271
|
+
# assertion here
|
272
|
+
# should be_a()
|
273
|
+
# should be_nil
|
274
|
+
# should ==
|
275
|
+
# should_not ==
|
276
|
+
end
|
277
|
+
end
|
278
|
+
|
279
|
+
describe 'test attribute "salta_extrato_anterior"' do
|
280
|
+
it 'should work' do
|
281
|
+
# assertion here
|
282
|
+
# should be_a()
|
283
|
+
# should be_nil
|
284
|
+
# should ==
|
285
|
+
# should_not ==
|
286
|
+
end
|
287
|
+
end
|
288
|
+
|
289
|
+
describe 'test attribute "total_disponivel_utilizacao"' do
|
290
|
+
it 'should work' do
|
291
|
+
# assertion here
|
292
|
+
# should be_a()
|
293
|
+
# should be_nil
|
294
|
+
# should ==
|
295
|
+
# should_not ==
|
296
|
+
end
|
297
|
+
end
|
298
|
+
|
299
|
+
describe 'test attribute "total_futuro"' do
|
300
|
+
it 'should work' do
|
301
|
+
# assertion here
|
302
|
+
# should be_a()
|
303
|
+
# should be_nil
|
304
|
+
# should ==
|
305
|
+
# should_not ==
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
309
|
+
describe 'test attribute "valor_minimo_extrato"' do
|
310
|
+
it 'should work' do
|
311
|
+
# assertion here
|
312
|
+
# should be_a()
|
313
|
+
# should be_nil
|
314
|
+
# should ==
|
315
|
+
# should_not ==
|
316
|
+
end
|
317
|
+
end
|
318
|
+
|
319
|
+
describe 'test attribute "valor_minimo_extrato_original"' do
|
320
|
+
it 'should work' do
|
321
|
+
# assertion here
|
322
|
+
# should be_a()
|
323
|
+
# should be_nil
|
324
|
+
# should ==
|
325
|
+
# should_not ==
|
326
|
+
end
|
327
|
+
end
|
328
|
+
|
329
|
+
describe 'test attribute "vencimento_padrao_anterior"' do
|
330
|
+
it 'should work' do
|
331
|
+
# assertion here
|
332
|
+
# should be_a()
|
333
|
+
# should be_nil
|
334
|
+
# should ==
|
335
|
+
# should_not ==
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
339
|
+
describe 'test attribute "vencimento_pos_prox"' do
|
340
|
+
it 'should work' do
|
341
|
+
# assertion here
|
342
|
+
# should be_a()
|
343
|
+
# should be_nil
|
344
|
+
# should ==
|
345
|
+
# should_not ==
|
346
|
+
end
|
347
|
+
end
|
348
|
+
|
349
|
+
describe 'test attribute "vencimento_real_anterior"' do
|
350
|
+
it 'should work' do
|
351
|
+
# assertion here
|
352
|
+
# should be_a()
|
353
|
+
# should be_nil
|
354
|
+
# should ==
|
355
|
+
# should_not ==
|
356
|
+
end
|
357
|
+
end
|
358
|
+
|
359
|
+
end
|
360
|
+
|
metadata
ADDED
@@ -0,0 +1,310 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pier-sdk-ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Thiago Sampaio
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2016-06-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: typhoeus
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.0'
|
22
|
+
- - ! '>='
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.0.1
|
25
|
+
type: :runtime
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1.0'
|
33
|
+
- - ! '>='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 1.0.1
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: json
|
38
|
+
requirement: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '1.8'
|
44
|
+
- - ! '>='
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.8.3
|
47
|
+
type: :runtime
|
48
|
+
prerelease: false
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.8'
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 1.8.3
|
58
|
+
- !ruby/object:Gem::Dependency
|
59
|
+
name: rspec
|
60
|
+
requirement: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ~>
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '3.4'
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.4.0
|
69
|
+
type: :development
|
70
|
+
prerelease: false
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ~>
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '3.4'
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 3.4.0
|
80
|
+
- !ruby/object:Gem::Dependency
|
81
|
+
name: vcr
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
84
|
+
requirements:
|
85
|
+
- - ~>
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '3.0'
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 3.0.1
|
91
|
+
type: :development
|
92
|
+
prerelease: false
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ~>
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '3.0'
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 3.0.1
|
102
|
+
- !ruby/object:Gem::Dependency
|
103
|
+
name: webmock
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '1.24'
|
110
|
+
- - ! '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 1.24.3
|
113
|
+
type: :development
|
114
|
+
prerelease: false
|
115
|
+
version_requirements: !ruby/object:Gem::Requirement
|
116
|
+
none: false
|
117
|
+
requirements:
|
118
|
+
- - ~>
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '1.24'
|
121
|
+
- - ! '>='
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 1.24.3
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
name: autotest
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
127
|
+
none: false
|
128
|
+
requirements:
|
129
|
+
- - ~>
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '4.4'
|
132
|
+
- - ! '>='
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: 4.4.6
|
135
|
+
type: :development
|
136
|
+
prerelease: false
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
none: false
|
139
|
+
requirements:
|
140
|
+
- - ~>
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: '4.4'
|
143
|
+
- - ! '>='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 4.4.6
|
146
|
+
- !ruby/object:Gem::Dependency
|
147
|
+
name: autotest-rails-pure
|
148
|
+
requirement: !ruby/object:Gem::Requirement
|
149
|
+
none: false
|
150
|
+
requirements:
|
151
|
+
- - ~>
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: '4.1'
|
154
|
+
- - ! '>='
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
version: 4.1.2
|
157
|
+
type: :development
|
158
|
+
prerelease: false
|
159
|
+
version_requirements: !ruby/object:Gem::Requirement
|
160
|
+
none: false
|
161
|
+
requirements:
|
162
|
+
- - ~>
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '4.1'
|
165
|
+
- - ! '>='
|
166
|
+
- !ruby/object:Gem::Version
|
167
|
+
version: 4.1.2
|
168
|
+
- !ruby/object:Gem::Dependency
|
169
|
+
name: autotest-growl
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
171
|
+
none: false
|
172
|
+
requirements:
|
173
|
+
- - ~>
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: '0.2'
|
176
|
+
- - ! '>='
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: 0.2.16
|
179
|
+
type: :development
|
180
|
+
prerelease: false
|
181
|
+
version_requirements: !ruby/object:Gem::Requirement
|
182
|
+
none: false
|
183
|
+
requirements:
|
184
|
+
- - ~>
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
version: '0.2'
|
187
|
+
- - ! '>='
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 0.2.16
|
190
|
+
- !ruby/object:Gem::Dependency
|
191
|
+
name: autotest-fsevent
|
192
|
+
requirement: !ruby/object:Gem::Requirement
|
193
|
+
none: false
|
194
|
+
requirements:
|
195
|
+
- - ~>
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: '0.2'
|
198
|
+
- - ! '>='
|
199
|
+
- !ruby/object:Gem::Version
|
200
|
+
version: 0.2.11
|
201
|
+
type: :development
|
202
|
+
prerelease: false
|
203
|
+
version_requirements: !ruby/object:Gem::Requirement
|
204
|
+
none: false
|
205
|
+
requirements:
|
206
|
+
- - ~>
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0.2'
|
209
|
+
- - ! '>='
|
210
|
+
- !ruby/object:Gem::Version
|
211
|
+
version: 0.2.11
|
212
|
+
description: https://github.com/devconductor/pier-sdk-ruby
|
213
|
+
email:
|
214
|
+
- thiago.sampaio@conductor.com.br
|
215
|
+
executables: []
|
216
|
+
extensions: []
|
217
|
+
extra_rdoc_files: []
|
218
|
+
files:
|
219
|
+
- README.md
|
220
|
+
- docs/AuthToken.md
|
221
|
+
- docs/BodyAccessToken.md
|
222
|
+
- docs/CancelarCartaoResponse.md
|
223
|
+
- docs/CartaoApi.md
|
224
|
+
- docs/CartaoResponse.md
|
225
|
+
- docs/ConsultarCartaoResponse.md
|
226
|
+
- docs/ConsultarContaCartaoResponse.md
|
227
|
+
- docs/ConsultarContaResponse.md
|
228
|
+
- docs/ConsultarExtratoContaResponse.md
|
229
|
+
- docs/ConsultarSaldoLimitesResponse.md
|
230
|
+
- docs/ContaApi.md
|
231
|
+
- docs/ContaCartaoResponse.md
|
232
|
+
- docs/ContaResponse.md
|
233
|
+
- docs/DesbloquearCartaoResponse.md
|
234
|
+
- docs/ExtraInfo.md
|
235
|
+
- docs/ExtratoResponse.md
|
236
|
+
- docs/PessoaFisicaResponse.md
|
237
|
+
- docs/SaldoLimiteResponse.md
|
238
|
+
- docs/TokenApi.md
|
239
|
+
- git_push.sh
|
240
|
+
- lib/pier-sdk-ruby.rb
|
241
|
+
- lib/pier-sdk-ruby/api/cartao_api.rb
|
242
|
+
- lib/pier-sdk-ruby/api/conta_api.rb
|
243
|
+
- lib/pier-sdk-ruby/api/token_api.rb
|
244
|
+
- lib/pier-sdk-ruby/api_client.rb
|
245
|
+
- lib/pier-sdk-ruby/api_error.rb
|
246
|
+
- lib/pier-sdk-ruby/configuration.rb
|
247
|
+
- lib/pier-sdk-ruby/models/auth_token.rb
|
248
|
+
- lib/pier-sdk-ruby/models/body_access_token.rb
|
249
|
+
- lib/pier-sdk-ruby/models/cancelar_cartao_response.rb
|
250
|
+
- lib/pier-sdk-ruby/models/cartao_response.rb
|
251
|
+
- lib/pier-sdk-ruby/models/consultar_cartao_response.rb
|
252
|
+
- lib/pier-sdk-ruby/models/consultar_conta_cartao_response.rb
|
253
|
+
- lib/pier-sdk-ruby/models/consultar_conta_response.rb
|
254
|
+
- lib/pier-sdk-ruby/models/consultar_extrato_conta_response.rb
|
255
|
+
- lib/pier-sdk-ruby/models/consultar_saldo_limites_response.rb
|
256
|
+
- lib/pier-sdk-ruby/models/conta_cartao_response.rb
|
257
|
+
- lib/pier-sdk-ruby/models/conta_response.rb
|
258
|
+
- lib/pier-sdk-ruby/models/desbloquear_cartao_response.rb
|
259
|
+
- lib/pier-sdk-ruby/models/extra_info.rb
|
260
|
+
- lib/pier-sdk-ruby/models/extrato_response.rb
|
261
|
+
- lib/pier-sdk-ruby/models/pessoa_fisica_response.rb
|
262
|
+
- lib/pier-sdk-ruby/models/saldo_limite_response.rb
|
263
|
+
- lib/pier-sdk-ruby/version.rb
|
264
|
+
- pier-sdk-ruby-1.0.0.gem
|
265
|
+
- pier-sdk-ruby.gemspec
|
266
|
+
- spec/api/cartao_api_spec.rb
|
267
|
+
- spec/api/conta_api_spec.rb
|
268
|
+
- spec/api/token_api_spec.rb
|
269
|
+
- spec/models/auth_token_spec.rb
|
270
|
+
- spec/models/body_access_token_spec.rb
|
271
|
+
- spec/models/cancelar_cartao_response_spec.rb
|
272
|
+
- spec/models/cartao_response_spec.rb
|
273
|
+
- spec/models/consultar_cartao_response_spec.rb
|
274
|
+
- spec/models/consultar_conta_cartao_response_spec.rb
|
275
|
+
- spec/models/consultar_conta_response_spec.rb
|
276
|
+
- spec/models/consultar_extrato_conta_response_spec.rb
|
277
|
+
- spec/models/consultar_saldo_limites_response_spec.rb
|
278
|
+
- spec/models/conta_cartao_response_spec.rb
|
279
|
+
- spec/models/conta_response_spec.rb
|
280
|
+
- spec/models/desbloquear_cartao_response_spec.rb
|
281
|
+
- spec/models/extra_info_spec.rb
|
282
|
+
- spec/models/extrato_response_spec.rb
|
283
|
+
- spec/models/pessoa_fisica_response_spec.rb
|
284
|
+
- spec/models/saldo_limite_response_spec.rb
|
285
|
+
homepage: https://github.com/devconductor/pier-sdk-ruby
|
286
|
+
licenses:
|
287
|
+
- Apache 2.0
|
288
|
+
post_install_message:
|
289
|
+
rdoc_options: []
|
290
|
+
require_paths:
|
291
|
+
- lib
|
292
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
293
|
+
none: false
|
294
|
+
requirements:
|
295
|
+
- - ! '>='
|
296
|
+
- !ruby/object:Gem::Version
|
297
|
+
version: '0'
|
298
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
299
|
+
none: false
|
300
|
+
requirements:
|
301
|
+
- - ! '>='
|
302
|
+
- !ruby/object:Gem::Version
|
303
|
+
version: '0'
|
304
|
+
requirements: []
|
305
|
+
rubyforge_project:
|
306
|
+
rubygems_version: 1.8.23
|
307
|
+
signing_key:
|
308
|
+
specification_version: 3
|
309
|
+
summary: SDK Ruby para consumo das APIs do PIER Labs
|
310
|
+
test_files: []
|