sucker 1.0.0.beta.4 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/CHANGELOG.md +12 -2
  2. data/README.md +5 -2
  3. data/lib/sucker.rbc +341 -0
  4. data/lib/sucker/request.rb +1 -1
  5. data/lib/sucker/request.rbc +2481 -0
  6. data/lib/sucker/response.rb +19 -7
  7. data/lib/sucker/response.rbc +1554 -0
  8. data/lib/sucker/version.rb +2 -2
  9. data/lib/sucker/version.rbc +130 -0
  10. data/spec/fixtures/asins.txt +9406 -406
  11. data/spec/fixtures/cassette_library/integration/alternate_versions.yml +27 -0
  12. data/spec/fixtures/cassette_library/integration/errors.yml +27 -0
  13. data/spec/fixtures/cassette_library/integration/france.yml +27 -0
  14. data/spec/fixtures/cassette_library/integration/images.yml +27 -0
  15. data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +27 -0
  16. data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +27 -0
  17. data/spec/fixtures/cassette_library/integration/item_search.yml +27 -0
  18. data/spec/fixtures/cassette_library/integration/japan.yml +27 -0
  19. data/spec/fixtures/cassette_library/integration/keyword_search.yml +27 -0
  20. data/spec/fixtures/cassette_library/integration/kindle.yml +27 -0
  21. data/spec/fixtures/cassette_library/integration/kindle_2.yml +27 -0
  22. data/spec/fixtures/cassette_library/integration/multiple_locales.yml +157 -0
  23. data/spec/fixtures/cassette_library/integration/power_search.yml +27 -0
  24. data/spec/fixtures/cassette_library/integration/related_items/child.yml +27 -0
  25. data/spec/fixtures/cassette_library/integration/related_items/parent.yml +27 -0
  26. data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +27 -0
  27. data/spec/fixtures/cassette_library/integration/twenty_items.yml +27 -0
  28. data/spec/fixtures/cassette_library/unit/sucker/request.yml +29 -0
  29. data/spec/fixtures/cassette_library/unit/sucker/response.yml +27 -0
  30. data/spec/integration/alternate_versions_spec.rb +28 -20
  31. data/spec/integration/alternate_versions_spec.rbc +843 -0
  32. data/spec/integration/errors_spec.rb +10 -6
  33. data/spec/integration/errors_spec.rbc +964 -0
  34. data/spec/integration/france_spec.rb +33 -25
  35. data/spec/integration/france_spec.rbc +1012 -0
  36. data/spec/integration/images_spec.rb +32 -24
  37. data/spec/integration/images_spec.rbc +1047 -0
  38. data/spec/integration/item_lookup_spec.rb +11 -3
  39. data/spec/integration/item_lookup_spec.rbc +1723 -0
  40. data/spec/integration/item_search_spec.rb +6 -2
  41. data/spec/integration/item_search_spec.rbc +926 -0
  42. data/spec/integration/japan_spec.rb +27 -19
  43. data/spec/integration/japan_spec.rbc +849 -0
  44. data/spec/integration/keyword_search_spec.rb +5 -0
  45. data/spec/integration/keyword_search_spec.rbc +838 -0
  46. data/spec/integration/kindle_spec.rb +13 -5
  47. data/spec/integration/kindle_spec.rbc +1425 -0
  48. data/spec/integration/multiple_locales_spec.rb +34 -26
  49. data/spec/integration/multiple_locales_spec.rbc +1090 -0
  50. data/spec/integration/power_search_spec.rb +5 -0
  51. data/spec/integration/power_search_spec.rbc +838 -0
  52. data/spec/integration/related_items_spec.rb +41 -29
  53. data/spec/integration/related_items_spec.rbc +1228 -0
  54. data/spec/integration/seller_listing_search_spec.rb +3 -0
  55. data/spec/integration/seller_listing_search_spec.rbc +852 -0
  56. data/spec/integration/twenty_items_spec.rb +41 -34
  57. data/spec/integration/twenty_items_spec.rbc +1166 -0
  58. data/spec/spec_helper.rbc +231 -0
  59. data/spec/support/amazon.yml +3 -0
  60. data/spec/support/amazon.yml.example +1 -0
  61. data/spec/support/amazon_credentials.rbc +154 -0
  62. data/spec/support/asins.rb +6 -1
  63. data/spec/support/asins.rbc +335 -0
  64. data/spec/support/vcr.rbc +360 -0
  65. data/spec/unit/sucker/request_spec.rb +57 -23
  66. data/spec/unit/sucker/request_spec.rbc +4031 -0
  67. data/spec/unit/sucker/response_spec.rb +100 -26
  68. data/spec/unit/sucker/response_spec.rbc +3787 -0
  69. data/spec/unit/sucker_spec.rb +5 -1
  70. data/spec/unit/sucker_spec.rbc +299 -0
  71. metadata +94 -12
@@ -1,5 +1,15 @@
1
+ Version 1.0.0
2
+ =============
3
+
4
+ Release date: 2010-11-04
5
+
6
+ Added
7
+ -----
8
+
9
+ * Added #each and #map to Response. #find no longer yields.
10
+
1
11
  Version 1.0.0.beta4
2
- ========
12
+ ===================
3
13
 
4
14
  Release date: 2010-10-28
5
15
 
@@ -9,7 +19,7 @@ Added
9
19
  * Sucker::Request#get! raises an error if response is not valid.
10
20
 
11
21
  Version 1.0.0.beta3
12
- ========
22
+ ===================
13
23
 
14
24
  Release date: 2010-10-25
15
25
 
data/README.md CHANGED
@@ -41,11 +41,11 @@ Debug.
41
41
 
42
42
  Iterate over items in your item lookup.
43
43
 
44
- response.find("Item") { |item| ... }
44
+ response.each("Item") { |item| ... }
45
45
 
46
46
  Iterate over errors.
47
47
 
48
- response.find("Error") { |error| ... }
48
+ errors = response.map("Error") { |error| ... }
49
49
 
50
50
  Repeat ad infinitum.
51
51
 
@@ -64,3 +64,6 @@ Compatibility
64
64
  -------------
65
65
 
66
66
  Specs pass against Ruby 1.8.7, Ruby 1.9.2, and Rubinius 1.1.
67
+
68
+ Sucker works seamlessly with or without Rails.
69
+
@@ -0,0 +1,341 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 73
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 1
47
+ 1
48
+ 15
49
+ 5
50
+ 7
51
+ 5
52
+ 64
53
+ 47
54
+ 49
55
+ 1
56
+ 1
57
+ 15
58
+ 99
59
+ 7
60
+ 6
61
+ 65
62
+ 49
63
+ 7
64
+ 2
65
+ 13
66
+ 99
67
+ 12
68
+ 7
69
+ 8
70
+ 12
71
+ 7
72
+ 9
73
+ 12
74
+ 65
75
+ 12
76
+ 49
77
+ 10
78
+ 4
79
+ 15
80
+ 49
81
+ 8
82
+ 0
83
+ 15
84
+ 2
85
+ 11
86
+ I
87
+ 6
88
+ I
89
+ 0
90
+ I
91
+ 0
92
+ I
93
+ 0
94
+ n
95
+ p
96
+ 11
97
+ s
98
+ 32
99
+ active_support/xml_mini/nokogiri
100
+ x
101
+ 7
102
+ require
103
+ s
104
+ 4
105
+ curb
106
+ s
107
+ 14
108
+ sucker/request
109
+ s
110
+ 15
111
+ sucker/response
112
+ s
113
+ 3
114
+ uri
115
+ x
116
+ 6
117
+ Sucker
118
+ x
119
+ 11
120
+ open_module
121
+ x
122
+ 15
123
+ __module_init__
124
+ M
125
+ 1
126
+ n
127
+ n
128
+ x
129
+ 6
130
+ Sucker
131
+ i
132
+ 23
133
+ 5
134
+ 66
135
+ 65
136
+ 7
137
+ 0
138
+ 7
139
+ 1
140
+ 64
141
+ 49
142
+ 2
143
+ 2
144
+ 15
145
+ 99
146
+ 7
147
+ 3
148
+ 7
149
+ 4
150
+ 65
151
+ 5
152
+ 49
153
+ 5
154
+ 4
155
+ 11
156
+ I
157
+ 5
158
+ I
159
+ 0
160
+ I
161
+ 0
162
+ I
163
+ 0
164
+ n
165
+ p
166
+ 6
167
+ x
168
+ 26
169
+ CURRENT_AMAZON_API_VERSION
170
+ s
171
+ 10
172
+ 2010-09-01
173
+ x
174
+ 9
175
+ const_set
176
+ x
177
+ 3
178
+ new
179
+ M
180
+ 1
181
+ n
182
+ n
183
+ x
184
+ 3
185
+ new
186
+ i
187
+ 45
188
+ 23
189
+ 0
190
+ 10
191
+ 14
192
+ 44
193
+ 43
194
+ 0
195
+ 78
196
+ 49
197
+ 1
198
+ 1
199
+ 19
200
+ 0
201
+ 15
202
+ 45
203
+ 2
204
+ 3
205
+ 43
206
+ 4
207
+ 13
208
+ 71
209
+ 5
210
+ 47
211
+ 9
212
+ 39
213
+ 47
214
+ 49
215
+ 6
216
+ 0
217
+ 13
218
+ 20
219
+ 0
220
+ 47
221
+ 49
222
+ 7
223
+ 1
224
+ 15
225
+ 8
226
+ 44
227
+ 20
228
+ 0
229
+ 49
230
+ 5
231
+ 1
232
+ 11
233
+ I
234
+ 4
235
+ I
236
+ 1
237
+ I
238
+ 0
239
+ I
240
+ 1
241
+ n
242
+ p
243
+ 8
244
+ x
245
+ 4
246
+ Hash
247
+ x
248
+ 16
249
+ new_from_literal
250
+ x
251
+ 6
252
+ Sucker
253
+ n
254
+ x
255
+ 7
256
+ Request
257
+ x
258
+ 3
259
+ new
260
+ x
261
+ 8
262
+ allocate
263
+ x
264
+ 10
265
+ initialize
266
+ p
267
+ 5
268
+ I
269
+ 0
270
+ I
271
+ 14
272
+ I
273
+ e
274
+ I
275
+ 15
276
+ I
277
+ 2d
278
+ x
279
+ 36
280
+ /Users/snl/code/sucker/lib/sucker.rb
281
+ p
282
+ 1
283
+ x
284
+ 4
285
+ args
286
+ x
287
+ 13
288
+ attach_method
289
+ p
290
+ 5
291
+ I
292
+ 2
293
+ I
294
+ b
295
+ I
296
+ c
297
+ I
298
+ 14
299
+ I
300
+ 17
301
+ x
302
+ 36
303
+ /Users/snl/code/sucker/lib/sucker.rb
304
+ p
305
+ 0
306
+ x
307
+ 13
308
+ attach_method
309
+ p
310
+ 13
311
+ I
312
+ 0
313
+ I
314
+ 1
315
+ I
316
+ 9
317
+ I
318
+ 2
319
+ I
320
+ 12
321
+ I
322
+ 3
323
+ I
324
+ 1b
325
+ I
326
+ 4
327
+ I
328
+ 24
329
+ I
330
+ 5
331
+ I
332
+ 2d
333
+ I
334
+ a
335
+ I
336
+ 49
337
+ x
338
+ 36
339
+ /Users/snl/code/sucker/lib/sucker.rb
340
+ p
341
+ 0
@@ -1,4 +1,4 @@
1
- module Sucker #:nodoc
1
+ module Sucker #:nodoc:
2
2
 
3
3
  # A wrapper around the API request
4
4
  class Request
@@ -0,0 +1,2481 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 6
54
+ Sucker
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 6
67
+ Sucker
68
+ i
69
+ 29
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 1
76
+ 65
77
+ 49
78
+ 1
79
+ 3
80
+ 13
81
+ 99
82
+ 12
83
+ 7
84
+ 2
85
+ 12
86
+ 7
87
+ 3
88
+ 12
89
+ 65
90
+ 12
91
+ 49
92
+ 4
93
+ 4
94
+ 15
95
+ 49
96
+ 2
97
+ 0
98
+ 11
99
+ I
100
+ 6
101
+ I
102
+ 0
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ n
108
+ p
109
+ 5
110
+ x
111
+ 7
112
+ Request
113
+ x
114
+ 10
115
+ open_class
116
+ x
117
+ 14
118
+ __class_init__
119
+ M
120
+ 1
121
+ n
122
+ n
123
+ x
124
+ 7
125
+ Request
126
+ i
127
+ 311
128
+ 5
129
+ 66
130
+ 65
131
+ 7
132
+ 0
133
+ 44
134
+ 43
135
+ 1
136
+ 4
137
+ 6
138
+ 49
139
+ 2
140
+ 1
141
+ 13
142
+ 7
143
+ 3
144
+ 7
145
+ 4
146
+ 64
147
+ 49
148
+ 5
149
+ 2
150
+ 15
151
+ 13
152
+ 7
153
+ 6
154
+ 7
155
+ 7
156
+ 64
157
+ 49
158
+ 5
159
+ 2
160
+ 15
161
+ 13
162
+ 7
163
+ 8
164
+ 7
165
+ 9
166
+ 64
167
+ 49
168
+ 5
169
+ 2
170
+ 15
171
+ 13
172
+ 7
173
+ 10
174
+ 7
175
+ 11
176
+ 64
177
+ 49
178
+ 5
179
+ 2
180
+ 15
181
+ 13
182
+ 7
183
+ 12
184
+ 7
185
+ 13
186
+ 64
187
+ 49
188
+ 5
189
+ 2
190
+ 15
191
+ 13
192
+ 7
193
+ 14
194
+ 7
195
+ 15
196
+ 64
197
+ 49
198
+ 5
199
+ 2
200
+ 15
201
+ 49
202
+ 16
203
+ 2
204
+ 15
205
+ 65
206
+ 7
207
+ 17
208
+ 7
209
+ 18
210
+ 64
211
+ 49
212
+ 16
213
+ 2
214
+ 15
215
+ 5
216
+ 7
217
+ 19
218
+ 47
219
+ 49
220
+ 20
221
+ 1
222
+ 15
223
+ 5
224
+ 7
225
+ 21
226
+ 47
227
+ 49
228
+ 20
229
+ 1
230
+ 15
231
+ 5
232
+ 7
233
+ 22
234
+ 47
235
+ 49
236
+ 20
237
+ 1
238
+ 15
239
+ 99
240
+ 7
241
+ 23
242
+ 7
243
+ 24
244
+ 65
245
+ 67
246
+ 49
247
+ 25
248
+ 0
249
+ 49
250
+ 26
251
+ 4
252
+ 15
253
+ 99
254
+ 7
255
+ 27
256
+ 7
257
+ 28
258
+ 65
259
+ 67
260
+ 49
261
+ 25
262
+ 0
263
+ 49
264
+ 26
265
+ 4
266
+ 15
267
+ 99
268
+ 7
269
+ 29
270
+ 7
271
+ 30
272
+ 65
273
+ 67
274
+ 49
275
+ 25
276
+ 0
277
+ 49
278
+ 26
279
+ 4
280
+ 15
281
+ 99
282
+ 7
283
+ 31
284
+ 7
285
+ 32
286
+ 65
287
+ 67
288
+ 49
289
+ 25
290
+ 0
291
+ 49
292
+ 26
293
+ 4
294
+ 15
295
+ 99
296
+ 7
297
+ 33
298
+ 7
299
+ 34
300
+ 65
301
+ 67
302
+ 49
303
+ 25
304
+ 0
305
+ 49
306
+ 26
307
+ 4
308
+ 15
309
+ 99
310
+ 7
311
+ 35
312
+ 7
313
+ 36
314
+ 65
315
+ 67
316
+ 49
317
+ 25
318
+ 0
319
+ 49
320
+ 26
321
+ 4
322
+ 15
323
+ 99
324
+ 7
325
+ 37
326
+ 7
327
+ 38
328
+ 65
329
+ 67
330
+ 49
331
+ 25
332
+ 0
333
+ 49
334
+ 26
335
+ 4
336
+ 15
337
+ 99
338
+ 7
339
+ 39
340
+ 7
341
+ 40
342
+ 65
343
+ 67
344
+ 49
345
+ 25
346
+ 0
347
+ 49
348
+ 26
349
+ 4
350
+ 15
351
+ 5
352
+ 48
353
+ 41
354
+ 15
355
+ 99
356
+ 7
357
+ 42
358
+ 7
359
+ 43
360
+ 65
361
+ 67
362
+ 49
363
+ 25
364
+ 0
365
+ 49
366
+ 26
367
+ 4
368
+ 15
369
+ 99
370
+ 7
371
+ 44
372
+ 7
373
+ 45
374
+ 65
375
+ 67
376
+ 49
377
+ 25
378
+ 0
379
+ 49
380
+ 26
381
+ 4
382
+ 15
383
+ 99
384
+ 7
385
+ 46
386
+ 7
387
+ 47
388
+ 65
389
+ 67
390
+ 49
391
+ 25
392
+ 0
393
+ 49
394
+ 26
395
+ 4
396
+ 15
397
+ 99
398
+ 7
399
+ 48
400
+ 7
401
+ 49
402
+ 65
403
+ 67
404
+ 49
405
+ 25
406
+ 0
407
+ 49
408
+ 26
409
+ 4
410
+ 15
411
+ 99
412
+ 7
413
+ 50
414
+ 7
415
+ 51
416
+ 65
417
+ 67
418
+ 49
419
+ 25
420
+ 0
421
+ 49
422
+ 26
423
+ 4
424
+ 15
425
+ 99
426
+ 7
427
+ 52
428
+ 7
429
+ 53
430
+ 65
431
+ 67
432
+ 49
433
+ 25
434
+ 0
435
+ 49
436
+ 26
437
+ 4
438
+ 11
439
+ I
440
+ 6
441
+ I
442
+ 0
443
+ I
444
+ 0
445
+ I
446
+ 0
447
+ n
448
+ p
449
+ 54
450
+ x
451
+ 5
452
+ HOSTS
453
+ x
454
+ 4
455
+ Hash
456
+ x
457
+ 16
458
+ new_from_literal
459
+ x
460
+ 2
461
+ us
462
+ s
463
+ 17
464
+ ecs.amazonaws.com
465
+ x
466
+ 3
467
+ []=
468
+ x
469
+ 2
470
+ uk
471
+ s
472
+ 19
473
+ ecs.amazonaws.co.uk
474
+ x
475
+ 2
476
+ de
477
+ s
478
+ 16
479
+ ecs.amazonaws.de
480
+ x
481
+ 2
482
+ ca
483
+ s
484
+ 16
485
+ ecs.amazonaws.ca
486
+ x
487
+ 2
488
+ fr
489
+ s
490
+ 16
491
+ ecs.amazonaws.fr
492
+ x
493
+ 2
494
+ jp
495
+ s
496
+ 16
497
+ ecs.amazonaws.jp
498
+ x
499
+ 9
500
+ const_set
501
+ x
502
+ 4
503
+ PATH
504
+ s
505
+ 9
506
+ /onca/xml
507
+ x
508
+ 6
509
+ locale
510
+ x
511
+ 13
512
+ attr_accessor
513
+ x
514
+ 6
515
+ secret
516
+ x
517
+ 10
518
+ parameters
519
+ x
520
+ 10
521
+ initialize
522
+ M
523
+ 1
524
+ n
525
+ n
526
+ x
527
+ 10
528
+ initialize
529
+ i
530
+ 47
531
+ 5
532
+ 44
533
+ 43
534
+ 0
535
+ 80
536
+ 49
537
+ 1
538
+ 1
539
+ 13
540
+ 7
541
+ 2
542
+ 64
543
+ 7
544
+ 3
545
+ 64
546
+ 49
547
+ 4
548
+ 2
549
+ 15
550
+ 13
551
+ 7
552
+ 5
553
+ 64
554
+ 45
555
+ 6
556
+ 7
557
+ 49
558
+ 4
559
+ 2
560
+ 15
561
+ 13
562
+ 18
563
+ 2
564
+ 47
565
+ 49
566
+ 8
567
+ 1
568
+ 15
569
+ 15
570
+ 20
571
+ 0
572
+ 56
573
+ 9
574
+ 50
575
+ 10
576
+ 0
577
+ 11
578
+ I
579
+ 6
580
+ I
581
+ 1
582
+ I
583
+ 1
584
+ I
585
+ 1
586
+ n
587
+ p
588
+ 11
589
+ x
590
+ 4
591
+ Hash
592
+ x
593
+ 16
594
+ new_from_literal
595
+ s
596
+ 7
597
+ Service
598
+ s
599
+ 19
600
+ AWSECommerceService
601
+ x
602
+ 3
603
+ []=
604
+ s
605
+ 7
606
+ Version
607
+ x
608
+ 26
609
+ CURRENT_AMAZON_API_VERSION
610
+ n
611
+ x
612
+ 11
613
+ parameters=
614
+ M
615
+ 1
616
+ p
617
+ 2
618
+ x
619
+ 9
620
+ for_block
621
+ t
622
+ n
623
+ x
624
+ 10
625
+ initialize
626
+ i
627
+ 28
628
+ 58
629
+ 37
630
+ 19
631
+ 0
632
+ 15
633
+ 37
634
+ 19
635
+ 1
636
+ 15
637
+ 15
638
+ 5
639
+ 20
640
+ 0
641
+ 47
642
+ 49
643
+ 0
644
+ 0
645
+ 7
646
+ 1
647
+ 63
648
+ 2
649
+ 20
650
+ 1
651
+ 47
652
+ 49
653
+ 2
654
+ 2
655
+ 11
656
+ I
657
+ 6
658
+ I
659
+ 2
660
+ I
661
+ 2
662
+ I
663
+ 2
664
+ n
665
+ p
666
+ 3
667
+ x
668
+ 4
669
+ to_s
670
+ s
671
+ 1
672
+ =
673
+ x
674
+ 4
675
+ send
676
+ p
677
+ 3
678
+ I
679
+ 0
680
+ I
681
+ 24
682
+ I
683
+ 1c
684
+ x
685
+ 44
686
+ /Users/snl/code/sucker/lib/sucker/request.rb
687
+ p
688
+ 2
689
+ x
690
+ 1
691
+ k
692
+ x
693
+ 1
694
+ v
695
+ x
696
+ 4
697
+ each
698
+ p
699
+ 13
700
+ I
701
+ 0
702
+ I
703
+ 1e
704
+ I
705
+ 0
706
+ I
707
+ 9f
708
+ I
709
+ 1
710
+ I
711
+ 22
712
+ I
713
+ 9
714
+ I
715
+ 20
716
+ I
717
+ 14
718
+ I
719
+ 21
720
+ I
721
+ 27
722
+ I
723
+ 24
724
+ I
725
+ 2f
726
+ x
727
+ 44
728
+ /Users/snl/code/sucker/lib/sucker/request.rb
729
+ p
730
+ 1
731
+ x
732
+ 4
733
+ args
734
+ x
735
+ 17
736
+ method_visibility
737
+ x
738
+ 15
739
+ add_defn_method
740
+ x
741
+ 2
742
+ <<
743
+ M
744
+ 1
745
+ n
746
+ n
747
+ x
748
+ 2
749
+ <<
750
+ i
751
+ 10
752
+ 5
753
+ 49
754
+ 0
755
+ 0
756
+ 20
757
+ 0
758
+ 49
759
+ 1
760
+ 1
761
+ 11
762
+ I
763
+ 3
764
+ I
765
+ 1
766
+ I
767
+ 1
768
+ I
769
+ 1
770
+ n
771
+ p
772
+ 2
773
+ x
774
+ 10
775
+ parameters
776
+ x
777
+ 6
778
+ merge!
779
+ p
780
+ 5
781
+ I
782
+ 0
783
+ I
784
+ 30
785
+ I
786
+ 0
787
+ I
788
+ 31
789
+ I
790
+ a
791
+ x
792
+ 44
793
+ /Users/snl/code/sucker/lib/sucker/request.rb
794
+ p
795
+ 1
796
+ x
797
+ 4
798
+ hash
799
+ x
800
+ 14
801
+ associate_tag=
802
+ M
803
+ 1
804
+ n
805
+ n
806
+ x
807
+ 14
808
+ associate_tag=
809
+ i
810
+ 16
811
+ 5
812
+ 48
813
+ 0
814
+ 7
815
+ 1
816
+ 64
817
+ 20
818
+ 0
819
+ 13
820
+ 18
821
+ 3
822
+ 49
823
+ 2
824
+ 2
825
+ 15
826
+ 11
827
+ I
828
+ 5
829
+ I
830
+ 1
831
+ I
832
+ 1
833
+ I
834
+ 1
835
+ n
836
+ p
837
+ 3
838
+ x
839
+ 10
840
+ parameters
841
+ s
842
+ 12
843
+ AssociateTag
844
+ x
845
+ 3
846
+ []=
847
+ p
848
+ 5
849
+ I
850
+ 0
851
+ I
852
+ 39
853
+ I
854
+ 0
855
+ I
856
+ 3a
857
+ I
858
+ 10
859
+ x
860
+ 44
861
+ /Users/snl/code/sucker/lib/sucker/request.rb
862
+ p
863
+ 1
864
+ x
865
+ 5
866
+ token
867
+ x
868
+ 4
869
+ curl
870
+ M
871
+ 1
872
+ n
873
+ n
874
+ x
875
+ 4
876
+ curl
877
+ i
878
+ 49
879
+ 39
880
+ 0
881
+ 13
882
+ 10
883
+ 34
884
+ 15
885
+ 45
886
+ 1
887
+ 2
888
+ 43
889
+ 3
890
+ 13
891
+ 71
892
+ 4
893
+ 47
894
+ 9
895
+ 29
896
+ 47
897
+ 49
898
+ 5
899
+ 0
900
+ 13
901
+ 47
902
+ 49
903
+ 6
904
+ 0
905
+ 15
906
+ 8
907
+ 32
908
+ 49
909
+ 4
910
+ 0
911
+ 38
912
+ 0
913
+ 15
914
+ 94
915
+ 9
916
+ 44
917
+ 39
918
+ 0
919
+ 60
920
+ 1
921
+ 8
922
+ 45
923
+ 1
924
+ 15
925
+ 39
926
+ 0
927
+ 11
928
+ I
929
+ 2
930
+ I
931
+ 0
932
+ I
933
+ 0
934
+ I
935
+ 0
936
+ n
937
+ p
938
+ 7
939
+ x
940
+ 5
941
+ @curl
942
+ x
943
+ 4
944
+ Curl
945
+ n
946
+ x
947
+ 4
948
+ Easy
949
+ x
950
+ 3
951
+ new
952
+ x
953
+ 8
954
+ allocate
955
+ x
956
+ 10
957
+ initialize
958
+ p
959
+ 9
960
+ I
961
+ 0
962
+ I
963
+ 42
964
+ I
965
+ 0
966
+ I
967
+ 43
968
+ I
969
+ 23
970
+ I
971
+ 44
972
+ I
973
+ 2e
974
+ I
975
+ 45
976
+ I
977
+ 31
978
+ x
979
+ 44
980
+ /Users/snl/code/sucker/lib/sucker/request.rb
981
+ p
982
+ 0
983
+ x
984
+ 3
985
+ get
986
+ M
987
+ 1
988
+ n
989
+ n
990
+ x
991
+ 3
992
+ get
993
+ i
994
+ 55
995
+ 5
996
+ 48
997
+ 0
998
+ 5
999
+ 48
1000
+ 1
1001
+ 49
1002
+ 2
1003
+ 0
1004
+ 13
1005
+ 18
1006
+ 2
1007
+ 49
1008
+ 3
1009
+ 1
1010
+ 15
1011
+ 15
1012
+ 5
1013
+ 48
1014
+ 0
1015
+ 49
1016
+ 4
1017
+ 0
1018
+ 15
1019
+ 45
1020
+ 5
1021
+ 6
1022
+ 13
1023
+ 71
1024
+ 7
1025
+ 47
1026
+ 9
1027
+ 48
1028
+ 47
1029
+ 49
1030
+ 8
1031
+ 0
1032
+ 13
1033
+ 5
1034
+ 48
1035
+ 0
1036
+ 47
1037
+ 49
1038
+ 9
1039
+ 1
1040
+ 15
1041
+ 8
1042
+ 54
1043
+ 5
1044
+ 48
1045
+ 0
1046
+ 49
1047
+ 7
1048
+ 1
1049
+ 11
1050
+ I
1051
+ 3
1052
+ I
1053
+ 0
1054
+ I
1055
+ 0
1056
+ I
1057
+ 0
1058
+ n
1059
+ p
1060
+ 10
1061
+ x
1062
+ 4
1063
+ curl
1064
+ x
1065
+ 3
1066
+ uri
1067
+ x
1068
+ 4
1069
+ to_s
1070
+ x
1071
+ 4
1072
+ url=
1073
+ x
1074
+ 7
1075
+ perform
1076
+ x
1077
+ 8
1078
+ Response
1079
+ n
1080
+ x
1081
+ 3
1082
+ new
1083
+ x
1084
+ 8
1085
+ allocate
1086
+ x
1087
+ 10
1088
+ initialize
1089
+ p
1090
+ 9
1091
+ I
1092
+ 0
1093
+ I
1094
+ 4d
1095
+ I
1096
+ 0
1097
+ I
1098
+ 4e
1099
+ I
1100
+ 11
1101
+ I
1102
+ 4f
1103
+ I
1104
+ 18
1105
+ I
1106
+ 51
1107
+ I
1108
+ 37
1109
+ x
1110
+ 44
1111
+ /Users/snl/code/sucker/lib/sucker/request.rb
1112
+ p
1113
+ 0
1114
+ x
1115
+ 4
1116
+ get!
1117
+ M
1118
+ 1
1119
+ n
1120
+ n
1121
+ x
1122
+ 4
1123
+ get!
1124
+ i
1125
+ 33
1126
+ 5
1127
+ 48
1128
+ 0
1129
+ 19
1130
+ 0
1131
+ 15
1132
+ 20
1133
+ 0
1134
+ 49
1135
+ 1
1136
+ 0
1137
+ 9
1138
+ 16
1139
+ 1
1140
+ 8
1141
+ 29
1142
+ 5
1143
+ 45
1144
+ 2
1145
+ 3
1146
+ 20
1147
+ 0
1148
+ 49
1149
+ 4
1150
+ 0
1151
+ 47
1152
+ 49
1153
+ 5
1154
+ 2
1155
+ 15
1156
+ 20
1157
+ 0
1158
+ 11
1159
+ I
1160
+ 4
1161
+ I
1162
+ 1
1163
+ I
1164
+ 0
1165
+ I
1166
+ 0
1167
+ n
1168
+ p
1169
+ 6
1170
+ x
1171
+ 3
1172
+ get
1173
+ x
1174
+ 6
1175
+ valid?
1176
+ x
1177
+ 13
1178
+ ResponseError
1179
+ n
1180
+ x
1181
+ 7
1182
+ inspect
1183
+ x
1184
+ 5
1185
+ raise
1186
+ p
1187
+ 11
1188
+ I
1189
+ 0
1190
+ I
1191
+ 55
1192
+ I
1193
+ 0
1194
+ I
1195
+ 56
1196
+ I
1197
+ 6
1198
+ I
1199
+ 58
1200
+ I
1201
+ 10
1202
+ I
1203
+ 59
1204
+ I
1205
+ 1e
1206
+ I
1207
+ 5c
1208
+ I
1209
+ 21
1210
+ x
1211
+ 44
1212
+ /Users/snl/code/sucker/lib/sucker/request.rb
1213
+ p
1214
+ 1
1215
+ x
1216
+ 8
1217
+ response
1218
+ x
1219
+ 4
1220
+ key=
1221
+ M
1222
+ 1
1223
+ n
1224
+ n
1225
+ x
1226
+ 4
1227
+ key=
1228
+ i
1229
+ 16
1230
+ 5
1231
+ 48
1232
+ 0
1233
+ 7
1234
+ 1
1235
+ 64
1236
+ 20
1237
+ 0
1238
+ 13
1239
+ 18
1240
+ 3
1241
+ 49
1242
+ 2
1243
+ 2
1244
+ 15
1245
+ 11
1246
+ I
1247
+ 5
1248
+ I
1249
+ 1
1250
+ I
1251
+ 1
1252
+ I
1253
+ 1
1254
+ n
1255
+ p
1256
+ 3
1257
+ x
1258
+ 10
1259
+ parameters
1260
+ s
1261
+ 14
1262
+ AWSAccessKeyId
1263
+ x
1264
+ 3
1265
+ []=
1266
+ p
1267
+ 5
1268
+ I
1269
+ 0
1270
+ I
1271
+ 64
1272
+ I
1273
+ 0
1274
+ I
1275
+ 65
1276
+ I
1277
+ 10
1278
+ x
1279
+ 44
1280
+ /Users/snl/code/sucker/lib/sucker/request.rb
1281
+ p
1282
+ 1
1283
+ x
1284
+ 5
1285
+ token
1286
+ x
1287
+ 8
1288
+ version=
1289
+ M
1290
+ 1
1291
+ n
1292
+ n
1293
+ x
1294
+ 8
1295
+ version=
1296
+ i
1297
+ 17
1298
+ 5
1299
+ 49
1300
+ 0
1301
+ 0
1302
+ 7
1303
+ 1
1304
+ 64
1305
+ 20
1306
+ 0
1307
+ 13
1308
+ 18
1309
+ 3
1310
+ 49
1311
+ 2
1312
+ 2
1313
+ 15
1314
+ 11
1315
+ I
1316
+ 5
1317
+ I
1318
+ 1
1319
+ I
1320
+ 1
1321
+ I
1322
+ 1
1323
+ n
1324
+ p
1325
+ 3
1326
+ x
1327
+ 10
1328
+ parameters
1329
+ s
1330
+ 7
1331
+ Version
1332
+ x
1333
+ 3
1334
+ []=
1335
+ p
1336
+ 5
1337
+ I
1338
+ 0
1339
+ I
1340
+ 6d
1341
+ I
1342
+ 0
1343
+ I
1344
+ 6e
1345
+ I
1346
+ 11
1347
+ x
1348
+ 44
1349
+ /Users/snl/code/sucker/lib/sucker/request.rb
1350
+ p
1351
+ 1
1352
+ x
1353
+ 7
1354
+ version
1355
+ x
1356
+ 7
1357
+ private
1358
+ x
1359
+ 11
1360
+ build_query
1361
+ M
1362
+ 1
1363
+ n
1364
+ n
1365
+ x
1366
+ 11
1367
+ build_query
1368
+ i
1369
+ 24
1370
+ 5
1371
+ 48
1372
+ 0
1373
+ 5
1374
+ 48
1375
+ 1
1376
+ 49
1377
+ 2
1378
+ 1
1379
+ 49
1380
+ 3
1381
+ 0
1382
+ 56
1383
+ 4
1384
+ 50
1385
+ 5
1386
+ 0
1387
+ 7
1388
+ 6
1389
+ 64
1390
+ 49
1391
+ 7
1392
+ 1
1393
+ 11
1394
+ I
1395
+ 2
1396
+ I
1397
+ 0
1398
+ I
1399
+ 0
1400
+ I
1401
+ 0
1402
+ n
1403
+ p
1404
+ 8
1405
+ x
1406
+ 10
1407
+ parameters
1408
+ x
1409
+ 9
1410
+ timestamp
1411
+ x
1412
+ 5
1413
+ merge
1414
+ x
1415
+ 4
1416
+ sort
1417
+ M
1418
+ 1
1419
+ p
1420
+ 2
1421
+ x
1422
+ 9
1423
+ for_block
1424
+ t
1425
+ n
1426
+ x
1427
+ 11
1428
+ build_query
1429
+ i
1430
+ 53
1431
+ 58
1432
+ 37
1433
+ 19
1434
+ 0
1435
+ 15
1436
+ 37
1437
+ 19
1438
+ 1
1439
+ 15
1440
+ 15
1441
+ 20
1442
+ 0
1443
+ 47
1444
+ 49
1445
+ 0
1446
+ 0
1447
+ 7
1448
+ 1
1449
+ 63
1450
+ 2
1451
+ 5
1452
+ 20
1453
+ 1
1454
+ 45
1455
+ 2
1456
+ 3
1457
+ 49
1458
+ 4
1459
+ 1
1460
+ 9
1461
+ 41
1462
+ 20
1463
+ 1
1464
+ 7
1465
+ 5
1466
+ 64
1467
+ 49
1468
+ 6
1469
+ 1
1470
+ 8
1471
+ 46
1472
+ 20
1473
+ 1
1474
+ 49
1475
+ 0
1476
+ 0
1477
+ 47
1478
+ 49
1479
+ 7
1480
+ 1
1481
+ 81
1482
+ 8
1483
+ 11
1484
+ I
1485
+ 7
1486
+ I
1487
+ 2
1488
+ I
1489
+ 2
1490
+ I
1491
+ 2
1492
+ n
1493
+ p
1494
+ 9
1495
+ x
1496
+ 4
1497
+ to_s
1498
+ s
1499
+ 1
1500
+ =
1501
+ x
1502
+ 5
1503
+ Array
1504
+ n
1505
+ x
1506
+ 5
1507
+ is_a?
1508
+ s
1509
+ 1
1510
+ ,
1511
+ x
1512
+ 4
1513
+ join
1514
+ x
1515
+ 6
1516
+ escape
1517
+ x
1518
+ 1
1519
+ +
1520
+ p
1521
+ 7
1522
+ I
1523
+ 0
1524
+ I
1525
+ 75
1526
+ I
1527
+ 2
1528
+ I
1529
+ 78
1530
+ I
1531
+ a
1532
+ I
1533
+ 79
1534
+ I
1535
+ 35
1536
+ x
1537
+ 44
1538
+ /Users/snl/code/sucker/lib/sucker/request.rb
1539
+ p
1540
+ 2
1541
+ x
1542
+ 1
1543
+ k
1544
+ x
1545
+ 1
1546
+ v
1547
+ x
1548
+ 7
1549
+ collect
1550
+ s
1551
+ 1
1552
+ &
1553
+ x
1554
+ 4
1555
+ join
1556
+ p
1557
+ 13
1558
+ I
1559
+ 0
1560
+ I
1561
+ 74
1562
+ I
1563
+ 0
1564
+ I
1565
+ 75
1566
+ I
1567
+ 3
1568
+ I
1569
+ 76
1570
+ I
1571
+ 6
1572
+ I
1573
+ 75
1574
+ I
1575
+ 11
1576
+ I
1577
+ 7b
1578
+ I
1579
+ 14
1580
+ I
1581
+ 75
1582
+ I
1583
+ 18
1584
+ x
1585
+ 44
1586
+ /Users/snl/code/sucker/lib/sucker/request.rb
1587
+ p
1588
+ 0
1589
+ x
1590
+ 18
1591
+ build_signed_query
1592
+ M
1593
+ 1
1594
+ n
1595
+ n
1596
+ x
1597
+ 18
1598
+ build_signed_query
1599
+ i
1600
+ 111
1601
+ 5
1602
+ 48
1603
+ 0
1604
+ 19
1605
+ 0
1606
+ 15
1607
+ 45
1608
+ 1
1609
+ 2
1610
+ 43
1611
+ 3
1612
+ 43
1613
+ 3
1614
+ 13
1615
+ 71
1616
+ 4
1617
+ 47
1618
+ 9
1619
+ 34
1620
+ 47
1621
+ 49
1622
+ 5
1623
+ 0
1624
+ 13
1625
+ 7
1626
+ 6
1627
+ 64
1628
+ 47
1629
+ 49
1630
+ 7
1631
+ 1
1632
+ 15
1633
+ 8
1634
+ 40
1635
+ 7
1636
+ 6
1637
+ 64
1638
+ 49
1639
+ 4
1640
+ 1
1641
+ 19
1642
+ 1
1643
+ 15
1644
+ 7
1645
+ 8
1646
+ 64
1647
+ 5
1648
+ 48
1649
+ 9
1650
+ 45
1651
+ 10
1652
+ 11
1653
+ 20
1654
+ 0
1655
+ 35
1656
+ 4
1657
+ 7
1658
+ 12
1659
+ 64
1660
+ 49
1661
+ 13
1662
+ 1
1663
+ 19
1664
+ 2
1665
+ 15
1666
+ 45
1667
+ 1
1668
+ 14
1669
+ 43
1670
+ 15
1671
+ 20
1672
+ 1
1673
+ 5
1674
+ 48
1675
+ 16
1676
+ 20
1677
+ 2
1678
+ 49
1679
+ 17
1680
+ 3
1681
+ 19
1682
+ 3
1683
+ 15
1684
+ 20
1685
+ 0
1686
+ 7
1687
+ 18
1688
+ 64
1689
+ 81
1690
+ 19
1691
+ 5
1692
+ 20
1693
+ 3
1694
+ 35
1695
+ 1
1696
+ 7
1697
+ 20
1698
+ 64
1699
+ 49
1700
+ 21
1701
+ 1
1702
+ 49
1703
+ 22
1704
+ 0
1705
+ 47
1706
+ 49
1707
+ 23
1708
+ 1
1709
+ 81
1710
+ 19
1711
+ 11
1712
+ I
1713
+ 8
1714
+ I
1715
+ 4
1716
+ I
1717
+ 0
1718
+ I
1719
+ 0
1720
+ n
1721
+ p
1722
+ 24
1723
+ x
1724
+ 11
1725
+ build_query
1726
+ x
1727
+ 7
1728
+ OpenSSL
1729
+ n
1730
+ x
1731
+ 6
1732
+ Digest
1733
+ x
1734
+ 3
1735
+ new
1736
+ x
1737
+ 8
1738
+ allocate
1739
+ s
1740
+ 6
1741
+ sha256
1742
+ x
1743
+ 10
1744
+ initialize
1745
+ s
1746
+ 3
1747
+ GET
1748
+ x
1749
+ 4
1750
+ host
1751
+ x
1752
+ 4
1753
+ PATH
1754
+ n
1755
+ s
1756
+ 1
1757
+
1758
+
1759
+ x
1760
+ 4
1761
+ join
1762
+ n
1763
+ x
1764
+ 4
1765
+ HMAC
1766
+ x
1767
+ 6
1768
+ secret
1769
+ x
1770
+ 6
1771
+ digest
1772
+ s
1773
+ 11
1774
+ &Signature=
1775
+ x
1776
+ 1
1777
+ +
1778
+ s
1779
+ 1
1780
+ m
1781
+ x
1782
+ 4
1783
+ pack
1784
+ x
1785
+ 5
1786
+ chomp
1787
+ x
1788
+ 6
1789
+ escape
1790
+ p
1791
+ 13
1792
+ I
1793
+ 0
1794
+ I
1795
+ 7f
1796
+ I
1797
+ 0
1798
+ I
1799
+ 80
1800
+ I
1801
+ 6
1802
+ I
1803
+ 82
1804
+ I
1805
+ 2b
1806
+ I
1807
+ 83
1808
+ I
1809
+ 41
1810
+ I
1811
+ 84
1812
+ I
1813
+ 53
1814
+ I
1815
+ 86
1816
+ I
1817
+ 6f
1818
+ x
1819
+ 44
1820
+ /Users/snl/code/sucker/lib/sucker/request.rb
1821
+ p
1822
+ 4
1823
+ x
1824
+ 5
1825
+ query
1826
+ x
1827
+ 6
1828
+ digest
1829
+ x
1830
+ 6
1831
+ string
1832
+ x
1833
+ 4
1834
+ hmac
1835
+ x
1836
+ 6
1837
+ escape
1838
+ M
1839
+ 1
1840
+ n
1841
+ n
1842
+ x
1843
+ 6
1844
+ escape
1845
+ i
1846
+ 26
1847
+ 20
1848
+ 0
1849
+ 7
1850
+ 0
1851
+ 13
1852
+ 70
1853
+ 9
1854
+ 20
1855
+ 15
1856
+ 44
1857
+ 43
1858
+ 1
1859
+ 7
1860
+ 2
1861
+ 78
1862
+ 49
1863
+ 3
1864
+ 2
1865
+ 6
1866
+ 0
1867
+ 56
1868
+ 4
1869
+ 50
1870
+ 5
1871
+ 1
1872
+ 11
1873
+ I
1874
+ 5
1875
+ I
1876
+ 1
1877
+ I
1878
+ 1
1879
+ I
1880
+ 1
1881
+ n
1882
+ p
1883
+ 6
1884
+ n
1885
+ x
1886
+ 6
1887
+ Regexp
1888
+ s
1889
+ 19
1890
+ ([^a-zA-Z0-9_.~-]+)
1891
+ x
1892
+ 3
1893
+ new
1894
+ M
1895
+ 1
1896
+ p
1897
+ 2
1898
+ x
1899
+ 9
1900
+ for_block
1901
+ t
1902
+ n
1903
+ x
1904
+ 6
1905
+ escape
1906
+ i
1907
+ 39
1908
+ 7
1909
+ 0
1910
+ 64
1911
+ 4
1912
+ 5
1913
+ 78
1914
+ 98
1915
+ 1
1916
+ 2
1917
+ 7
1918
+ 2
1919
+ 64
1920
+ 4
1921
+ 5
1922
+ 78
1923
+ 98
1924
+ 1
1925
+ 2
1926
+ 49
1927
+ 3
1928
+ 0
1929
+ 49
1930
+ 4
1931
+ 1
1932
+ 49
1933
+ 5
1934
+ 1
1935
+ 7
1936
+ 0
1937
+ 64
1938
+ 49
1939
+ 6
1940
+ 1
1941
+ 49
1942
+ 7
1943
+ 0
1944
+ 81
1945
+ 8
1946
+ 11
1947
+ I
1948
+ 6
1949
+ I
1950
+ 0
1951
+ I
1952
+ 0
1953
+ I
1954
+ 0
1955
+ I
1956
+ -2
1957
+ p
1958
+ 9
1959
+ s
1960
+ 1
1961
+ %
1962
+ x
1963
+ 24
1964
+ regexp_last_match_result
1965
+ s
1966
+ 2
1967
+ H2
1968
+ x
1969
+ 8
1970
+ bytesize
1971
+ x
1972
+ 1
1973
+ *
1974
+ x
1975
+ 6
1976
+ unpack
1977
+ x
1978
+ 4
1979
+ join
1980
+ x
1981
+ 6
1982
+ upcase
1983
+ x
1984
+ 1
1985
+ +
1986
+ p
1987
+ 5
1988
+ I
1989
+ 0
1990
+ I
1991
+ 8b
1992
+ I
1993
+ 0
1994
+ I
1995
+ 8c
1996
+ I
1997
+ 27
1998
+ x
1999
+ 44
2000
+ /Users/snl/code/sucker/lib/sucker/request.rb
2001
+ p
2002
+ 0
2003
+ x
2004
+ 4
2005
+ gsub
2006
+ p
2007
+ 5
2008
+ I
2009
+ 0
2010
+ I
2011
+ 8a
2012
+ I
2013
+ 0
2014
+ I
2015
+ 8b
2016
+ I
2017
+ 1a
2018
+ x
2019
+ 44
2020
+ /Users/snl/code/sucker/lib/sucker/request.rb
2021
+ p
2022
+ 1
2023
+ x
2024
+ 6
2025
+ string
2026
+ x
2027
+ 4
2028
+ host
2029
+ M
2030
+ 1
2031
+ n
2032
+ n
2033
+ x
2034
+ 4
2035
+ host
2036
+ i
2037
+ 13
2038
+ 45
2039
+ 0
2040
+ 1
2041
+ 5
2042
+ 48
2043
+ 2
2044
+ 49
2045
+ 3
2046
+ 0
2047
+ 49
2048
+ 4
2049
+ 1
2050
+ 11
2051
+ I
2052
+ 2
2053
+ I
2054
+ 0
2055
+ I
2056
+ 0
2057
+ I
2058
+ 0
2059
+ n
2060
+ p
2061
+ 5
2062
+ x
2063
+ 5
2064
+ HOSTS
2065
+ n
2066
+ x
2067
+ 6
2068
+ locale
2069
+ x
2070
+ 6
2071
+ to_sym
2072
+ x
2073
+ 2
2074
+ []
2075
+ p
2076
+ 5
2077
+ I
2078
+ 0
2079
+ I
2080
+ 90
2081
+ I
2082
+ 0
2083
+ I
2084
+ 91
2085
+ I
2086
+ d
2087
+ x
2088
+ 44
2089
+ /Users/snl/code/sucker/lib/sucker/request.rb
2090
+ p
2091
+ 0
2092
+ x
2093
+ 3
2094
+ uri
2095
+ M
2096
+ 1
2097
+ n
2098
+ n
2099
+ x
2100
+ 3
2101
+ uri
2102
+ i
2103
+ 47
2104
+ 45
2105
+ 0
2106
+ 1
2107
+ 43
2108
+ 2
2109
+ 44
2110
+ 43
2111
+ 3
2112
+ 4
2113
+ 3
2114
+ 49
2115
+ 4
2116
+ 1
2117
+ 13
2118
+ 7
2119
+ 5
2120
+ 5
2121
+ 48
2122
+ 5
2123
+ 49
2124
+ 6
2125
+ 2
2126
+ 15
2127
+ 13
2128
+ 7
2129
+ 7
2130
+ 45
2131
+ 8
2132
+ 9
2133
+ 49
2134
+ 6
2135
+ 2
2136
+ 15
2137
+ 13
2138
+ 7
2139
+ 10
2140
+ 5
2141
+ 48
2142
+ 11
2143
+ 49
2144
+ 6
2145
+ 2
2146
+ 15
2147
+ 49
2148
+ 12
2149
+ 1
2150
+ 11
2151
+ I
2152
+ 5
2153
+ I
2154
+ 0
2155
+ I
2156
+ 0
2157
+ I
2158
+ 0
2159
+ n
2160
+ p
2161
+ 13
2162
+ x
2163
+ 3
2164
+ URI
2165
+ n
2166
+ x
2167
+ 4
2168
+ HTTP
2169
+ x
2170
+ 4
2171
+ Hash
2172
+ x
2173
+ 16
2174
+ new_from_literal
2175
+ x
2176
+ 4
2177
+ host
2178
+ x
2179
+ 3
2180
+ []=
2181
+ x
2182
+ 4
2183
+ path
2184
+ x
2185
+ 4
2186
+ PATH
2187
+ n
2188
+ x
2189
+ 5
2190
+ query
2191
+ x
2192
+ 18
2193
+ build_signed_query
2194
+ x
2195
+ 5
2196
+ build
2197
+ p
2198
+ 15
2199
+ I
2200
+ 0
2201
+ I
2202
+ 94
2203
+ I
2204
+ 0
2205
+ I
2206
+ 95
2207
+ I
2208
+ 5
2209
+ I
2210
+ 98
2211
+ I
2212
+ e
2213
+ I
2214
+ 96
2215
+ I
2216
+ 18
2217
+ I
2218
+ 97
2219
+ I
2220
+ 22
2221
+ I
2222
+ 98
2223
+ I
2224
+ 2b
2225
+ I
2226
+ 95
2227
+ I
2228
+ 2f
2229
+ x
2230
+ 44
2231
+ /Users/snl/code/sucker/lib/sucker/request.rb
2232
+ p
2233
+ 0
2234
+ x
2235
+ 9
2236
+ timestamp
2237
+ M
2238
+ 1
2239
+ n
2240
+ n
2241
+ x
2242
+ 9
2243
+ timestamp
2244
+ i
2245
+ 31
2246
+ 44
2247
+ 43
2248
+ 0
2249
+ 79
2250
+ 49
2251
+ 1
2252
+ 1
2253
+ 13
2254
+ 7
2255
+ 2
2256
+ 64
2257
+ 45
2258
+ 3
2259
+ 4
2260
+ 49
2261
+ 5
2262
+ 0
2263
+ 49
2264
+ 6
2265
+ 0
2266
+ 7
2267
+ 7
2268
+ 64
2269
+ 49
2270
+ 8
2271
+ 1
2272
+ 49
2273
+ 9
2274
+ 2
2275
+ 15
2276
+ 11
2277
+ I
2278
+ 5
2279
+ I
2280
+ 0
2281
+ I
2282
+ 0
2283
+ I
2284
+ 0
2285
+ n
2286
+ p
2287
+ 10
2288
+ x
2289
+ 4
2290
+ Hash
2291
+ x
2292
+ 16
2293
+ new_from_literal
2294
+ s
2295
+ 9
2296
+ Timestamp
2297
+ x
2298
+ 4
2299
+ Time
2300
+ n
2301
+ x
2302
+ 3
2303
+ now
2304
+ x
2305
+ 3
2306
+ utc
2307
+ s
2308
+ 18
2309
+ %Y-%m-%dT%H:%M:%SZ
2310
+ x
2311
+ 8
2312
+ strftime
2313
+ x
2314
+ 3
2315
+ []=
2316
+ p
2317
+ 5
2318
+ I
2319
+ 0
2320
+ I
2321
+ 9b
2322
+ I
2323
+ 0
2324
+ I
2325
+ 9c
2326
+ I
2327
+ 1f
2328
+ x
2329
+ 44
2330
+ /Users/snl/code/sucker/lib/sucker/request.rb
2331
+ p
2332
+ 0
2333
+ p
2334
+ 55
2335
+ I
2336
+ 2
2337
+ I
2338
+ 5
2339
+ I
2340
+ 5
2341
+ I
2342
+ b
2343
+ I
2344
+ e
2345
+ I
2346
+ 6
2347
+ I
2348
+ 18
2349
+ I
2350
+ 7
2351
+ I
2352
+ 22
2353
+ I
2354
+ 8
2355
+ I
2356
+ 2c
2357
+ I
2358
+ 9
2359
+ I
2360
+ 36
2361
+ I
2362
+ a
2363
+ I
2364
+ 40
2365
+ I
2366
+ b
2367
+ I
2368
+ 4d
2369
+ I
2370
+ c
2371
+ I
2372
+ 57
2373
+ I
2374
+ f
2375
+ I
2376
+ 5f
2377
+ I
2378
+ 12
2379
+ I
2380
+ 67
2381
+ I
2382
+ 15
2383
+ I
2384
+ 6f
2385
+ I
2386
+ 1e
2387
+ I
2388
+ 7d
2389
+ I
2390
+ 30
2391
+ I
2392
+ 8b
2393
+ I
2394
+ 39
2395
+ I
2396
+ 99
2397
+ I
2398
+ 42
2399
+ I
2400
+ a7
2401
+ I
2402
+ 4d
2403
+ I
2404
+ b5
2405
+ I
2406
+ 55
2407
+ I
2408
+ c3
2409
+ I
2410
+ 64
2411
+ I
2412
+ d1
2413
+ I
2414
+ 6d
2415
+ I
2416
+ df
2417
+ I
2418
+ 71
2419
+ I
2420
+ e3
2421
+ I
2422
+ 74
2423
+ I
2424
+ f1
2425
+ I
2426
+ 7f
2427
+ I
2428
+ ff
2429
+ I
2430
+ 8a
2431
+ I
2432
+ 10d
2433
+ I
2434
+ 90
2435
+ I
2436
+ 11b
2437
+ I
2438
+ 94
2439
+ I
2440
+ 129
2441
+ I
2442
+ 9b
2443
+ I
2444
+ 137
2445
+ x
2446
+ 44
2447
+ /Users/snl/code/sucker/lib/sucker/request.rb
2448
+ p
2449
+ 0
2450
+ x
2451
+ 13
2452
+ attach_method
2453
+ p
2454
+ 3
2455
+ I
2456
+ 2
2457
+ I
2458
+ 4
2459
+ I
2460
+ 1d
2461
+ x
2462
+ 44
2463
+ /Users/snl/code/sucker/lib/sucker/request.rb
2464
+ p
2465
+ 0
2466
+ x
2467
+ 13
2468
+ attach_method
2469
+ p
2470
+ 3
2471
+ I
2472
+ 0
2473
+ I
2474
+ 1
2475
+ I
2476
+ 1c
2477
+ x
2478
+ 44
2479
+ /Users/snl/code/sucker/lib/sucker/request.rb
2480
+ p
2481
+ 0