rack-client 0.3.0 → 0.3.1.pre.a

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.
Files changed (153) hide show
  1. data/Rakefile +12 -14
  2. data/lib/rack/client/adapter/base.rb +23 -14
  3. data/lib/rack/client/adapter/base.rbc +1802 -0
  4. data/lib/rack/client/adapter/simple.rb +53 -21
  5. data/lib/rack/client/adapter/simple.rbc +2063 -0
  6. data/lib/rack/client/adapter.rbc +225 -0
  7. data/lib/rack/client/{dual_band.rb → core/dual_band.rb} +0 -0
  8. data/lib/rack/client/core/dual_band.rbc +380 -0
  9. data/lib/rack/client/{headers.rb → core/headers.rb} +1 -1
  10. data/lib/rack/client/core/headers.rbc +1811 -0
  11. data/lib/rack/client/core/response.rb +50 -0
  12. data/lib/rack/client/core/response.rbc +1105 -0
  13. data/lib/rack/client/core.rb +3 -0
  14. data/lib/rack/client/core.rbc +85 -0
  15. data/lib/rack/client/handler/em-http.rb +3 -7
  16. data/lib/rack/client/handler/em-http.rbc +1648 -0
  17. data/lib/rack/client/handler/excon.rb +6 -14
  18. data/lib/rack/client/handler/excon.rbc +1270 -0
  19. data/lib/rack/client/handler/net_http.rb +7 -4
  20. data/lib/rack/client/handler/net_http.rbc +2400 -0
  21. data/lib/rack/client/handler/typhoeus.rb +12 -5
  22. data/lib/rack/client/handler/typhoeus.rbc +1885 -0
  23. data/lib/rack/client/handler.rbc +340 -0
  24. data/lib/rack/client/{auth → middleware/auth}/abstract/challenge.rb +0 -0
  25. data/lib/rack/client/middleware/auth/abstract/challenge.rbc +1453 -0
  26. data/lib/rack/client/{auth → middleware/auth}/basic.rb +0 -0
  27. data/lib/rack/client/middleware/auth/basic.rbc +1566 -0
  28. data/lib/rack/client/{auth → middleware/auth}/digest/challenge.rb +0 -0
  29. data/lib/rack/client/middleware/auth/digest/challenge.rbc +1124 -0
  30. data/lib/rack/client/{auth → middleware/auth}/digest/md5.rb +0 -0
  31. data/lib/rack/client/middleware/auth/digest/md5.rbc +2241 -0
  32. data/lib/rack/client/{auth → middleware/auth}/digest/params.rb +0 -0
  33. data/lib/rack/client/middleware/auth/digest/params.rbc +365 -0
  34. data/lib/rack/client/middleware/auth.rb +5 -0
  35. data/lib/rack/client/middleware/auth.rbc +117 -0
  36. data/lib/rack/client/{cache → middleware/cache}/cachecontrol.rb +0 -0
  37. data/lib/rack/client/middleware/cache/cachecontrol.rbc +1610 -0
  38. data/lib/rack/client/{cache → middleware/cache}/context.rb +12 -3
  39. data/lib/rack/client/middleware/cache/context.rbc +2074 -0
  40. data/lib/rack/client/{cache → middleware/cache}/entitystore.rb +0 -0
  41. data/lib/rack/client/middleware/cache/entitystore.rbc +1619 -0
  42. data/lib/rack/client/{cache → middleware/cache}/key.rb +0 -0
  43. data/lib/rack/client/middleware/cache/key.rbc +1217 -0
  44. data/lib/rack/client/{cache → middleware/cache}/metastore.rb +0 -0
  45. data/lib/rack/client/middleware/cache/metastore.rbc +2754 -0
  46. data/lib/rack/client/{cache → middleware/cache}/options.rb +0 -0
  47. data/lib/rack/client/middleware/cache/options.rbc +1844 -0
  48. data/lib/rack/client/{cache → middleware/cache}/request.rb +0 -0
  49. data/lib/rack/client/middleware/cache/request.rbc +1020 -0
  50. data/lib/rack/client/{cache → middleware/cache}/response.rb +19 -0
  51. data/lib/rack/client/middleware/cache/response.rbc +1540 -0
  52. data/lib/rack/client/{cache → middleware/cache}/storage.rb +0 -0
  53. data/lib/rack/client/middleware/cache/storage.rbc +1106 -0
  54. data/lib/rack/client/middleware/cache.rb +19 -0
  55. data/lib/rack/client/middleware/cache.rbc +528 -0
  56. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/context.rb +0 -0
  57. data/lib/rack/client/middleware/cookie_jar/context.rbc +1576 -0
  58. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/cookie.rb +0 -0
  59. data/lib/rack/client/middleware/cookie_jar/cookie.rbc +2393 -0
  60. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/cookiestore.rb +0 -0
  61. data/lib/rack/client/middleware/cookie_jar/cookiestore.rbc +1209 -0
  62. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/options.rb +0 -0
  63. data/lib/rack/client/middleware/cookie_jar/options.rbc +1305 -0
  64. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/request.rb +0 -0
  65. data/lib/rack/client/middleware/cookie_jar/request.rbc +568 -0
  66. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/response.rb +0 -0
  67. data/lib/rack/client/middleware/cookie_jar/response.rbc +616 -0
  68. data/lib/rack/client/{cookie_jar → middleware/cookie_jar}/storage.rb +0 -0
  69. data/lib/rack/client/middleware/cookie_jar/storage.rbc +894 -0
  70. data/lib/rack/client/middleware/cookie_jar.rb +17 -0
  71. data/lib/rack/client/middleware/cookie_jar.rbc +471 -0
  72. data/lib/rack/client/{follow_redirects.rb → middleware/follow_redirects.rb} +0 -0
  73. data/lib/rack/client/middleware/follow_redirects.rbc +1344 -0
  74. data/lib/rack/client/middleware.rb +4 -0
  75. data/lib/rack/client/middleware.rbc +101 -0
  76. data/lib/rack/client/parser/base.rbc +898 -0
  77. data/lib/rack/client/parser/body_collection.rbc +1220 -0
  78. data/lib/rack/client/parser/context.rbc +540 -0
  79. data/lib/rack/client/parser/request.rbc +631 -0
  80. data/lib/rack/client/parser/response.rbc +663 -0
  81. data/lib/rack/client/parser.rbc +484 -0
  82. data/lib/rack/client/version.rb +1 -1
  83. data/lib/rack/client/version.rbc +203 -0
  84. data/lib/rack/client.rb +3 -13
  85. data/lib/rack/client.rbc +701 -0
  86. data/spec/core/headers_spec.rb +47 -0
  87. data/spec/core/headers_spec.rbc +1674 -0
  88. data/spec/core/response_spec.rb +78 -0
  89. data/spec/core/response_spec.rbc +2244 -0
  90. data/spec/handler/em_http_spec.rb +4 -19
  91. data/spec/handler/em_http_spec.rbc +224 -0
  92. data/spec/handler/excon_spec.rb +4 -4
  93. data/spec/handler/excon_spec.rbc +224 -0
  94. data/spec/handler/net_http_spec.rb +7 -4
  95. data/spec/handler/net_http_spec.rbc +307 -0
  96. data/spec/handler/typhoeus_spec.rb +6 -17
  97. data/spec/handler/typhoeus_spec.rbc +307 -0
  98. data/spec/helpers/async_helper.rb +31 -0
  99. data/spec/helpers/async_helper.rbc +843 -0
  100. data/spec/helpers/em_http_helper.rb +24 -0
  101. data/spec/helpers/em_http_helper.rbc +663 -0
  102. data/spec/helpers/excon_helper.rb +13 -0
  103. data/spec/helpers/excon_helper.rbc +461 -0
  104. data/spec/helpers/handler_helper.rb +68 -0
  105. data/spec/helpers/handler_helper.rbc +1769 -0
  106. data/spec/helpers/net_http_helper.rb +26 -0
  107. data/spec/helpers/net_http_helper.rbc +806 -0
  108. data/spec/helpers/sync_helper.rb +9 -0
  109. data/spec/helpers/sync_helper.rbc +311 -0
  110. data/spec/helpers/typhoeus_helper.rb +32 -0
  111. data/spec/helpers/typhoeus_helper.rbc +936 -0
  112. data/spec/middleware/cache_spec.rb +25 -0
  113. data/spec/middleware/cache_spec.rbc +712 -0
  114. data/spec/middleware/cookie_jar_spec.rb +19 -0
  115. data/spec/middleware/cookie_jar_spec.rbc +614 -0
  116. data/spec/middleware/etag_spec.rb +10 -0
  117. data/spec/middleware/etag_spec.rbc +438 -0
  118. data/spec/middleware/follow_redirects_spec.rb +12 -0
  119. data/spec/middleware/follow_redirects_spec.rbc +402 -0
  120. data/spec/middleware/lint_spec.rb +10 -0
  121. data/spec/middleware/lint_spec.rbc +392 -0
  122. data/spec/shared/handler_api.rb +33 -0
  123. data/spec/shared/handler_api.rbc +1340 -0
  124. data/spec/shared/streamed_response_api.rb +14 -0
  125. data/spec/shared/streamed_response_api.rbc +508 -0
  126. data/spec/spec_apps/cache.ru +14 -0
  127. data/spec/spec_apps/cookie.ru +12 -0
  128. data/spec/spec_apps/delete.ru +10 -0
  129. data/spec/spec_apps/get.ru +13 -0
  130. data/spec/spec_apps/head.ru +10 -0
  131. data/spec/spec_apps/hello_world.ru +1 -0
  132. data/spec/spec_apps/redirect.ru +13 -0
  133. data/spec/spec_apps/stream.ru +9 -0
  134. data/spec/spec_config.ru +10 -0
  135. data/spec/spec_helper.rb +14 -12
  136. metadata +190 -64
  137. data/lib/rack/client/cache.rb +0 -19
  138. data/lib/rack/client/cookie_jar.rb +0 -17
  139. data/lib/rack/client/response.rb +0 -9
  140. data/spec/apps/example.org.ru +0 -128
  141. data/spec/auth/basic_spec.rb +0 -69
  142. data/spec/auth/digest/md5_spec.rb +0 -69
  143. data/spec/cache_spec.rb +0 -40
  144. data/spec/cookie_jar_spec.rb +0 -37
  145. data/spec/endpoint_spec.rb +0 -30
  146. data/spec/follow_redirect_spec.rb +0 -27
  147. data/spec/handler/async_api_spec.rb +0 -69
  148. data/spec/handler/sync_api_spec.rb +0 -55
  149. data/spec/middleware_helper.rb +0 -37
  150. data/spec/middleware_spec.rb +0 -53
  151. data/spec/parser/json_spec.rb +0 -22
  152. data/spec/parser/yaml_spec.rb +0 -22
  153. data/spec/server_helper.rb +0 -72
@@ -0,0 +1,1885 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 8
63
+ typhoeus
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 4
69
+ Rack
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 4
82
+ Rack
83
+ i
84
+ 28
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 65
91
+ 49
92
+ 1
93
+ 2
94
+ 13
95
+ 99
96
+ 12
97
+ 7
98
+ 2
99
+ 12
100
+ 7
101
+ 3
102
+ 12
103
+ 65
104
+ 12
105
+ 49
106
+ 4
107
+ 4
108
+ 15
109
+ 49
110
+ 2
111
+ 0
112
+ 11
113
+ I
114
+ 6
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ n
122
+ p
123
+ 5
124
+ x
125
+ 6
126
+ Client
127
+ x
128
+ 11
129
+ open_module
130
+ x
131
+ 15
132
+ __module_init__
133
+ M
134
+ 1
135
+ n
136
+ n
137
+ x
138
+ 6
139
+ Client
140
+ i
141
+ 28
142
+ 5
143
+ 66
144
+ 99
145
+ 7
146
+ 0
147
+ 65
148
+ 49
149
+ 1
150
+ 2
151
+ 13
152
+ 99
153
+ 12
154
+ 7
155
+ 2
156
+ 12
157
+ 7
158
+ 3
159
+ 12
160
+ 65
161
+ 12
162
+ 49
163
+ 4
164
+ 4
165
+ 15
166
+ 49
167
+ 2
168
+ 0
169
+ 11
170
+ I
171
+ 6
172
+ I
173
+ 0
174
+ I
175
+ 0
176
+ I
177
+ 0
178
+ n
179
+ p
180
+ 5
181
+ x
182
+ 7
183
+ Handler
184
+ x
185
+ 11
186
+ open_module
187
+ x
188
+ 15
189
+ __module_init__
190
+ M
191
+ 1
192
+ n
193
+ n
194
+ x
195
+ 7
196
+ Handler
197
+ i
198
+ 29
199
+ 5
200
+ 66
201
+ 99
202
+ 7
203
+ 0
204
+ 1
205
+ 65
206
+ 49
207
+ 1
208
+ 3
209
+ 13
210
+ 99
211
+ 12
212
+ 7
213
+ 2
214
+ 12
215
+ 7
216
+ 3
217
+ 12
218
+ 65
219
+ 12
220
+ 49
221
+ 4
222
+ 4
223
+ 15
224
+ 49
225
+ 2
226
+ 0
227
+ 11
228
+ I
229
+ 6
230
+ I
231
+ 0
232
+ I
233
+ 0
234
+ I
235
+ 0
236
+ n
237
+ p
238
+ 5
239
+ x
240
+ 8
241
+ Typhoeus
242
+ x
243
+ 10
244
+ open_class
245
+ x
246
+ 14
247
+ __class_init__
248
+ M
249
+ 1
250
+ n
251
+ n
252
+ x
253
+ 8
254
+ Typhoeus
255
+ i
256
+ 141
257
+ 5
258
+ 66
259
+ 5
260
+ 45
261
+ 0
262
+ 1
263
+ 43
264
+ 2
265
+ 43
266
+ 3
267
+ 47
268
+ 49
269
+ 4
270
+ 1
271
+ 15
272
+ 99
273
+ 7
274
+ 5
275
+ 7
276
+ 6
277
+ 65
278
+ 67
279
+ 49
280
+ 7
281
+ 0
282
+ 49
283
+ 8
284
+ 4
285
+ 15
286
+ 99
287
+ 7
288
+ 9
289
+ 7
290
+ 10
291
+ 65
292
+ 67
293
+ 49
294
+ 7
295
+ 0
296
+ 49
297
+ 8
298
+ 4
299
+ 15
300
+ 99
301
+ 7
302
+ 11
303
+ 7
304
+ 12
305
+ 65
306
+ 67
307
+ 49
308
+ 7
309
+ 0
310
+ 49
311
+ 8
312
+ 4
313
+ 15
314
+ 99
315
+ 7
316
+ 13
317
+ 7
318
+ 14
319
+ 65
320
+ 67
321
+ 49
322
+ 7
323
+ 0
324
+ 49
325
+ 8
326
+ 4
327
+ 15
328
+ 99
329
+ 7
330
+ 15
331
+ 7
332
+ 16
333
+ 65
334
+ 67
335
+ 49
336
+ 7
337
+ 0
338
+ 49
339
+ 8
340
+ 4
341
+ 15
342
+ 99
343
+ 7
344
+ 17
345
+ 7
346
+ 18
347
+ 65
348
+ 67
349
+ 49
350
+ 7
351
+ 0
352
+ 49
353
+ 8
354
+ 4
355
+ 15
356
+ 99
357
+ 7
358
+ 19
359
+ 7
360
+ 20
361
+ 65
362
+ 67
363
+ 49
364
+ 7
365
+ 0
366
+ 49
367
+ 8
368
+ 4
369
+ 15
370
+ 99
371
+ 7
372
+ 21
373
+ 7
374
+ 22
375
+ 65
376
+ 67
377
+ 49
378
+ 7
379
+ 0
380
+ 49
381
+ 8
382
+ 4
383
+ 15
384
+ 99
385
+ 7
386
+ 23
387
+ 7
388
+ 24
389
+ 65
390
+ 67
391
+ 49
392
+ 7
393
+ 0
394
+ 49
395
+ 8
396
+ 4
397
+ 11
398
+ I
399
+ 5
400
+ I
401
+ 0
402
+ I
403
+ 0
404
+ I
405
+ 0
406
+ n
407
+ p
408
+ 25
409
+ x
410
+ 4
411
+ Rack
412
+ n
413
+ x
414
+ 6
415
+ Client
416
+ x
417
+ 8
418
+ DualBand
419
+ x
420
+ 7
421
+ include
422
+ x
423
+ 10
424
+ initialize
425
+ M
426
+ 1
427
+ n
428
+ n
429
+ x
430
+ 10
431
+ initialize
432
+ i
433
+ 38
434
+ 23
435
+ 0
436
+ 10
437
+ 33
438
+ 44
439
+ 43
440
+ 0
441
+ 43
442
+ 1
443
+ 13
444
+ 71
445
+ 2
446
+ 47
447
+ 9
448
+ 27
449
+ 47
450
+ 49
451
+ 3
452
+ 0
453
+ 13
454
+ 47
455
+ 49
456
+ 4
457
+ 0
458
+ 15
459
+ 8
460
+ 30
461
+ 49
462
+ 2
463
+ 0
464
+ 19
465
+ 0
466
+ 15
467
+ 20
468
+ 0
469
+ 38
470
+ 5
471
+ 11
472
+ I
473
+ 3
474
+ I
475
+ 1
476
+ I
477
+ 0
478
+ I
479
+ 1
480
+ n
481
+ p
482
+ 6
483
+ x
484
+ 8
485
+ Typhoeus
486
+ x
487
+ 5
488
+ Hydra
489
+ x
490
+ 3
491
+ new
492
+ x
493
+ 8
494
+ allocate
495
+ x
496
+ 10
497
+ initialize
498
+ x
499
+ 6
500
+ @hydra
501
+ p
502
+ 5
503
+ I
504
+ 0
505
+ I
506
+ 9
507
+ I
508
+ 21
509
+ I
510
+ a
511
+ I
512
+ 26
513
+ x
514
+ 63
515
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
516
+ p
517
+ 1
518
+ x
519
+ 5
520
+ hydra
521
+ x
522
+ 17
523
+ method_visibility
524
+ x
525
+ 15
526
+ add_defn_method
527
+ x
528
+ 10
529
+ async_call
530
+ M
531
+ 1
532
+ n
533
+ n
534
+ x
535
+ 10
536
+ async_call
537
+ i
538
+ 59
539
+ 45
540
+ 0
541
+ 1
542
+ 43
543
+ 2
544
+ 13
545
+ 71
546
+ 3
547
+ 47
548
+ 9
549
+ 25
550
+ 47
551
+ 49
552
+ 4
553
+ 0
554
+ 13
555
+ 20
556
+ 0
557
+ 47
558
+ 49
559
+ 5
560
+ 1
561
+ 15
562
+ 8
563
+ 30
564
+ 20
565
+ 0
566
+ 49
567
+ 3
568
+ 1
569
+ 19
570
+ 1
571
+ 15
572
+ 5
573
+ 20
574
+ 1
575
+ 47
576
+ 49
577
+ 6
578
+ 1
579
+ 19
580
+ 2
581
+ 15
582
+ 20
583
+ 2
584
+ 56
585
+ 7
586
+ 50
587
+ 8
588
+ 0
589
+ 15
590
+ 39
591
+ 9
592
+ 20
593
+ 2
594
+ 49
595
+ 10
596
+ 1
597
+ 11
598
+ I
599
+ 6
600
+ I
601
+ 3
602
+ I
603
+ 1
604
+ I
605
+ 1
606
+ n
607
+ p
608
+ 11
609
+ x
610
+ 4
611
+ Rack
612
+ n
613
+ x
614
+ 7
615
+ Request
616
+ x
617
+ 3
618
+ new
619
+ x
620
+ 8
621
+ allocate
622
+ x
623
+ 10
624
+ initialize
625
+ x
626
+ 11
627
+ request_for
628
+ M
629
+ 1
630
+ p
631
+ 2
632
+ x
633
+ 9
634
+ for_block
635
+ t
636
+ n
637
+ x
638
+ 10
639
+ async_call
640
+ i
641
+ 17
642
+ 57
643
+ 19
644
+ 0
645
+ 15
646
+ 5
647
+ 20
648
+ 0
649
+ 47
650
+ 49
651
+ 0
652
+ 1
653
+ 49
654
+ 1
655
+ 0
656
+ 60
657
+ 1
658
+ 11
659
+ I
660
+ 4
661
+ I
662
+ 1
663
+ I
664
+ 1
665
+ I
666
+ 1
667
+ n
668
+ p
669
+ 2
670
+ x
671
+ 5
672
+ parse
673
+ x
674
+ 6
675
+ finish
676
+ p
677
+ 5
678
+ I
679
+ 0
680
+ I
681
+ 12
682
+ I
683
+ 4
684
+ I
685
+ 13
686
+ I
687
+ 11
688
+ x
689
+ 63
690
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
691
+ p
692
+ 1
693
+ x
694
+ 8
695
+ response
696
+ x
697
+ 11
698
+ on_complete
699
+ x
700
+ 6
701
+ @hydra
702
+ x
703
+ 5
704
+ queue
705
+ p
706
+ 11
707
+ I
708
+ 0
709
+ I
710
+ d
711
+ I
712
+ 0
713
+ I
714
+ e
715
+ I
716
+ 21
717
+ I
718
+ 10
719
+ I
720
+ 2b
721
+ I
722
+ 12
723
+ I
724
+ 33
725
+ I
726
+ 16
727
+ I
728
+ 3b
729
+ x
730
+ 63
731
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
732
+ p
733
+ 3
734
+ x
735
+ 3
736
+ env
737
+ x
738
+ 12
739
+ rack_request
740
+ x
741
+ 16
742
+ typhoeus_request
743
+ x
744
+ 9
745
+ sync_call
746
+ M
747
+ 1
748
+ n
749
+ n
750
+ x
751
+ 9
752
+ sync_call
753
+ i
754
+ 49
755
+ 45
756
+ 0
757
+ 1
758
+ 43
759
+ 2
760
+ 13
761
+ 71
762
+ 3
763
+ 47
764
+ 9
765
+ 25
766
+ 47
767
+ 49
768
+ 4
769
+ 0
770
+ 13
771
+ 20
772
+ 0
773
+ 47
774
+ 49
775
+ 5
776
+ 1
777
+ 15
778
+ 8
779
+ 30
780
+ 20
781
+ 0
782
+ 49
783
+ 3
784
+ 1
785
+ 19
786
+ 1
787
+ 15
788
+ 5
789
+ 5
790
+ 20
791
+ 1
792
+ 47
793
+ 49
794
+ 6
795
+ 1
796
+ 47
797
+ 49
798
+ 7
799
+ 1
800
+ 49
801
+ 8
802
+ 0
803
+ 11
804
+ I
805
+ 5
806
+ I
807
+ 2
808
+ I
809
+ 1
810
+ I
811
+ 1
812
+ n
813
+ p
814
+ 9
815
+ x
816
+ 4
817
+ Rack
818
+ n
819
+ x
820
+ 7
821
+ Request
822
+ x
823
+ 3
824
+ new
825
+ x
826
+ 8
827
+ allocate
828
+ x
829
+ 10
830
+ initialize
831
+ x
832
+ 7
833
+ process
834
+ x
835
+ 5
836
+ parse
837
+ x
838
+ 6
839
+ finish
840
+ p
841
+ 7
842
+ I
843
+ 0
844
+ I
845
+ 19
846
+ I
847
+ 0
848
+ I
849
+ 1a
850
+ I
851
+ 21
852
+ I
853
+ 1c
854
+ I
855
+ 31
856
+ x
857
+ 63
858
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
859
+ p
860
+ 2
861
+ x
862
+ 3
863
+ env
864
+ x
865
+ 12
866
+ rack_request
867
+ x
868
+ 5
869
+ parse
870
+ M
871
+ 1
872
+ n
873
+ n
874
+ x
875
+ 5
876
+ parse
877
+ i
878
+ 122
879
+ 20
880
+ 0
881
+ 49
882
+ 0
883
+ 0
884
+ 49
885
+ 1
886
+ 0
887
+ 13
888
+ 10
889
+ 20
890
+ 15
891
+ 20
892
+ 0
893
+ 49
894
+ 0
895
+ 0
896
+ 49
897
+ 2
898
+ 0
899
+ 9
900
+ 26
901
+ 35
902
+ 0
903
+ 8
904
+ 60
905
+ 45
906
+ 3
907
+ 4
908
+ 13
909
+ 71
910
+ 5
911
+ 47
912
+ 9
913
+ 52
914
+ 47
915
+ 49
916
+ 6
917
+ 0
918
+ 13
919
+ 20
920
+ 0
921
+ 49
922
+ 0
923
+ 0
924
+ 47
925
+ 49
926
+ 7
927
+ 1
928
+ 15
929
+ 8
930
+ 60
931
+ 20
932
+ 0
933
+ 49
934
+ 0
935
+ 0
936
+ 49
937
+ 5
938
+ 1
939
+ 19
940
+ 1
941
+ 15
942
+ 45
943
+ 8
944
+ 9
945
+ 13
946
+ 71
947
+ 5
948
+ 47
949
+ 9
950
+ 101
951
+ 47
952
+ 49
953
+ 6
954
+ 0
955
+ 13
956
+ 20
957
+ 0
958
+ 49
959
+ 10
960
+ 0
961
+ 5
962
+ 20
963
+ 0
964
+ 47
965
+ 49
966
+ 11
967
+ 1
968
+ 49
969
+ 12
970
+ 0
971
+ 20
972
+ 1
973
+ 47
974
+ 49
975
+ 7
976
+ 3
977
+ 15
978
+ 8
979
+ 121
980
+ 20
981
+ 0
982
+ 49
983
+ 10
984
+ 0
985
+ 5
986
+ 20
987
+ 0
988
+ 47
989
+ 49
990
+ 11
991
+ 1
992
+ 49
993
+ 12
994
+ 0
995
+ 20
996
+ 1
997
+ 49
998
+ 5
999
+ 3
1000
+ 11
1001
+ I
1002
+ 7
1003
+ I
1004
+ 2
1005
+ I
1006
+ 1
1007
+ I
1008
+ 1
1009
+ n
1010
+ p
1011
+ 13
1012
+ x
1013
+ 4
1014
+ body
1015
+ x
1016
+ 4
1017
+ nil?
1018
+ x
1019
+ 6
1020
+ empty?
1021
+ x
1022
+ 8
1023
+ StringIO
1024
+ n
1025
+ x
1026
+ 3
1027
+ new
1028
+ x
1029
+ 8
1030
+ allocate
1031
+ x
1032
+ 10
1033
+ initialize
1034
+ x
1035
+ 8
1036
+ Response
1037
+ n
1038
+ x
1039
+ 4
1040
+ code
1041
+ x
1042
+ 11
1043
+ headers_for
1044
+ x
1045
+ 7
1046
+ to_http
1047
+ p
1048
+ 7
1049
+ I
1050
+ 0
1051
+ I
1052
+ 1f
1053
+ I
1054
+ 0
1055
+ I
1056
+ 20
1057
+ I
1058
+ 3f
1059
+ I
1060
+ 21
1061
+ I
1062
+ 7a
1063
+ x
1064
+ 63
1065
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1066
+ p
1067
+ 2
1068
+ x
1069
+ 17
1070
+ typhoeus_response
1071
+ x
1072
+ 4
1073
+ body
1074
+ x
1075
+ 11
1076
+ request_for
1077
+ M
1078
+ 1
1079
+ n
1080
+ n
1081
+ x
1082
+ 11
1083
+ request_for
1084
+ i
1085
+ 57
1086
+ 44
1087
+ 43
1088
+ 0
1089
+ 43
1090
+ 1
1091
+ 13
1092
+ 71
1093
+ 2
1094
+ 47
1095
+ 9
1096
+ 38
1097
+ 47
1098
+ 49
1099
+ 3
1100
+ 0
1101
+ 13
1102
+ 20
1103
+ 0
1104
+ 49
1105
+ 4
1106
+ 0
1107
+ 49
1108
+ 5
1109
+ 0
1110
+ 5
1111
+ 20
1112
+ 0
1113
+ 47
1114
+ 49
1115
+ 6
1116
+ 1
1117
+ 47
1118
+ 49
1119
+ 7
1120
+ 2
1121
+ 15
1122
+ 8
1123
+ 56
1124
+ 20
1125
+ 0
1126
+ 49
1127
+ 4
1128
+ 0
1129
+ 49
1130
+ 5
1131
+ 0
1132
+ 5
1133
+ 20
1134
+ 0
1135
+ 47
1136
+ 49
1137
+ 6
1138
+ 1
1139
+ 49
1140
+ 2
1141
+ 2
1142
+ 11
1143
+ I
1144
+ 6
1145
+ I
1146
+ 1
1147
+ I
1148
+ 1
1149
+ I
1150
+ 1
1151
+ n
1152
+ p
1153
+ 8
1154
+ x
1155
+ 8
1156
+ Typhoeus
1157
+ x
1158
+ 7
1159
+ Request
1160
+ x
1161
+ 3
1162
+ new
1163
+ x
1164
+ 8
1165
+ allocate
1166
+ x
1167
+ 3
1168
+ url
1169
+ x
1170
+ 4
1171
+ to_s
1172
+ x
1173
+ 10
1174
+ params_for
1175
+ x
1176
+ 10
1177
+ initialize
1178
+ p
1179
+ 5
1180
+ I
1181
+ 0
1182
+ I
1183
+ 24
1184
+ I
1185
+ 0
1186
+ I
1187
+ 25
1188
+ I
1189
+ 39
1190
+ x
1191
+ 63
1192
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1193
+ p
1194
+ 1
1195
+ x
1196
+ 12
1197
+ rack_request
1198
+ x
1199
+ 11
1200
+ headers_for
1201
+ M
1202
+ 1
1203
+ n
1204
+ n
1205
+ x
1206
+ 11
1207
+ headers_for
1208
+ i
1209
+ 45
1210
+ 20
1211
+ 0
1212
+ 49
1213
+ 0
1214
+ 0
1215
+ 19
1216
+ 1
1217
+ 15
1218
+ 20
1219
+ 1
1220
+ 56
1221
+ 1
1222
+ 50
1223
+ 2
1224
+ 0
1225
+ 15
1226
+ 45
1227
+ 3
1228
+ 4
1229
+ 13
1230
+ 71
1231
+ 5
1232
+ 47
1233
+ 9
1234
+ 39
1235
+ 47
1236
+ 49
1237
+ 6
1238
+ 0
1239
+ 13
1240
+ 20
1241
+ 1
1242
+ 47
1243
+ 49
1244
+ 7
1245
+ 1
1246
+ 15
1247
+ 8
1248
+ 44
1249
+ 20
1250
+ 1
1251
+ 49
1252
+ 5
1253
+ 1
1254
+ 11
1255
+ I
1256
+ 5
1257
+ I
1258
+ 2
1259
+ I
1260
+ 1
1261
+ I
1262
+ 1
1263
+ n
1264
+ p
1265
+ 8
1266
+ x
1267
+ 12
1268
+ headers_hash
1269
+ M
1270
+ 1
1271
+ p
1272
+ 2
1273
+ x
1274
+ 9
1275
+ for_block
1276
+ t
1277
+ n
1278
+ x
1279
+ 11
1280
+ headers_for
1281
+ i
1282
+ 16
1283
+ 58
1284
+ 37
1285
+ 19
1286
+ 0
1287
+ 15
1288
+ 37
1289
+ 19
1290
+ 1
1291
+ 15
1292
+ 15
1293
+ 20
1294
+ 1
1295
+ 49
1296
+ 0
1297
+ 0
1298
+ 11
1299
+ I
1300
+ 5
1301
+ I
1302
+ 2
1303
+ I
1304
+ 2
1305
+ I
1306
+ 2
1307
+ n
1308
+ p
1309
+ 1
1310
+ x
1311
+ 4
1312
+ nil?
1313
+ p
1314
+ 3
1315
+ I
1316
+ 0
1317
+ I
1318
+ 2a
1319
+ I
1320
+ 10
1321
+ x
1322
+ 63
1323
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1324
+ p
1325
+ 2
1326
+ x
1327
+ 1
1328
+ k
1329
+ x
1330
+ 1
1331
+ v
1332
+ x
1333
+ 7
1334
+ reject!
1335
+ x
1336
+ 7
1337
+ Headers
1338
+ n
1339
+ x
1340
+ 3
1341
+ new
1342
+ x
1343
+ 8
1344
+ allocate
1345
+ x
1346
+ 10
1347
+ initialize
1348
+ p
1349
+ 9
1350
+ I
1351
+ 0
1352
+ I
1353
+ 28
1354
+ I
1355
+ 0
1356
+ I
1357
+ 29
1358
+ I
1359
+ 8
1360
+ I
1361
+ 2a
1362
+ I
1363
+ 10
1364
+ I
1365
+ 2c
1366
+ I
1367
+ 2d
1368
+ x
1369
+ 63
1370
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1371
+ p
1372
+ 2
1373
+ x
1374
+ 17
1375
+ typhoeus_response
1376
+ x
1377
+ 7
1378
+ headers
1379
+ x
1380
+ 7
1381
+ process
1382
+ M
1383
+ 1
1384
+ n
1385
+ n
1386
+ x
1387
+ 7
1388
+ process
1389
+ i
1390
+ 24
1391
+ 44
1392
+ 43
1393
+ 0
1394
+ 43
1395
+ 1
1396
+ 20
1397
+ 0
1398
+ 49
1399
+ 2
1400
+ 0
1401
+ 49
1402
+ 3
1403
+ 0
1404
+ 5
1405
+ 20
1406
+ 0
1407
+ 47
1408
+ 49
1409
+ 4
1410
+ 1
1411
+ 49
1412
+ 5
1413
+ 2
1414
+ 11
1415
+ I
1416
+ 5
1417
+ I
1418
+ 1
1419
+ I
1420
+ 1
1421
+ I
1422
+ 1
1423
+ n
1424
+ p
1425
+ 6
1426
+ x
1427
+ 8
1428
+ Typhoeus
1429
+ x
1430
+ 7
1431
+ Request
1432
+ x
1433
+ 3
1434
+ url
1435
+ x
1436
+ 4
1437
+ to_s
1438
+ x
1439
+ 10
1440
+ params_for
1441
+ x
1442
+ 3
1443
+ run
1444
+ p
1445
+ 5
1446
+ I
1447
+ 0
1448
+ I
1449
+ 2f
1450
+ I
1451
+ 0
1452
+ I
1453
+ 30
1454
+ I
1455
+ 18
1456
+ x
1457
+ 63
1458
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1459
+ p
1460
+ 1
1461
+ x
1462
+ 12
1463
+ rack_request
1464
+ x
1465
+ 10
1466
+ params_for
1467
+ M
1468
+ 1
1469
+ n
1470
+ n
1471
+ x
1472
+ 10
1473
+ params_for
1474
+ i
1475
+ 72
1476
+ 44
1477
+ 43
1478
+ 0
1479
+ 4
1480
+ 3
1481
+ 49
1482
+ 1
1483
+ 1
1484
+ 13
1485
+ 7
1486
+ 2
1487
+ 20
1488
+ 0
1489
+ 49
1490
+ 3
1491
+ 0
1492
+ 49
1493
+ 4
1494
+ 0
1495
+ 49
1496
+ 5
1497
+ 0
1498
+ 49
1499
+ 6
1500
+ 2
1501
+ 15
1502
+ 13
1503
+ 7
1504
+ 7
1505
+ 45
1506
+ 8
1507
+ 9
1508
+ 20
1509
+ 0
1510
+ 49
1511
+ 10
1512
+ 0
1513
+ 49
1514
+ 11
1515
+ 1
1516
+ 49
1517
+ 12
1518
+ 0
1519
+ 49
1520
+ 6
1521
+ 2
1522
+ 15
1523
+ 13
1524
+ 7
1525
+ 13
1526
+ 44
1527
+ 43
1528
+ 0
1529
+ 78
1530
+ 49
1531
+ 1
1532
+ 1
1533
+ 49
1534
+ 6
1535
+ 2
1536
+ 15
1537
+ 5
1538
+ 20
1539
+ 0
1540
+ 47
1541
+ 49
1542
+ 14
1543
+ 1
1544
+ 49
1545
+ 15
1546
+ 1
1547
+ 11
1548
+ I
1549
+ 6
1550
+ I
1551
+ 1
1552
+ I
1553
+ 1
1554
+ I
1555
+ 1
1556
+ n
1557
+ p
1558
+ 16
1559
+ x
1560
+ 4
1561
+ Hash
1562
+ x
1563
+ 16
1564
+ new_from_literal
1565
+ x
1566
+ 6
1567
+ method
1568
+ x
1569
+ 14
1570
+ request_method
1571
+ x
1572
+ 8
1573
+ downcase
1574
+ x
1575
+ 6
1576
+ to_sym
1577
+ x
1578
+ 3
1579
+ []=
1580
+ x
1581
+ 7
1582
+ headers
1583
+ x
1584
+ 7
1585
+ Headers
1586
+ n
1587
+ x
1588
+ 3
1589
+ env
1590
+ x
1591
+ 4
1592
+ from
1593
+ x
1594
+ 7
1595
+ to_http
1596
+ x
1597
+ 6
1598
+ params
1599
+ x
1600
+ 15
1601
+ body_params_for
1602
+ x
1603
+ 5
1604
+ merge
1605
+ p
1606
+ 13
1607
+ I
1608
+ 0
1609
+ I
1610
+ 33
1611
+ I
1612
+ 0
1613
+ I
1614
+ 38
1615
+ I
1616
+ 9
1617
+ I
1618
+ 35
1619
+ I
1620
+ 1b
1621
+ I
1622
+ 36
1623
+ I
1624
+ 30
1625
+ I
1626
+ 37
1627
+ I
1628
+ 3d
1629
+ I
1630
+ 38
1631
+ I
1632
+ 48
1633
+ x
1634
+ 63
1635
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1636
+ p
1637
+ 1
1638
+ x
1639
+ 12
1640
+ rack_request
1641
+ x
1642
+ 15
1643
+ body_params_for
1644
+ M
1645
+ 1
1646
+ n
1647
+ n
1648
+ x
1649
+ 15
1650
+ body_params_for
1651
+ i
1652
+ 50
1653
+ 7
1654
+ 0
1655
+ 64
1656
+ 7
1657
+ 1
1658
+ 64
1659
+ 35
1660
+ 2
1661
+ 20
1662
+ 0
1663
+ 49
1664
+ 2
1665
+ 0
1666
+ 49
1667
+ 3
1668
+ 1
1669
+ 9
1670
+ 27
1671
+ 44
1672
+ 43
1673
+ 4
1674
+ 78
1675
+ 49
1676
+ 5
1677
+ 1
1678
+ 8
1679
+ 49
1680
+ 44
1681
+ 43
1682
+ 4
1683
+ 79
1684
+ 49
1685
+ 5
1686
+ 1
1687
+ 13
1688
+ 7
1689
+ 6
1690
+ 20
1691
+ 0
1692
+ 49
1693
+ 6
1694
+ 0
1695
+ 49
1696
+ 7
1697
+ 0
1698
+ 49
1699
+ 8
1700
+ 2
1701
+ 15
1702
+ 11
1703
+ I
1704
+ 5
1705
+ I
1706
+ 1
1707
+ I
1708
+ 1
1709
+ I
1710
+ 1
1711
+ n
1712
+ p
1713
+ 9
1714
+ s
1715
+ 4
1716
+ HEAD
1717
+ s
1718
+ 3
1719
+ GET
1720
+ x
1721
+ 14
1722
+ request_method
1723
+ x
1724
+ 8
1725
+ include?
1726
+ x
1727
+ 4
1728
+ Hash
1729
+ x
1730
+ 16
1731
+ new_from_literal
1732
+ x
1733
+ 4
1734
+ body
1735
+ x
1736
+ 6
1737
+ string
1738
+ x
1739
+ 3
1740
+ []=
1741
+ p
1742
+ 9
1743
+ I
1744
+ 0
1745
+ I
1746
+ 3b
1747
+ I
1748
+ 0
1749
+ I
1750
+ 3c
1751
+ I
1752
+ 12
1753
+ I
1754
+ 3f
1755
+ I
1756
+ 1b
1757
+ I
1758
+ 3d
1759
+ I
1760
+ 32
1761
+ x
1762
+ 63
1763
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1764
+ p
1765
+ 1
1766
+ x
1767
+ 12
1768
+ rack_request
1769
+ p
1770
+ 21
1771
+ I
1772
+ 2
1773
+ I
1774
+ 7
1775
+ I
1776
+ f
1777
+ I
1778
+ 9
1779
+ I
1780
+ 1d
1781
+ I
1782
+ d
1783
+ I
1784
+ 2b
1785
+ I
1786
+ 19
1787
+ I
1788
+ 39
1789
+ I
1790
+ 1f
1791
+ I
1792
+ 47
1793
+ I
1794
+ 24
1795
+ I
1796
+ 55
1797
+ I
1798
+ 28
1799
+ I
1800
+ 63
1801
+ I
1802
+ 2f
1803
+ I
1804
+ 71
1805
+ I
1806
+ 33
1807
+ I
1808
+ 7f
1809
+ I
1810
+ 3b
1811
+ I
1812
+ 8d
1813
+ x
1814
+ 63
1815
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1816
+ p
1817
+ 0
1818
+ x
1819
+ 13
1820
+ attach_method
1821
+ p
1822
+ 3
1823
+ I
1824
+ 2
1825
+ I
1826
+ 6
1827
+ I
1828
+ 1d
1829
+ x
1830
+ 63
1831
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1832
+ p
1833
+ 0
1834
+ x
1835
+ 13
1836
+ attach_method
1837
+ p
1838
+ 3
1839
+ I
1840
+ 2
1841
+ I
1842
+ 5
1843
+ I
1844
+ 1c
1845
+ x
1846
+ 63
1847
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1848
+ p
1849
+ 0
1850
+ x
1851
+ 13
1852
+ attach_method
1853
+ p
1854
+ 3
1855
+ I
1856
+ 2
1857
+ I
1858
+ 4
1859
+ I
1860
+ 1c
1861
+ x
1862
+ 63
1863
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1864
+ p
1865
+ 0
1866
+ x
1867
+ 13
1868
+ attach_method
1869
+ p
1870
+ 5
1871
+ I
1872
+ 0
1873
+ I
1874
+ 1
1875
+ I
1876
+ 9
1877
+ I
1878
+ 3
1879
+ I
1880
+ 25
1881
+ x
1882
+ 63
1883
+ /Users/ben/code/rack-client/lib/rack/client/handler/typhoeus.rb
1884
+ p
1885
+ 0