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,1576 @@
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
+ 4
54
+ Rack
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
+ 4
67
+ Rack
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 6
111
+ Client
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 6
124
+ Client
125
+ i
126
+ 28
127
+ 5
128
+ 66
129
+ 99
130
+ 7
131
+ 0
132
+ 65
133
+ 49
134
+ 1
135
+ 2
136
+ 13
137
+ 99
138
+ 12
139
+ 7
140
+ 2
141
+ 12
142
+ 7
143
+ 3
144
+ 12
145
+ 65
146
+ 12
147
+ 49
148
+ 4
149
+ 4
150
+ 15
151
+ 49
152
+ 2
153
+ 0
154
+ 11
155
+ I
156
+ 6
157
+ I
158
+ 0
159
+ I
160
+ 0
161
+ I
162
+ 0
163
+ n
164
+ p
165
+ 5
166
+ x
167
+ 9
168
+ CookieJar
169
+ x
170
+ 11
171
+ open_module
172
+ x
173
+ 15
174
+ __module_init__
175
+ M
176
+ 1
177
+ n
178
+ n
179
+ x
180
+ 9
181
+ CookieJar
182
+ i
183
+ 29
184
+ 5
185
+ 66
186
+ 99
187
+ 7
188
+ 0
189
+ 1
190
+ 65
191
+ 49
192
+ 1
193
+ 3
194
+ 13
195
+ 99
196
+ 12
197
+ 7
198
+ 2
199
+ 12
200
+ 7
201
+ 3
202
+ 12
203
+ 65
204
+ 12
205
+ 49
206
+ 4
207
+ 4
208
+ 15
209
+ 49
210
+ 2
211
+ 0
212
+ 11
213
+ I
214
+ 6
215
+ I
216
+ 0
217
+ I
218
+ 0
219
+ I
220
+ 0
221
+ n
222
+ p
223
+ 5
224
+ x
225
+ 7
226
+ Context
227
+ x
228
+ 10
229
+ open_class
230
+ x
231
+ 14
232
+ __class_init__
233
+ M
234
+ 1
235
+ n
236
+ n
237
+ x
238
+ 7
239
+ Context
240
+ i
241
+ 104
242
+ 5
243
+ 66
244
+ 5
245
+ 45
246
+ 0
247
+ 1
248
+ 47
249
+ 49
250
+ 2
251
+ 1
252
+ 15
253
+ 5
254
+ 45
255
+ 3
256
+ 4
257
+ 47
258
+ 49
259
+ 2
260
+ 1
261
+ 15
262
+ 99
263
+ 7
264
+ 5
265
+ 7
266
+ 6
267
+ 65
268
+ 67
269
+ 49
270
+ 7
271
+ 0
272
+ 49
273
+ 8
274
+ 4
275
+ 15
276
+ 99
277
+ 7
278
+ 9
279
+ 7
280
+ 10
281
+ 65
282
+ 67
283
+ 49
284
+ 7
285
+ 0
286
+ 49
287
+ 8
288
+ 4
289
+ 15
290
+ 99
291
+ 7
292
+ 11
293
+ 7
294
+ 12
295
+ 65
296
+ 67
297
+ 49
298
+ 7
299
+ 0
300
+ 49
301
+ 8
302
+ 4
303
+ 15
304
+ 99
305
+ 7
306
+ 13
307
+ 7
308
+ 14
309
+ 65
310
+ 67
311
+ 49
312
+ 7
313
+ 0
314
+ 49
315
+ 8
316
+ 4
317
+ 15
318
+ 99
319
+ 7
320
+ 15
321
+ 7
322
+ 16
323
+ 65
324
+ 67
325
+ 49
326
+ 7
327
+ 0
328
+ 49
329
+ 8
330
+ 4
331
+ 15
332
+ 99
333
+ 7
334
+ 17
335
+ 7
336
+ 18
337
+ 65
338
+ 67
339
+ 49
340
+ 7
341
+ 0
342
+ 49
343
+ 8
344
+ 4
345
+ 11
346
+ I
347
+ 5
348
+ I
349
+ 0
350
+ I
351
+ 0
352
+ I
353
+ 0
354
+ n
355
+ p
356
+ 19
357
+ x
358
+ 7
359
+ Options
360
+ n
361
+ x
362
+ 7
363
+ include
364
+ x
365
+ 8
366
+ DualBand
367
+ n
368
+ x
369
+ 10
370
+ initialize
371
+ M
372
+ 1
373
+ n
374
+ n
375
+ x
376
+ 10
377
+ initialize
378
+ i
379
+ 27
380
+ 23
381
+ 1
382
+ 10
383
+ 14
384
+ 44
385
+ 43
386
+ 0
387
+ 78
388
+ 49
389
+ 1
390
+ 1
391
+ 19
392
+ 1
393
+ 15
394
+ 20
395
+ 0
396
+ 38
397
+ 2
398
+ 15
399
+ 5
400
+ 20
401
+ 1
402
+ 47
403
+ 49
404
+ 3
405
+ 1
406
+ 11
407
+ I
408
+ 4
409
+ I
410
+ 2
411
+ I
412
+ 1
413
+ I
414
+ 2
415
+ n
416
+ p
417
+ 4
418
+ x
419
+ 4
420
+ Hash
421
+ x
422
+ 16
423
+ new_from_literal
424
+ x
425
+ 4
426
+ @app
427
+ x
428
+ 18
429
+ initialize_options
430
+ p
431
+ 7
432
+ I
433
+ 0
434
+ I
435
+ 8
436
+ I
437
+ e
438
+ I
439
+ 9
440
+ I
441
+ 13
442
+ I
443
+ b
444
+ I
445
+ 1b
446
+ x
447
+ 76
448
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
449
+ p
450
+ 2
451
+ x
452
+ 3
453
+ app
454
+ x
455
+ 7
456
+ options
457
+ x
458
+ 17
459
+ method_visibility
460
+ x
461
+ 15
462
+ add_defn_method
463
+ x
464
+ 9
465
+ sync_call
466
+ M
467
+ 1
468
+ n
469
+ n
470
+ x
471
+ 9
472
+ sync_call
473
+ i
474
+ 136
475
+ 45
476
+ 0
477
+ 1
478
+ 13
479
+ 71
480
+ 2
481
+ 47
482
+ 9
483
+ 23
484
+ 47
485
+ 49
486
+ 3
487
+ 0
488
+ 13
489
+ 20
490
+ 0
491
+ 47
492
+ 49
493
+ 4
494
+ 1
495
+ 15
496
+ 8
497
+ 28
498
+ 20
499
+ 0
500
+ 49
501
+ 2
502
+ 1
503
+ 19
504
+ 1
505
+ 15
506
+ 5
507
+ 20
508
+ 1
509
+ 47
510
+ 49
511
+ 5
512
+ 1
513
+ 19
514
+ 2
515
+ 15
516
+ 20
517
+ 1
518
+ 20
519
+ 2
520
+ 49
521
+ 6
522
+ 1
523
+ 15
524
+ 45
525
+ 7
526
+ 8
527
+ 39
528
+ 9
529
+ 20
530
+ 1
531
+ 49
532
+ 10
533
+ 0
534
+ 49
535
+ 11
536
+ 1
537
+ 36
538
+ 1
539
+ 51
540
+ 2
541
+ 0
542
+ 19
543
+ 3
544
+ 15
545
+ 45
546
+ 12
547
+ 13
548
+ 20
549
+ 2
550
+ 20
551
+ 3
552
+ 49
553
+ 14
554
+ 0
555
+ 49
556
+ 15
557
+ 2
558
+ 19
559
+ 2
560
+ 15
561
+ 5
562
+ 20
563
+ 2
564
+ 47
565
+ 49
566
+ 16
567
+ 1
568
+ 15
569
+ 20
570
+ 2
571
+ 49
572
+ 17
573
+ 0
574
+ 9
575
+ 104
576
+ 1
577
+ 8
578
+ 129
579
+ 20
580
+ 3
581
+ 7
582
+ 18
583
+ 64
584
+ 20
585
+ 2
586
+ 56
587
+ 19
588
+ 50
589
+ 20
590
+ 0
591
+ 7
592
+ 21
593
+ 64
594
+ 49
595
+ 22
596
+ 1
597
+ 13
598
+ 18
599
+ 3
600
+ 49
601
+ 23
602
+ 2
603
+ 15
604
+ 15
605
+ 20
606
+ 3
607
+ 49
608
+ 24
609
+ 0
610
+ 11
611
+ I
612
+ 8
613
+ I
614
+ 4
615
+ I
616
+ 1
617
+ I
618
+ 1
619
+ n
620
+ p
621
+ 25
622
+ x
623
+ 7
624
+ Request
625
+ n
626
+ x
627
+ 3
628
+ new
629
+ x
630
+ 8
631
+ allocate
632
+ x
633
+ 10
634
+ initialize
635
+ x
636
+ 6
637
+ lookup
638
+ x
639
+ 6
640
+ inject
641
+ x
642
+ 8
643
+ Response
644
+ n
645
+ x
646
+ 4
647
+ @app
648
+ x
649
+ 3
650
+ env
651
+ x
652
+ 4
653
+ call
654
+ x
655
+ 6
656
+ Cookie
657
+ n
658
+ x
659
+ 7
660
+ cookies
661
+ x
662
+ 5
663
+ merge
664
+ x
665
+ 5
666
+ store
667
+ x
668
+ 6
669
+ empty?
670
+ s
671
+ 29
672
+ rack-client-cookiejar.cookies
673
+ M
674
+ 1
675
+ p
676
+ 2
677
+ x
678
+ 9
679
+ for_block
680
+ t
681
+ n
682
+ x
683
+ 9
684
+ sync_call
685
+ i
686
+ 10
687
+ 57
688
+ 19
689
+ 0
690
+ 15
691
+ 20
692
+ 0
693
+ 49
694
+ 0
695
+ 0
696
+ 11
697
+ I
698
+ 3
699
+ I
700
+ 1
701
+ I
702
+ 1
703
+ I
704
+ 1
705
+ n
706
+ p
707
+ 1
708
+ x
709
+ 9
710
+ to_header
711
+ p
712
+ 3
713
+ I
714
+ 0
715
+ I
716
+ 17
717
+ I
718
+ a
719
+ x
720
+ 76
721
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
722
+ p
723
+ 1
724
+ x
725
+ 1
726
+ c
727
+ x
728
+ 3
729
+ map
730
+ s
731
+ 2
732
+ ,
733
+ x
734
+ 1
735
+ *
736
+ x
737
+ 3
738
+ []=
739
+ x
740
+ 6
741
+ finish
742
+ p
743
+ 19
744
+ I
745
+ 0
746
+ I
747
+ e
748
+ I
749
+ 0
750
+ I
751
+ f
752
+ I
753
+ 1f
754
+ I
755
+ 10
756
+ I
757
+ 29
758
+ I
759
+ 11
760
+ I
761
+ 31
762
+ I
763
+ 13
764
+ I
765
+ 46
766
+ I
767
+ 14
768
+ I
769
+ 56
770
+ I
771
+ 15
772
+ I
773
+ 5e
774
+ I
775
+ 17
776
+ I
777
+ 82
778
+ I
779
+ 18
780
+ I
781
+ 88
782
+ x
783
+ 76
784
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
785
+ p
786
+ 4
787
+ x
788
+ 3
789
+ env
790
+ x
791
+ 7
792
+ request
793
+ x
794
+ 7
795
+ cookies
796
+ x
797
+ 8
798
+ response
799
+ x
800
+ 10
801
+ async_call
802
+ M
803
+ 1
804
+ n
805
+ n
806
+ x
807
+ 10
808
+ async_call
809
+ i
810
+ 62
811
+ 45
812
+ 0
813
+ 1
814
+ 13
815
+ 71
816
+ 2
817
+ 47
818
+ 9
819
+ 23
820
+ 47
821
+ 49
822
+ 3
823
+ 0
824
+ 13
825
+ 20
826
+ 0
827
+ 47
828
+ 49
829
+ 4
830
+ 1
831
+ 15
832
+ 8
833
+ 28
834
+ 20
835
+ 0
836
+ 49
837
+ 2
838
+ 1
839
+ 19
840
+ 1
841
+ 15
842
+ 5
843
+ 20
844
+ 1
845
+ 47
846
+ 49
847
+ 5
848
+ 1
849
+ 19
850
+ 2
851
+ 15
852
+ 20
853
+ 1
854
+ 20
855
+ 2
856
+ 49
857
+ 6
858
+ 1
859
+ 15
860
+ 39
861
+ 7
862
+ 20
863
+ 1
864
+ 49
865
+ 8
866
+ 0
867
+ 56
868
+ 9
869
+ 50
870
+ 10
871
+ 1
872
+ 11
873
+ I
874
+ 6
875
+ I
876
+ 3
877
+ I
878
+ 1
879
+ I
880
+ 1
881
+ n
882
+ p
883
+ 11
884
+ x
885
+ 7
886
+ Request
887
+ n
888
+ x
889
+ 3
890
+ new
891
+ x
892
+ 8
893
+ allocate
894
+ x
895
+ 10
896
+ initialize
897
+ x
898
+ 6
899
+ lookup
900
+ x
901
+ 6
902
+ inject
903
+ x
904
+ 4
905
+ @app
906
+ x
907
+ 3
908
+ env
909
+ M
910
+ 1
911
+ p
912
+ 2
913
+ x
914
+ 9
915
+ for_block
916
+ t
917
+ n
918
+ x
919
+ 10
920
+ async_call
921
+ i
922
+ 90
923
+ 57
924
+ 19
925
+ 0
926
+ 15
927
+ 45
928
+ 0
929
+ 1
930
+ 20
931
+ 0
932
+ 36
933
+ 1
934
+ 51
935
+ 2
936
+ 0
937
+ 19
938
+ 1
939
+ 15
940
+ 45
941
+ 3
942
+ 4
943
+ 21
944
+ 1
945
+ 2
946
+ 20
947
+ 1
948
+ 49
949
+ 5
950
+ 0
951
+ 49
952
+ 6
953
+ 2
954
+ 22
955
+ 1
956
+ 2
957
+ 15
958
+ 5
959
+ 21
960
+ 1
961
+ 2
962
+ 47
963
+ 49
964
+ 7
965
+ 1
966
+ 15
967
+ 21
968
+ 1
969
+ 2
970
+ 49
971
+ 8
972
+ 0
973
+ 9
974
+ 55
975
+ 1
976
+ 8
977
+ 81
978
+ 20
979
+ 1
980
+ 7
981
+ 9
982
+ 64
983
+ 21
984
+ 1
985
+ 2
986
+ 56
987
+ 10
988
+ 50
989
+ 11
990
+ 0
991
+ 7
992
+ 12
993
+ 64
994
+ 49
995
+ 13
996
+ 1
997
+ 13
998
+ 18
999
+ 3
1000
+ 49
1001
+ 14
1002
+ 2
1003
+ 15
1004
+ 15
1005
+ 20
1006
+ 1
1007
+ 49
1008
+ 15
1009
+ 0
1010
+ 60
1011
+ 1
1012
+ 11
1013
+ I
1014
+ 7
1015
+ I
1016
+ 2
1017
+ I
1018
+ 1
1019
+ I
1020
+ 1
1021
+ n
1022
+ p
1023
+ 16
1024
+ x
1025
+ 8
1026
+ Response
1027
+ n
1028
+ x
1029
+ 3
1030
+ new
1031
+ x
1032
+ 6
1033
+ Cookie
1034
+ n
1035
+ x
1036
+ 7
1037
+ cookies
1038
+ x
1039
+ 5
1040
+ merge
1041
+ x
1042
+ 5
1043
+ store
1044
+ x
1045
+ 6
1046
+ empty?
1047
+ s
1048
+ 29
1049
+ rack-client-cookiejar.cookies
1050
+ M
1051
+ 1
1052
+ p
1053
+ 2
1054
+ x
1055
+ 9
1056
+ for_block
1057
+ t
1058
+ n
1059
+ x
1060
+ 10
1061
+ async_call
1062
+ i
1063
+ 10
1064
+ 57
1065
+ 19
1066
+ 0
1067
+ 15
1068
+ 20
1069
+ 0
1070
+ 49
1071
+ 0
1072
+ 0
1073
+ 11
1074
+ I
1075
+ 3
1076
+ I
1077
+ 1
1078
+ I
1079
+ 1
1080
+ I
1081
+ 1
1082
+ n
1083
+ p
1084
+ 1
1085
+ x
1086
+ 9
1087
+ to_header
1088
+ p
1089
+ 3
1090
+ I
1091
+ 0
1092
+ I
1093
+ 25
1094
+ I
1095
+ a
1096
+ x
1097
+ 76
1098
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1099
+ p
1100
+ 1
1101
+ x
1102
+ 1
1103
+ c
1104
+ x
1105
+ 3
1106
+ map
1107
+ s
1108
+ 2
1109
+ ,
1110
+ x
1111
+ 1
1112
+ *
1113
+ x
1114
+ 3
1115
+ []=
1116
+ x
1117
+ 6
1118
+ finish
1119
+ p
1120
+ 13
1121
+ I
1122
+ 0
1123
+ I
1124
+ 20
1125
+ I
1126
+ 4
1127
+ I
1128
+ 21
1129
+ I
1130
+ 11
1131
+ I
1132
+ 22
1133
+ I
1134
+ 23
1135
+ I
1136
+ 23
1137
+ I
1138
+ 2c
1139
+ I
1140
+ 25
1141
+ I
1142
+ 52
1143
+ I
1144
+ 26
1145
+ I
1146
+ 5a
1147
+ x
1148
+ 76
1149
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1150
+ p
1151
+ 2
1152
+ x
1153
+ 13
1154
+ request_parts
1155
+ x
1156
+ 8
1157
+ response
1158
+ x
1159
+ 4
1160
+ call
1161
+ p
1162
+ 11
1163
+ I
1164
+ 0
1165
+ I
1166
+ 1b
1167
+ I
1168
+ 0
1169
+ I
1170
+ 1c
1171
+ I
1172
+ 1f
1173
+ I
1174
+ 1d
1175
+ I
1176
+ 29
1177
+ I
1178
+ 1e
1179
+ I
1180
+ 31
1181
+ I
1182
+ 20
1183
+ I
1184
+ 3e
1185
+ x
1186
+ 76
1187
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1188
+ p
1189
+ 3
1190
+ x
1191
+ 3
1192
+ env
1193
+ x
1194
+ 7
1195
+ request
1196
+ x
1197
+ 7
1198
+ cookies
1199
+ x
1200
+ 6
1201
+ lookup
1202
+ M
1203
+ 1
1204
+ n
1205
+ n
1206
+ x
1207
+ 6
1208
+ lookup
1209
+ i
1210
+ 17
1211
+ 5
1212
+ 48
1213
+ 0
1214
+ 20
1215
+ 0
1216
+ 49
1217
+ 1
1218
+ 0
1219
+ 20
1220
+ 0
1221
+ 49
1222
+ 2
1223
+ 0
1224
+ 49
1225
+ 3
1226
+ 2
1227
+ 11
1228
+ I
1229
+ 4
1230
+ I
1231
+ 1
1232
+ I
1233
+ 1
1234
+ I
1235
+ 1
1236
+ n
1237
+ p
1238
+ 4
1239
+ x
1240
+ 11
1241
+ cookiestore
1242
+ x
1243
+ 4
1244
+ host
1245
+ x
1246
+ 4
1247
+ path
1248
+ x
1249
+ 5
1250
+ match
1251
+ p
1252
+ 5
1253
+ I
1254
+ 0
1255
+ I
1256
+ 2a
1257
+ I
1258
+ 0
1259
+ I
1260
+ 2b
1261
+ I
1262
+ 11
1263
+ x
1264
+ 76
1265
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1266
+ p
1267
+ 1
1268
+ x
1269
+ 7
1270
+ request
1271
+ x
1272
+ 5
1273
+ store
1274
+ M
1275
+ 1
1276
+ n
1277
+ n
1278
+ x
1279
+ 5
1280
+ store
1281
+ i
1282
+ 8
1283
+ 20
1284
+ 0
1285
+ 56
1286
+ 0
1287
+ 50
1288
+ 1
1289
+ 0
1290
+ 11
1291
+ I
1292
+ 3
1293
+ I
1294
+ 1
1295
+ I
1296
+ 1
1297
+ I
1298
+ 1
1299
+ n
1300
+ p
1301
+ 2
1302
+ M
1303
+ 1
1304
+ p
1305
+ 2
1306
+ x
1307
+ 9
1308
+ for_block
1309
+ t
1310
+ n
1311
+ x
1312
+ 5
1313
+ store
1314
+ i
1315
+ 13
1316
+ 57
1317
+ 19
1318
+ 0
1319
+ 15
1320
+ 5
1321
+ 48
1322
+ 0
1323
+ 20
1324
+ 0
1325
+ 49
1326
+ 1
1327
+ 1
1328
+ 11
1329
+ I
1330
+ 4
1331
+ I
1332
+ 1
1333
+ I
1334
+ 1
1335
+ I
1336
+ 1
1337
+ n
1338
+ p
1339
+ 2
1340
+ x
1341
+ 11
1342
+ cookiestore
1343
+ x
1344
+ 5
1345
+ store
1346
+ p
1347
+ 5
1348
+ I
1349
+ 0
1350
+ I
1351
+ 2f
1352
+ I
1353
+ 4
1354
+ I
1355
+ 30
1356
+ I
1357
+ d
1358
+ x
1359
+ 76
1360
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1361
+ p
1362
+ 1
1363
+ x
1364
+ 6
1365
+ cookie
1366
+ x
1367
+ 4
1368
+ each
1369
+ p
1370
+ 5
1371
+ I
1372
+ 0
1373
+ I
1374
+ 2e
1375
+ I
1376
+ 0
1377
+ I
1378
+ 2f
1379
+ I
1380
+ 8
1381
+ x
1382
+ 76
1383
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1384
+ p
1385
+ 1
1386
+ x
1387
+ 7
1388
+ cookies
1389
+ x
1390
+ 11
1391
+ cookiestore
1392
+ M
1393
+ 1
1394
+ n
1395
+ n
1396
+ x
1397
+ 11
1398
+ cookiestore
1399
+ i
1400
+ 21
1401
+ 5
1402
+ 48
1403
+ 0
1404
+ 7
1405
+ 1
1406
+ 64
1407
+ 49
1408
+ 2
1409
+ 1
1410
+ 19
1411
+ 0
1412
+ 15
1413
+ 5
1414
+ 48
1415
+ 3
1416
+ 20
1417
+ 0
1418
+ 49
1419
+ 4
1420
+ 1
1421
+ 11
1422
+ I
1423
+ 3
1424
+ I
1425
+ 1
1426
+ I
1427
+ 0
1428
+ I
1429
+ 0
1430
+ n
1431
+ p
1432
+ 5
1433
+ x
1434
+ 7
1435
+ options
1436
+ s
1437
+ 33
1438
+ rack-client-cookiejar.cookiestore
1439
+ x
1440
+ 2
1441
+ []
1442
+ x
1443
+ 7
1444
+ storage
1445
+ x
1446
+ 23
1447
+ resolve_cookiestore_uri
1448
+ p
1449
+ 7
1450
+ I
1451
+ 0
1452
+ I
1453
+ 34
1454
+ I
1455
+ 0
1456
+ I
1457
+ 35
1458
+ I
1459
+ c
1460
+ I
1461
+ 36
1462
+ I
1463
+ 15
1464
+ x
1465
+ 76
1466
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1467
+ p
1468
+ 1
1469
+ x
1470
+ 3
1471
+ uri
1472
+ p
1473
+ 17
1474
+ I
1475
+ 2
1476
+ I
1477
+ 5
1478
+ I
1479
+ b
1480
+ I
1481
+ 6
1482
+ I
1483
+ 14
1484
+ I
1485
+ 8
1486
+ I
1487
+ 22
1488
+ I
1489
+ e
1490
+ I
1491
+ 30
1492
+ I
1493
+ 1b
1494
+ I
1495
+ 3e
1496
+ I
1497
+ 2a
1498
+ I
1499
+ 4c
1500
+ I
1501
+ 2e
1502
+ I
1503
+ 5a
1504
+ I
1505
+ 34
1506
+ I
1507
+ 68
1508
+ x
1509
+ 76
1510
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1511
+ p
1512
+ 0
1513
+ x
1514
+ 13
1515
+ attach_method
1516
+ p
1517
+ 3
1518
+ I
1519
+ 2
1520
+ I
1521
+ 4
1522
+ I
1523
+ 1d
1524
+ x
1525
+ 76
1526
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1527
+ p
1528
+ 0
1529
+ x
1530
+ 13
1531
+ attach_method
1532
+ p
1533
+ 3
1534
+ I
1535
+ 2
1536
+ I
1537
+ 3
1538
+ I
1539
+ 1c
1540
+ x
1541
+ 76
1542
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1543
+ p
1544
+ 0
1545
+ x
1546
+ 13
1547
+ attach_method
1548
+ p
1549
+ 3
1550
+ I
1551
+ 2
1552
+ I
1553
+ 2
1554
+ I
1555
+ 1c
1556
+ x
1557
+ 76
1558
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1559
+ p
1560
+ 0
1561
+ x
1562
+ 13
1563
+ attach_method
1564
+ p
1565
+ 3
1566
+ I
1567
+ 0
1568
+ I
1569
+ 1
1570
+ I
1571
+ 1c
1572
+ x
1573
+ 76
1574
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cookie_jar/context.rb
1575
+ p
1576
+ 0