pagseguro-transparente 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +16 -0
  3. data/Gemfile.lock +8 -8
  4. data/README.md +6 -6
  5. data/index.html +374 -0
  6. data/lib/pagseguro.rb +11 -8
  7. data/lib/pagseguro/item.rb +5 -5
  8. data/lib/pagseguro/notification.rb +8 -74
  9. data/lib/pagseguro/payment.rb +95 -0
  10. data/lib/pagseguro/{transaction → payment}/serializer.rb +17 -17
  11. data/lib/pagseguro/request.rb +17 -4
  12. data/lib/pagseguro/sender.rb +4 -0
  13. data/lib/pagseguro/session.rb +8 -1
  14. data/lib/pagseguro/shipping.rb +5 -1
  15. data/lib/pagseguro/transaction.rb +79 -62
  16. data/lib/pagseguro/{notification → transaction}/address.rb +1 -1
  17. data/lib/pagseguro/{notification → transaction}/item.rb +1 -1
  18. data/lib/pagseguro/{notification → transaction}/items.rb +1 -1
  19. data/lib/pagseguro/{notification → transaction}/payment_method.rb +8 -1
  20. data/lib/pagseguro/{notification → transaction}/phone.rb +1 -1
  21. data/lib/pagseguro/{notification → transaction}/sender.rb +1 -1
  22. data/lib/pagseguro/{notification → transaction}/shipping.rb +1 -1
  23. data/lib/pagseguro/version.rb +1 -1
  24. data/pagseguro-transparente.gemspec +3 -3
  25. data/spec/pagseguro/item_spec.rb +1 -1
  26. data/spec/pagseguro/notification_spec.rb +37 -41
  27. data/spec/pagseguro/{transaction → payment}/serializer_spec.rb +15 -13
  28. data/spec/pagseguro/payment_spec.rb +90 -0
  29. data/spec/pagseguro/session_spec.rb +17 -4
  30. data/spec/pagseguro/{notification → transaction}/address_spec.rb +2 -2
  31. data/spec/pagseguro/{notification → transaction}/item_spec.rb +2 -2
  32. data/spec/pagseguro/{notification → transaction}/items_spec.rb +2 -2
  33. data/spec/pagseguro/{notification → transaction}/payment_method_spec.rb +3 -2
  34. data/spec/pagseguro/{notification → transaction}/phone_spec.rb +2 -2
  35. data/spec/pagseguro/{notification → transaction}/sender_spec.rb +3 -3
  36. data/spec/pagseguro/{notification → transaction}/shipping_spec.rb +3 -3
  37. data/spec/pagseguro/transaction_spec.rb +56 -77
  38. data/spec/spec_helper.rb +2 -0
  39. metadata +37 -60
  40. data/coverage/.last_run.json +0 -5
  41. data/coverage/.resultset.json +0 -1665
  42. data/coverage/assets/0.8.0/application.css +0 -799
  43. data/coverage/assets/0.8.0/application.js +0 -1559
  44. data/coverage/assets/0.8.0/colorbox/border.png +0 -0
  45. data/coverage/assets/0.8.0/colorbox/controls.png +0 -0
  46. data/coverage/assets/0.8.0/colorbox/loading.gif +0 -0
  47. data/coverage/assets/0.8.0/colorbox/loading_background.png +0 -0
  48. data/coverage/assets/0.8.0/favicon_green.png +0 -0
  49. data/coverage/assets/0.8.0/favicon_red.png +0 -0
  50. data/coverage/assets/0.8.0/favicon_yellow.png +0 -0
  51. data/coverage/assets/0.8.0/loading.gif +0 -0
  52. data/coverage/assets/0.8.0/magnify.png +0 -0
  53. data/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  54. data/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  55. data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  56. data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  57. data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  58. data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  59. data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  60. data/coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  61. data/coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
  62. data/coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  63. data/coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
  64. data/coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
  65. data/coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  66. data/coverage/index.html +0 -10198
@@ -1,17 +1,17 @@
1
1
  require "spec_helper"
2
2
 
3
- describe PagSeguro::Notification::Shipping do
3
+ describe PagSeguro::Transaction::Shipping do
4
4
  let(:xml) { MultiXml.parse(xml_file) }
5
5
 
6
6
  let(:shipping) do
7
- PagSeguro::Notification::Shipping.new(xml['shipping'])
7
+ PagSeguro::Transaction::Shipping.new(xml['shipping'])
8
8
  end
9
9
 
10
10
  subject { shipping }
11
11
 
12
12
  its(:type) { should eq('1') }
13
13
  its(:cost) { should eq('21.50') }
14
- its(:address) { should be_a_kind_of(PagSeguro::Notification::Address) }
14
+ its(:address) { should be_a_kind_of(PagSeguro::Transaction::Address) }
15
15
 
16
16
  let(:xml_file) {
17
17
  "<shipping>
@@ -1,91 +1,70 @@
1
1
  require "spec_helper"
2
2
 
3
3
  describe PagSeguro::Transaction do
4
- subject { transaction }
4
+ let(:xml) { MultiXml.parse(xml_file) }
5
5
 
6
- let(:options) {
7
- {
8
- notification_url: 'www.eventick.com.br',
9
- payment_method: payment_method,
10
- reference: '0001',
11
- extra_amount: '1.00'
12
- }
13
- }
14
-
15
- let(:payment_method) { 'boleto' }
16
-
17
- let(:transaction) do
18
- transaction = PagSeguro::Transaction.new(options)
19
- transaction.sender = sender
20
- transaction.shipping = shipping
21
- transaction.items = [PagSeguro::Item.new(1, 'Ingresso Teste', 2, 1)]
22
- transaction
23
- end
24
-
25
-
26
- let(:document) { PagSeguro::Document.new('017.355.323-00') }
27
- let(:phone) {PagSeguro::Phone.new('11', '99999999') }
28
- let(:sender) do
29
- sender = PagSeguro::Sender.new({
30
- email: 'produtor@eventick.com.br',
31
- name: 'João do evento',
32
- hash_id: 'abc1234'
33
- })
34
- sender.phone = phone
35
- sender.document = document
36
- sender
37
- end
6
+ let(:response) { PagSeguro::Transaction.new(xml) }
38
7
 
39
- let(:address) do
40
- PagSeguro::Address.new({
41
- postal_code: '01452002',
42
- street: 'Rua Fernando de Albuquerque',
43
- number: '35',
44
- complement: '31',
45
- district: 'Consolação',
46
- city: 'São Paulo',
47
- state: 'SP'
48
- })
49
- end
8
+ subject { response }
50
9
 
51
- let(:shipping){
52
- shipping = PagSeguro::Shipping.new
53
- shipping.address = address
54
- shipping
55
- }
10
+ context "successful transaction" do
56
11
 
57
- it { should respond_to(:receiver_email) }
58
- it { should respond_to(:notification_url) }
59
- it { should respond_to(:currency) }
60
- it { should respond_to(:payment_method) }
61
- it { should respond_to(:payment_mode) }
62
- it { should respond_to(:items) }
63
- it { should respond_to(:reference) }
64
- it { should respond_to(:extra_amount) }
65
- it { should respond_to(:sender) }
66
- it { should respond_to(:shipping) }
67
- it { should respond_to(:bank) }
68
- it { should respond_to(:credit_card) }
12
+ let(:xml_file) {
13
+ "<transaction>
14
+ <date>2011-02-05T15:46:12.000-02:00</date>
15
+ <lastEventDate>2011-02-15T17:39:14.000-03:00</lastEventDate>
16
+ <code>9E884542-81B3-4419-9A75-BCC6FB495EF1</code>
17
+ <reference>REF1234</reference>
18
+ <type>1</type>
19
+ <status>3</status>
20
+ <paymentLink>https://pagseguro.uol.com.br/checkout/imprimeBoleto.jhtml</paymentLink>
21
+ <grossAmount>49900.00</grossAmount>
22
+ <discountAmount>0.00</discountAmount>
23
+ <feeAmount>0.00</feeAmount>
24
+ <netAmount>49900.50</netAmount>
25
+ <extraAmount>0.00</extraAmount>
26
+ <installmentCount>1</installmentCount>
27
+ <escrowEndDate>2011-02-05T15:46:12.000-02:00</escrowEndDate>
28
+ <cancellationSource>INTERNAL</cancellationSource>
29
+ </transaction>"
30
+ }
69
31
 
70
- describe 'presence validations' do
71
- it { should validate_presence_of(:currency) }
72
- it { should validate_presence_of(:payment_method) }
73
- it { should validate_presence_of(:sender) }
74
- it { should validate_presence_of(:shipping) }
75
- end
32
+ it { should be_valid }
33
+ its(:date) { should eq('2011-02-05T15:46:12.000-02:00') }
34
+ its(:last_event_date) { should eq('2011-02-15T17:39:14.000-03:00') }
35
+ its(:code) { should eq('9E884542-81B3-4419-9A75-BCC6FB495EF1') }
36
+ its(:reference) { should eq('REF1234') }
37
+ its(:type) { should eq('1') }
38
+ its(:status) { should eq('3') }
39
+ its(:status_name) { should eq(:paid) }
40
+ its(:payment_link) { should eq('https://pagseguro.uol.com.br/checkout/imprimeBoleto.jhtml') }
41
+ its(:gross_amount) { should eq('49900.00') }
42
+ its(:discount_amount) { should eq("0.00") }
43
+ its(:fee_amount) { should eq('0.00') }
44
+ its(:net_amount) { should eq('49900.50') }
45
+ its(:extra_amount) { should eq('0.00') }
46
+ its(:installment_count) { should eq("1") }
47
+ its(:payment_method) { should be_a_kind_of(PagSeguro::Transaction::PaymentMethod) }
48
+ its(:items) { should be_a_kind_of(PagSeguro::Transaction::Items) }
49
+ its(:sender) { should be_a_kind_of(PagSeguro::Transaction::Sender) }
50
+ its(:shipping) { should be_a_kind_of(PagSeguro::Transaction::Shipping) }
51
+ its(:escrow_end_date) { should eq('2011-02-05T15:46:12.000-02:00') }
52
+ its(:cancellation_source) { should eq('INTERNAL') }
53
+ its(:errors) { should eq([]) }
76
54
 
77
- describe 'inclusion validations' do
78
- let(:payment_methods) { %w(creditCard boleto eft) }
79
- it { should ensure_inclusion_of(:payment_method).in_array(payment_methods) }
80
55
  end
81
56
 
82
- context 'eft' do
83
- let(:payment_method) { 'eft' }
84
- it { should validate_presence_of(:bank) }
85
- end
57
+ context "unsuccessfull transaction" do
58
+ let(:xml_file) {
59
+ "<errors>
60
+ <error>
61
+ <code>53044</code>
62
+ <message>credit card holder name invalid value: Flora</message>
63
+ </error>
64
+ </errors>"
65
+ }
86
66
 
87
- context 'credit card' do
88
- let(:payment_method) { 'creditCard' }
89
- it { should validate_presence_of(:credit_card) }
67
+ it { should_not be_valid}
68
+ its(:errors) { should eq( [ { "code" => "53044", "message" => "credit card holder name invalid value: Flora"} ]) }
90
69
  end
91
70
  end
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require 'minitest/autorun'
2
+
1
3
  require 'coveralls'
2
4
  Coveralls.wear!
3
5
 
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pagseguro-transparente
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cirdes Henrique
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-17 00:00:00.000000000 Z
11
+ date: 2014-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: httparty
14
+ name: activemodel
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
@@ -25,7 +25,7 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: nokogiri
28
+ name: httparty
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: json
42
+ name: nokogiri
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
@@ -53,7 +53,7 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: activemodel
56
+ name: json
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
@@ -173,37 +173,12 @@ extra_rdoc_files: []
173
173
  files:
174
174
  - ".DS_Store"
175
175
  - ".gitignore"
176
+ - ".travis.yml"
176
177
  - Gemfile
177
178
  - Gemfile.lock
178
179
  - README.md
179
180
  - Rakefile
180
- - coverage/.last_run.json
181
- - coverage/.resultset.json
182
- - coverage/assets/0.8.0/application.css
183
- - coverage/assets/0.8.0/application.js
184
- - coverage/assets/0.8.0/colorbox/border.png
185
- - coverage/assets/0.8.0/colorbox/controls.png
186
- - coverage/assets/0.8.0/colorbox/loading.gif
187
- - coverage/assets/0.8.0/colorbox/loading_background.png
188
- - coverage/assets/0.8.0/favicon_green.png
189
- - coverage/assets/0.8.0/favicon_red.png
190
- - coverage/assets/0.8.0/favicon_yellow.png
191
- - coverage/assets/0.8.0/loading.gif
192
- - coverage/assets/0.8.0/magnify.png
193
- - coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
194
- - coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
195
- - coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
196
- - coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
197
- - coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png
198
- - coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
199
- - coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
200
- - coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
201
- - coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png
202
- - coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png
203
- - coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png
204
- - coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png
205
- - coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png
206
- - coverage/index.html
181
+ - index.html
207
182
  - lib/pagseguro-transparente.rb
208
183
  - lib/pagseguro.rb
209
184
  - lib/pagseguro/address.rb
@@ -216,13 +191,8 @@ files:
216
191
  - lib/pagseguro/item.rb
217
192
  - lib/pagseguro/items.rb
218
193
  - lib/pagseguro/notification.rb
219
- - lib/pagseguro/notification/address.rb
220
- - lib/pagseguro/notification/item.rb
221
- - lib/pagseguro/notification/items.rb
222
- - lib/pagseguro/notification/payment_method.rb
223
- - lib/pagseguro/notification/phone.rb
224
- - lib/pagseguro/notification/sender.rb
225
- - lib/pagseguro/notification/shipping.rb
194
+ - lib/pagseguro/payment.rb
195
+ - lib/pagseguro/payment/serializer.rb
226
196
  - lib/pagseguro/phone.rb
227
197
  - lib/pagseguro/request.rb
228
198
  - lib/pagseguro/sender.rb
@@ -230,7 +200,13 @@ files:
230
200
  - lib/pagseguro/session/response.rb
231
201
  - lib/pagseguro/shipping.rb
232
202
  - lib/pagseguro/transaction.rb
233
- - lib/pagseguro/transaction/serializer.rb
203
+ - lib/pagseguro/transaction/address.rb
204
+ - lib/pagseguro/transaction/item.rb
205
+ - lib/pagseguro/transaction/items.rb
206
+ - lib/pagseguro/transaction/payment_method.rb
207
+ - lib/pagseguro/transaction/phone.rb
208
+ - lib/pagseguro/transaction/sender.rb
209
+ - lib/pagseguro/transaction/shipping.rb
234
210
  - lib/pagseguro/version.rb
235
211
  - pagseguro-transparente.gemspec
236
212
  - spec/pagseguro/address_spec.rb
@@ -241,24 +217,25 @@ files:
241
217
  - spec/pagseguro/installment_spec.rb
242
218
  - spec/pagseguro/item_spec.rb
243
219
  - spec/pagseguro/items_spec.rb
244
- - spec/pagseguro/notification/address_spec.rb
245
- - spec/pagseguro/notification/item_spec.rb
246
- - spec/pagseguro/notification/items_spec.rb
247
- - spec/pagseguro/notification/payment_method_spec.rb
248
- - spec/pagseguro/notification/phone_spec.rb
249
- - spec/pagseguro/notification/sender_spec.rb
250
- - spec/pagseguro/notification/shipping_spec.rb
251
220
  - spec/pagseguro/notification_spec.rb
252
221
  - spec/pagseguro/pagseguro_spec.rb
222
+ - spec/pagseguro/payment/serializer_spec.rb
223
+ - spec/pagseguro/payment_spec.rb
253
224
  - spec/pagseguro/phone_spec.rb
254
225
  - spec/pagseguro/sender_spec.rb
255
226
  - spec/pagseguro/session/response_spec.rb
256
227
  - spec/pagseguro/session_spec.rb
257
228
  - spec/pagseguro/shipping_spec.rb
258
- - spec/pagseguro/transaction/serializer_spec.rb
229
+ - spec/pagseguro/transaction/address_spec.rb
230
+ - spec/pagseguro/transaction/item_spec.rb
231
+ - spec/pagseguro/transaction/items_spec.rb
232
+ - spec/pagseguro/transaction/payment_method_spec.rb
233
+ - spec/pagseguro/transaction/phone_spec.rb
234
+ - spec/pagseguro/transaction/sender_spec.rb
235
+ - spec/pagseguro/transaction/shipping_spec.rb
259
236
  - spec/pagseguro/transaction_spec.rb
260
237
  - spec/spec_helper.rb
261
- homepage: http://www.eventick.com.br
238
+ homepage: https://github.com/eventick/pagseguro-transparente
262
239
  licenses:
263
240
  - MIT
264
241
  metadata: {}
@@ -278,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
278
255
  version: '0'
279
256
  requirements: []
280
257
  rubyforge_project:
281
- rubygems_version: 2.0.5
258
+ rubygems_version: 2.2.2
282
259
  signing_key:
283
260
  specification_version: 4
284
261
  summary: Integração com o novo checkout transparente do Pagseguro.
@@ -291,21 +268,21 @@ test_files:
291
268
  - spec/pagseguro/installment_spec.rb
292
269
  - spec/pagseguro/item_spec.rb
293
270
  - spec/pagseguro/items_spec.rb
294
- - spec/pagseguro/notification/address_spec.rb
295
- - spec/pagseguro/notification/item_spec.rb
296
- - spec/pagseguro/notification/items_spec.rb
297
- - spec/pagseguro/notification/payment_method_spec.rb
298
- - spec/pagseguro/notification/phone_spec.rb
299
- - spec/pagseguro/notification/sender_spec.rb
300
- - spec/pagseguro/notification/shipping_spec.rb
301
271
  - spec/pagseguro/notification_spec.rb
302
272
  - spec/pagseguro/pagseguro_spec.rb
273
+ - spec/pagseguro/payment/serializer_spec.rb
274
+ - spec/pagseguro/payment_spec.rb
303
275
  - spec/pagseguro/phone_spec.rb
304
276
  - spec/pagseguro/sender_spec.rb
305
277
  - spec/pagseguro/session/response_spec.rb
306
278
  - spec/pagseguro/session_spec.rb
307
279
  - spec/pagseguro/shipping_spec.rb
308
- - spec/pagseguro/transaction/serializer_spec.rb
280
+ - spec/pagseguro/transaction/address_spec.rb
281
+ - spec/pagseguro/transaction/item_spec.rb
282
+ - spec/pagseguro/transaction/items_spec.rb
283
+ - spec/pagseguro/transaction/payment_method_spec.rb
284
+ - spec/pagseguro/transaction/phone_spec.rb
285
+ - spec/pagseguro/transaction/sender_spec.rb
286
+ - spec/pagseguro/transaction/shipping_spec.rb
309
287
  - spec/pagseguro/transaction_spec.rb
310
288
  - spec/spec_helper.rb
311
- has_rdoc:
@@ -1,5 +0,0 @@
1
- {
2
- "result": {
3
- "covered_percent": 99.43
4
- }
5
- }
@@ -1,1665 +0,0 @@
1
- {
2
- "RSpec": {
3
- "coverage": {
4
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro-transparente.rb": [
5
- 1
6
- ],
7
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro.rb": [
8
- 1,
9
- 1,
10
- 1,
11
- 1,
12
- 1,
13
- 1,
14
- 1,
15
- 1,
16
- 1,
17
- 1,
18
- 1,
19
- 1,
20
- 1,
21
- 1,
22
- 1,
23
- 1,
24
- 1,
25
- 1,
26
- 1,
27
- 1,
28
- 1,
29
- 1,
30
- 1,
31
- 1,
32
- 1,
33
- 1,
34
- 1,
35
- null,
36
- 1,
37
- 1,
38
- null,
39
- 1,
40
- null,
41
- null,
42
- 1,
43
- null,
44
- null,
45
- null,
46
- 1,
47
- null,
48
- null,
49
- 1,
50
- null,
51
- null,
52
- null,
53
- null,
54
- null,
55
- null,
56
- null,
57
- null,
58
- 1,
59
- 0,
60
- null,
61
- null
62
- ],
63
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/request.rb": [
64
- 1,
65
- null,
66
- 1,
67
- 1,
68
- 1,
69
- 1,
70
- null,
71
- 1,
72
- null,
73
- 1,
74
- 0,
75
- null,
76
- null,
77
- 1,
78
- 1,
79
- 1,
80
- 1,
81
- 1,
82
- null,
83
- null,
84
- null
85
- ],
86
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/session.rb": [
87
- 1,
88
- 1,
89
- 1,
90
- 1,
91
- null,
92
- null,
93
- null
94
- ],
95
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/session/response.rb": [
96
- 1,
97
- 1,
98
- 1,
99
- 1,
100
- null,
101
- 1,
102
- 3,
103
- null,
104
- null,
105
- 1,
106
- 1,
107
- null,
108
- null,
109
- null,
110
- null
111
- ],
112
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/item.rb": [
113
- 1,
114
- 1,
115
- 1,
116
- null,
117
- 1,
118
- 1,
119
- 1,
120
- null,
121
- null,
122
- 1,
123
- null,
124
- null,
125
- 1,
126
- null,
127
- null,
128
- 1,
129
- null,
130
- null,
131
- null,
132
- 1,
133
- null,
134
- 1,
135
- 127,
136
- 127,
137
- 127,
138
- 127,
139
- null,
140
- null,
141
- null
142
- ],
143
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/items.rb": [
144
- 1,
145
- 1,
146
- 1,
147
- 1,
148
- null,
149
- 1,
150
- null,
151
- 1,
152
- 73,
153
- null,
154
- null,
155
- 1,
156
- 115,
157
- null,
158
- null,
159
- null
160
- ],
161
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/transaction.rb": [
162
- 1,
163
- 1,
164
- 1,
165
- null,
166
- 1,
167
- 1,
168
- 1,
169
- 1,
170
- null,
171
- null,
172
- null,
173
- null,
174
- null,
175
- 1,
176
- null,
177
- null,
178
- null,
179
- 1,
180
- null,
181
- null,
182
- null,
183
- 1,
184
- null,
185
- null,
186
- 1,
187
- null,
188
- null,
189
- null,
190
- null,
191
- null,
192
- 1,
193
- null,
194
- null,
195
- 1,
196
- null,
197
- null,
198
- null,
199
- 1,
200
- null,
201
- 1,
202
- null,
203
- null,
204
- null,
205
- null,
206
- 1,
207
- null,
208
- 1,
209
- null,
210
- 1,
211
- null,
212
- null,
213
- 1,
214
- 233,
215
- null,
216
- null,
217
- null,
218
- 1,
219
- 182,
220
- null,
221
- null,
222
- null,
223
- 1,
224
- null,
225
- 0,
226
- 0,
227
- null,
228
- null,
229
- 1,
230
- 67,
231
- 67,
232
- 67,
233
- 67,
234
- 67,
235
- 67,
236
- 67,
237
- null,
238
- null,
239
- 1,
240
- 1,
241
- 0,
242
- null,
243
- null,
244
- 1,
245
- 70,
246
- null,
247
- null,
248
- 1,
249
- 70,
250
- null,
251
- null,
252
- null
253
- ],
254
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/transaction/serializer.rb": [
255
- 1,
256
- 1,
257
- 1,
258
- null,
259
- 1,
260
- null,
261
- 1,
262
- 48,
263
- null,
264
- null,
265
- 1,
266
- 48,
267
- null,
268
- 48,
269
- 48,
270
- null,
271
- null,
272
- 48,
273
- 48,
274
- 48,
275
- 48,
276
- 48,
277
- 48,
278
- null,
279
- 48,
280
- 96,
281
- null,
282
- null,
283
- 48,
284
- 48,
285
- 48,
286
- 48,
287
- null,
288
- null,
289
- 48,
290
- null,
291
- 2400,
292
- null,
293
- 48,
294
- null,
295
- null,
296
- 1,
297
- 1,
298
- 2448,
299
- null,
300
- null,
301
- 1,
302
- 48,
303
- 48,
304
- null,
305
- 48,
306
- 48,
307
- null,
308
- 48,
309
- null,
310
- null,
311
- 1,
312
- 96,
313
- 96,
314
- null,
315
- 96,
316
- 96,
317
- 96,
318
- 96,
319
- null,
320
- null,
321
- 1,
322
- 48,
323
- 48,
324
- null,
325
- 48,
326
- 48,
327
- 48,
328
- 48,
329
- null,
330
- 48,
331
- null,
332
- null,
333
- 1,
334
- 48,
335
- 48,
336
- null,
337
- 48,
338
- 48,
339
- null,
340
- null,
341
- 1,
342
- 48,
343
- 48,
344
- null,
345
- 48,
346
- null,
347
- null,
348
- 1,
349
- 48,
350
- 48,
351
- null,
352
- 48,
353
- null,
354
- 48,
355
- 48,
356
- 48,
357
- null,
358
- null,
359
- null,
360
- 1,
361
- 48,
362
- 48,
363
- null,
364
- 48,
365
- 48,
366
- null,
367
- null,
368
- 1,
369
- 48,
370
- 48,
371
- null,
372
- 48,
373
- 48,
374
- 48,
375
- 48,
376
- 48,
377
- null,
378
- null,
379
- 1,
380
- 48,
381
- 48,
382
- null,
383
- 48,
384
- 48,
385
- 48,
386
- 48,
387
- 48,
388
- 48,
389
- 48,
390
- 48,
391
- null,
392
- null,
393
- 1,
394
- 48,
395
- 48,
396
- null,
397
- 48,
398
- 48,
399
- 48,
400
- 48,
401
- 48,
402
- 48,
403
- 48,
404
- 48,
405
- null,
406
- null,
407
- 1,
408
- 144,
409
- null,
410
- null,
411
- null,
412
- null
413
- ],
414
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification.rb": [
415
- 1,
416
- 1,
417
- 1,
418
- null,
419
- 1,
420
- 17,
421
- null,
422
- null,
423
- 1,
424
- 1,
425
- null,
426
- null,
427
- 1,
428
- 1,
429
- null,
430
- null,
431
- 1,
432
- 1,
433
- null,
434
- null,
435
- 1,
436
- 1,
437
- null,
438
- null,
439
- 1,
440
- 1,
441
- null,
442
- null,
443
- 1,
444
- 1,
445
- null,
446
- null,
447
- 1,
448
- 1,
449
- null,
450
- null,
451
- 1,
452
- 1,
453
- null,
454
- null,
455
- 1,
456
- 1,
457
- null,
458
- null,
459
- 1,
460
- 1,
461
- null,
462
- null,
463
- 1,
464
- 1,
465
- null,
466
- null,
467
- 1,
468
- 1,
469
- null,
470
- null,
471
- 1,
472
- 1,
473
- null,
474
- null,
475
- 1,
476
- 1,
477
- null,
478
- null,
479
- 1,
480
- 1,
481
- null,
482
- null,
483
- 1,
484
- 1,
485
- null,
486
- null,
487
- 1,
488
- 1,
489
- null,
490
- null,
491
- 1,
492
- 1,
493
- 18,
494
- null,
495
- null,
496
- null
497
- ],
498
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/address.rb": [
499
- 1,
500
- 1,
501
- 1,
502
- 1,
503
- null,
504
- 1,
505
- 9,
506
- null,
507
- null,
508
- 1,
509
- 1,
510
- null,
511
- null,
512
- 1,
513
- 1,
514
- null,
515
- null,
516
- 1,
517
- 1,
518
- null,
519
- null,
520
- 1,
521
- 1,
522
- null,
523
- null,
524
- 1,
525
- 1,
526
- null,
527
- null,
528
- 1,
529
- 1,
530
- null,
531
- null,
532
- 1,
533
- 1,
534
- null,
535
- null,
536
- 1,
537
- 1,
538
- null,
539
- null,
540
- null,
541
- null
542
- ],
543
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/item.rb": [
544
- 1,
545
- 1,
546
- 1,
547
- 1,
548
- null,
549
- 1,
550
- 6,
551
- 6,
552
- 6,
553
- 6,
554
- null,
555
- null,
556
- null,
557
- null
558
- ],
559
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/items.rb": [
560
- 1,
561
- 1,
562
- 1,
563
- 1,
564
- null,
565
- 1,
566
- 3,
567
- 3,
568
- null,
569
- null,
570
- 1,
571
- 1,
572
- 2,
573
- null,
574
- null,
575
- null,
576
- null,
577
- null
578
- ],
579
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/payment_method.rb": [
580
- 1,
581
- 1,
582
- 1,
583
- 1,
584
- null,
585
- 1,
586
- 3,
587
- null,
588
- null,
589
- 1,
590
- 1,
591
- null,
592
- null,
593
- 1,
594
- 1,
595
- null,
596
- null,
597
- null,
598
- null
599
- ],
600
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/phone.rb": [
601
- 1,
602
- 1,
603
- 1,
604
- 1,
605
- null,
606
- 1,
607
- 3,
608
- null,
609
- null,
610
- 1,
611
- 1,
612
- null,
613
- null,
614
- 1,
615
- 1,
616
- null,
617
- null,
618
- null,
619
- null
620
- ],
621
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/sender.rb": [
622
- 1,
623
- 1,
624
- 1,
625
- 1,
626
- null,
627
- 1,
628
- 4,
629
- null,
630
- null,
631
- 1,
632
- 1,
633
- null,
634
- null,
635
- 1,
636
- 1,
637
- null,
638
- null,
639
- 1,
640
- 1,
641
- null,
642
- null,
643
- null,
644
- null
645
- ],
646
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/notification/shipping.rb": [
647
- 1,
648
- 1,
649
- 1,
650
- 1,
651
- null,
652
- 1,
653
- 4,
654
- null,
655
- null,
656
- 1,
657
- 1,
658
- null,
659
- null,
660
- 1,
661
- 1,
662
- null,
663
- null,
664
- 1,
665
- 1,
666
- null,
667
- null,
668
- null,
669
- null
670
- ],
671
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/sender.rb": [
672
- 1,
673
- 1,
674
- 1,
675
- null,
676
- 1,
677
- null,
678
- null,
679
- 1,
680
- null,
681
- null,
682
- 1,
683
- null,
684
- null,
685
- 1,
686
- null,
687
- null,
688
- 1,
689
- null,
690
- null,
691
- 1,
692
- null,
693
- 1,
694
- 77,
695
- 77,
696
- 77,
697
- null,
698
- null,
699
- null
700
- ],
701
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/phone.rb": [
702
- 1,
703
- 1,
704
- 1,
705
- null,
706
- 1,
707
- 1,
708
- 1,
709
- null,
710
- null,
711
- 1,
712
- null,
713
- null,
714
- null,
715
- 1,
716
- null,
717
- 1,
718
- 73,
719
- 73,
720
- null,
721
- null,
722
- null
723
- ],
724
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/document.rb": [
725
- 1,
726
- 1,
727
- 1,
728
- null,
729
- 1,
730
- null,
731
- null,
732
- null,
733
- 1,
734
- null,
735
- null,
736
- null,
737
- 1,
738
- null,
739
- 1,
740
- 72,
741
- 72,
742
- null,
743
- null,
744
- null
745
- ],
746
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/bank.rb": [
747
- 1,
748
- 1,
749
- 1,
750
- null,
751
- 1,
752
- 1,
753
- null,
754
- null,
755
- 1,
756
- null,
757
- 1,
758
- 51,
759
- null,
760
- null,
761
- null
762
- ],
763
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/credit_card.rb": [
764
- 1,
765
- 1,
766
- 1,
767
- null,
768
- 1,
769
- null,
770
- null,
771
- 1,
772
- null,
773
- null,
774
- 1,
775
- null,
776
- null,
777
- 1,
778
- null,
779
- null,
780
- 1,
781
- null,
782
- 1,
783
- 56,
784
- null,
785
- null,
786
- null
787
- ],
788
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/holder.rb": [
789
- 1,
790
- 1,
791
- 1,
792
- null,
793
- 1,
794
- null,
795
- null,
796
- 1,
797
- null,
798
- null,
799
- 1,
800
- null,
801
- null,
802
- 1,
803
- null,
804
- null,
805
- 1,
806
- null,
807
- 1,
808
- 56,
809
- 56,
810
- null,
811
- null,
812
- null
813
- ],
814
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/address.rb": [
815
- 1,
816
- 1,
817
- 1,
818
- 1,
819
- 1,
820
- null,
821
- 1,
822
- 1,
823
- 1,
824
- null,
825
- null,
826
- 1,
827
- null,
828
- null,
829
- 1,
830
- null,
831
- null,
832
- 1,
833
- null,
834
- null,
835
- 1,
836
- null,
837
- null,
838
- 1,
839
- null,
840
- null,
841
- 1,
842
- null,
843
- null,
844
- 1,
845
- null,
846
- null,
847
- 1,
848
- null,
849
- 1,
850
- 86,
851
- 86,
852
- 86,
853
- 86,
854
- 86,
855
- 86,
856
- 86,
857
- 86,
858
- null,
859
- null,
860
- null
861
- ],
862
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/shipping.rb": [
863
- 1,
864
- 1,
865
- 1,
866
- null,
867
- 1,
868
- 1,
869
- 1,
870
- null,
871
- null,
872
- 1,
873
- null,
874
- null,
875
- 1,
876
- null,
877
- null,
878
- 1,
879
- null,
880
- 1,
881
- 73,
882
- 73,
883
- null,
884
- null,
885
- null
886
- ],
887
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/installment.rb": [
888
- 1,
889
- 1,
890
- 1,
891
- 1,
892
- null,
893
- null,
894
- 1,
895
- null,
896
- null,
897
- 1,
898
- null,
899
- 1,
900
- 52,
901
- 52,
902
- null,
903
- null,
904
- null
905
- ],
906
- "/Users/cirdes/workspace/pagseguro-transparente/lib/pagseguro/exceptions.rb": [
907
- 1,
908
- null,
909
- 1,
910
- null,
911
- 1,
912
- null,
913
- 1,
914
- null,
915
- 1,
916
- null,
917
- 1,
918
- null,
919
- 1,
920
- null,
921
- 1,
922
- null,
923
- 1,
924
- null,
925
- 1,
926
- null,
927
- 1,
928
- null
929
- ],
930
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/bank_spec.rb": [
931
- 1,
932
- null,
933
- 1,
934
- 4,
935
- 4,
936
- null,
937
- 2,
938
- null,
939
- 1,
940
- 2,
941
- null,
942
- null,
943
- 1,
944
- 2,
945
- 2,
946
- null,
947
- null
948
- ],
949
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/credit_card_spec.rb": [
950
- 1,
951
- null,
952
- 1,
953
- 9,
954
- 9,
955
- null,
956
- 2,
957
- 2,
958
- 2,
959
- 2,
960
- null,
961
- 1,
962
- 2,
963
- 2,
964
- 2,
965
- 2,
966
- null,
967
- null
968
- ],
969
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/document_spec.rb": [
970
- 1,
971
- null,
972
- 1,
973
- 6,
974
- 6,
975
- null,
976
- 2,
977
- 2,
978
- null,
979
- 1,
980
- 2,
981
- 2,
982
- null,
983
- null,
984
- 1,
985
- 2,
986
- null,
987
- null
988
- ],
989
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/holder_spec.rb": [
990
- 1,
991
- null,
992
- 1,
993
- 9,
994
- 9,
995
- null,
996
- 2,
997
- 2,
998
- 2,
999
- 2,
1000
- null,
1001
- 1,
1002
- 2,
1003
- 2,
1004
- 2,
1005
- 2,
1006
- null,
1007
- null
1008
- ],
1009
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/installment_spec.rb": [
1010
- 1,
1011
- null,
1012
- 1,
1013
- 5,
1014
- 5,
1015
- null,
1016
- 2,
1017
- 2,
1018
- null,
1019
- 1,
1020
- 2,
1021
- 2,
1022
- null,
1023
- null
1024
- ],
1025
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/item_spec.rb": [
1026
- 1,
1027
- null,
1028
- 1,
1029
- 13,
1030
- 13,
1031
- null,
1032
- 2,
1033
- 2,
1034
- 2,
1035
- 2,
1036
- null,
1037
- 1,
1038
- 2,
1039
- 2,
1040
- 2,
1041
- 2,
1042
- null,
1043
- null,
1044
- 1,
1045
- 2,
1046
- 2,
1047
- 2,
1048
- null,
1049
- null,
1050
- 1,
1051
- 2,
1052
- null,
1053
- null
1054
- ],
1055
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/items_spec.rb": [
1056
- 1,
1057
- null,
1058
- 1,
1059
- 7,
1060
- 7,
1061
- null,
1062
- 2,
1063
- 2,
1064
- 2,
1065
- 2,
1066
- 2,
1067
- 2,
1068
- null
1069
- ],
1070
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/address_spec.rb": [
1071
- 1,
1072
- null,
1073
- 1,
1074
- 9,
1075
- null,
1076
- 1,
1077
- 8,
1078
- null,
1079
- null,
1080
- 9,
1081
- null,
1082
- 2,
1083
- 2,
1084
- 2,
1085
- 2,
1086
- 2,
1087
- 2,
1088
- 2,
1089
- 2,
1090
- null,
1091
- 1,
1092
- null,
1093
- null,
1094
- null,
1095
- null,
1096
- null,
1097
- null,
1098
- null,
1099
- null,
1100
- null,
1101
- 8,
1102
- null,
1103
- null
1104
- ],
1105
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/item_spec.rb": [
1106
- 1,
1107
- null,
1108
- 1,
1109
- 1,
1110
- 4,
1111
- null,
1112
- null,
1113
- null,
1114
- 5,
1115
- null,
1116
- 2,
1117
- 2,
1118
- 2,
1119
- 2,
1120
- null
1121
- ],
1122
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/items_spec.rb": [
1123
- 1,
1124
- null,
1125
- 1,
1126
- 3,
1127
- null,
1128
- 1,
1129
- 2,
1130
- null,
1131
- null,
1132
- 3,
1133
- null,
1134
- 2,
1135
- 2,
1136
- null,
1137
- 1,
1138
- null,
1139
- null,
1140
- null,
1141
- null,
1142
- null,
1143
- null,
1144
- null,
1145
- null,
1146
- null,
1147
- null,
1148
- null,
1149
- null,
1150
- null,
1151
- 2,
1152
- null,
1153
- null
1154
- ],
1155
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/payment_method_spec.rb": [
1156
- 1,
1157
- null,
1158
- 1,
1159
- 3,
1160
- null,
1161
- 1,
1162
- 2,
1163
- null,
1164
- null,
1165
- 3,
1166
- null,
1167
- 2,
1168
- 2,
1169
- null,
1170
- 1,
1171
- null,
1172
- null,
1173
- null,
1174
- 2,
1175
- null,
1176
- null
1177
- ],
1178
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/phone_spec.rb": [
1179
- 1,
1180
- null,
1181
- 1,
1182
- 3,
1183
- null,
1184
- 1,
1185
- 2,
1186
- null,
1187
- null,
1188
- 3,
1189
- null,
1190
- 2,
1191
- 2,
1192
- null,
1193
- 1,
1194
- null,
1195
- null,
1196
- null,
1197
- 2,
1198
- null,
1199
- null
1200
- ],
1201
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/sender_spec.rb": [
1202
- 1,
1203
- null,
1204
- 1,
1205
- 4,
1206
- null,
1207
- 1,
1208
- 3,
1209
- null,
1210
- null,
1211
- 4,
1212
- null,
1213
- 2,
1214
- 2,
1215
- 2,
1216
- null,
1217
- 1,
1218
- null,
1219
- null,
1220
- null,
1221
- null,
1222
- null,
1223
- null,
1224
- null,
1225
- 3,
1226
- null,
1227
- null
1228
- ],
1229
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification/shipping_spec.rb": [
1230
- 1,
1231
- null,
1232
- 1,
1233
- 4,
1234
- null,
1235
- 1,
1236
- 3,
1237
- null,
1238
- null,
1239
- 4,
1240
- null,
1241
- 2,
1242
- 2,
1243
- 2,
1244
- null,
1245
- 1,
1246
- null,
1247
- null,
1248
- null,
1249
- 3,
1250
- null,
1251
- null
1252
- ],
1253
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/notification_spec.rb": [
1254
- 1,
1255
- null,
1256
- 1,
1257
- 18,
1258
- null,
1259
- 18,
1260
- null,
1261
- 18,
1262
- null,
1263
- 2,
1264
- 2,
1265
- 2,
1266
- 2,
1267
- 2,
1268
- 2,
1269
- 2,
1270
- 2,
1271
- 2,
1272
- 2,
1273
- 2,
1274
- 2,
1275
- 2,
1276
- 2,
1277
- 2,
1278
- 2,
1279
- 2,
1280
- null,
1281
- 1,
1282
- null,
1283
- null,
1284
- null,
1285
- null,
1286
- null,
1287
- null,
1288
- null,
1289
- null,
1290
- null,
1291
- null,
1292
- null,
1293
- null,
1294
- null,
1295
- null,
1296
- 17,
1297
- null,
1298
- null
1299
- ],
1300
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/pagseguro_spec.rb": [
1301
- 1,
1302
- null,
1303
- 1,
1304
- 1,
1305
- 4,
1306
- 4,
1307
- null,
1308
- null,
1309
- 2,
1310
- 2,
1311
- null,
1312
- 1,
1313
- 1,
1314
- 1,
1315
- 1,
1316
- null,
1317
- null,
1318
- null,
1319
- null,
1320
- 1,
1321
- 2,
1322
- null,
1323
- null
1324
- ],
1325
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/phone_spec.rb": [
1326
- 1,
1327
- null,
1328
- 1,
1329
- 7,
1330
- 7,
1331
- null,
1332
- 2,
1333
- 2,
1334
- null,
1335
- 1,
1336
- 2,
1337
- 2,
1338
- null,
1339
- null,
1340
- 1,
1341
- 2,
1342
- 2,
1343
- null,
1344
- null
1345
- ],
1346
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/sender_spec.rb": [
1347
- 1,
1348
- null,
1349
- 1,
1350
- 11,
1351
- 11,
1352
- null,
1353
- 2,
1354
- 2,
1355
- 2,
1356
- 2,
1357
- 2,
1358
- null,
1359
- 1,
1360
- 2,
1361
- 2,
1362
- 2,
1363
- 2,
1364
- 2,
1365
- null,
1366
- null
1367
- ],
1368
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/session/response_spec.rb": [
1369
- 1,
1370
- null,
1371
- 1,
1372
- 1,
1373
- 2,
1374
- null,
1375
- null,
1376
- 3,
1377
- null,
1378
- 3,
1379
- null,
1380
- 2,
1381
- null,
1382
- 1,
1383
- 2,
1384
- null,
1385
- null
1386
- ],
1387
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/session_spec.rb": [
1388
- 1,
1389
- null,
1390
- 1,
1391
- 3,
1392
- 2,
1393
- null,
1394
- 1,
1395
- 2,
1396
- 2,
1397
- null,
1398
- null,
1399
- 2,
1400
- null,
1401
- 1,
1402
- 2,
1403
- 1,
1404
- null,
1405
- 1,
1406
- null,
1407
- null,
1408
- 2,
1409
- null,
1410
- null
1411
- ],
1412
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/shipping_spec.rb": [
1413
- 1,
1414
- null,
1415
- 1,
1416
- 7,
1417
- 7,
1418
- null,
1419
- 2,
1420
- 2,
1421
- 2,
1422
- null,
1423
- 1,
1424
- 2,
1425
- null,
1426
- null,
1427
- 1,
1428
- 2,
1429
- null,
1430
- null,
1431
- 1,
1432
- 2,
1433
- null,
1434
- null
1435
- ],
1436
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/transaction/serializer_spec.rb": [
1437
- 1,
1438
- null,
1439
- 1,
1440
- 49,
1441
- 49,
1442
- null,
1443
- 1,
1444
- null,
1445
- null,
1446
- null,
1447
- null,
1448
- null,
1449
- 48,
1450
- null,
1451
- null,
1452
- 1,
1453
- 48,
1454
- 48,
1455
- 48,
1456
- 48,
1457
- 48,
1458
- 48,
1459
- null,
1460
- 48,
1461
- null,
1462
- null,
1463
- 49,
1464
- 49,
1465
- 1,
1466
- 48,
1467
- null,
1468
- null,
1469
- null,
1470
- null,
1471
- 48,
1472
- 48,
1473
- 48,
1474
- null,
1475
- null,
1476
- 1,
1477
- 48,
1478
- null,
1479
- null,
1480
- null,
1481
- null,
1482
- null,
1483
- null,
1484
- null,
1485
- null,
1486
- null,
1487
- null,
1488
- 1,
1489
- 48,
1490
- 48,
1491
- 48,
1492
- null,
1493
- null,
1494
- null,
1495
- 49,
1496
- null,
1497
- 1,
1498
- 48,
1499
- 48,
1500
- 48,
1501
- 48,
1502
- null,
1503
- null,
1504
- 1,
1505
- 48,
1506
- 48,
1507
- 48,
1508
- 48,
1509
- 48,
1510
- null,
1511
- 1,
1512
- 48,
1513
- 48,
1514
- null,
1515
- 49,
1516
- null,
1517
- 2,
1518
- 2,
1519
- 2,
1520
- 2,
1521
- 2,
1522
- 2,
1523
- 2,
1524
- 2,
1525
- 2,
1526
- 2,
1527
- 2,
1528
- 2,
1529
- 2,
1530
- 2,
1531
- 2,
1532
- 2,
1533
- 2,
1534
- 2,
1535
- 2,
1536
- 2,
1537
- 2,
1538
- 2,
1539
- 2,
1540
- 2,
1541
- 2,
1542
- 2,
1543
- 2,
1544
- 2,
1545
- 2,
1546
- 2,
1547
- 2,
1548
- 2,
1549
- null,
1550
- 2,
1551
- 2,
1552
- 2,
1553
- 2,
1554
- 2,
1555
- 2,
1556
- 2,
1557
- 2,
1558
- null,
1559
- 2,
1560
- 2,
1561
- 2,
1562
- 2,
1563
- 2,
1564
- 2,
1565
- 2,
1566
- 2,
1567
- null
1568
- ],
1569
- "/Users/cirdes/workspace/pagseguro-transparente/spec/pagseguro/transaction_spec.rb": [
1570
- 1,
1571
- null,
1572
- 1,
1573
- 20,
1574
- null,
1575
- 1,
1576
- null,
1577
- null,
1578
- null,
1579
- null,
1580
- null,
1581
- 19,
1582
- null,
1583
- null,
1584
- 18,
1585
- null,
1586
- 1,
1587
- 19,
1588
- 19,
1589
- 19,
1590
- 19,
1591
- 19,
1592
- null,
1593
- null,
1594
- null,
1595
- 20,
1596
- 20,
1597
- 1,
1598
- 19,
1599
- null,
1600
- null,
1601
- null,
1602
- null,
1603
- 19,
1604
- 19,
1605
- 19,
1606
- null,
1607
- null,
1608
- 1,
1609
- 19,
1610
- null,
1611
- null,
1612
- null,
1613
- null,
1614
- null,
1615
- null,
1616
- null,
1617
- null,
1618
- null,
1619
- null,
1620
- 1,
1621
- 19,
1622
- 19,
1623
- 19,
1624
- null,
1625
- null,
1626
- 2,
1627
- 2,
1628
- 2,
1629
- 2,
1630
- 2,
1631
- 2,
1632
- 2,
1633
- 2,
1634
- 2,
1635
- 2,
1636
- 2,
1637
- 2,
1638
- null,
1639
- 1,
1640
- 2,
1641
- 2,
1642
- 2,
1643
- 2,
1644
- null,
1645
- null,
1646
- 1,
1647
- 2,
1648
- 2,
1649
- null,
1650
- null,
1651
- 1,
1652
- 2,
1653
- 2,
1654
- null,
1655
- null,
1656
- 1,
1657
- 2,
1658
- 2,
1659
- null,
1660
- null
1661
- ]
1662
- },
1663
- "timestamp": 1397741301
1664
- }
1665
- }