rack-client 0.3.0 → 0.3.1.pre.a

Sign up to get free protection for your applications and to get access to all the features.
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,2074 @@
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
+ 5
168
+ Cache
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
+ 5
181
+ Cache
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
+ 160
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
+ 15
346
+ 99
347
+ 7
348
+ 19
349
+ 7
350
+ 20
351
+ 65
352
+ 67
353
+ 49
354
+ 7
355
+ 0
356
+ 49
357
+ 8
358
+ 4
359
+ 15
360
+ 99
361
+ 7
362
+ 21
363
+ 7
364
+ 22
365
+ 65
366
+ 67
367
+ 49
368
+ 7
369
+ 0
370
+ 49
371
+ 8
372
+ 4
373
+ 15
374
+ 99
375
+ 7
376
+ 23
377
+ 7
378
+ 24
379
+ 65
380
+ 67
381
+ 49
382
+ 7
383
+ 0
384
+ 49
385
+ 8
386
+ 4
387
+ 15
388
+ 99
389
+ 7
390
+ 25
391
+ 7
392
+ 26
393
+ 65
394
+ 67
395
+ 49
396
+ 7
397
+ 0
398
+ 49
399
+ 8
400
+ 4
401
+ 11
402
+ I
403
+ 5
404
+ I
405
+ 0
406
+ I
407
+ 0
408
+ I
409
+ 0
410
+ n
411
+ p
412
+ 27
413
+ x
414
+ 7
415
+ Options
416
+ n
417
+ x
418
+ 7
419
+ include
420
+ x
421
+ 8
422
+ DualBand
423
+ n
424
+ x
425
+ 10
426
+ initialize
427
+ M
428
+ 1
429
+ n
430
+ n
431
+ x
432
+ 10
433
+ initialize
434
+ i
435
+ 27
436
+ 23
437
+ 1
438
+ 10
439
+ 14
440
+ 44
441
+ 43
442
+ 0
443
+ 78
444
+ 49
445
+ 1
446
+ 1
447
+ 19
448
+ 1
449
+ 15
450
+ 20
451
+ 0
452
+ 38
453
+ 2
454
+ 15
455
+ 5
456
+ 20
457
+ 1
458
+ 47
459
+ 49
460
+ 3
461
+ 1
462
+ 11
463
+ I
464
+ 4
465
+ I
466
+ 2
467
+ I
468
+ 1
469
+ I
470
+ 2
471
+ n
472
+ p
473
+ 4
474
+ x
475
+ 4
476
+ Hash
477
+ x
478
+ 16
479
+ new_from_literal
480
+ x
481
+ 4
482
+ @app
483
+ x
484
+ 18
485
+ initialize_options
486
+ p
487
+ 7
488
+ I
489
+ 0
490
+ I
491
+ 8
492
+ I
493
+ e
494
+ I
495
+ 9
496
+ I
497
+ 13
498
+ I
499
+ b
500
+ I
501
+ 1b
502
+ x
503
+ 71
504
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
505
+ p
506
+ 2
507
+ x
508
+ 3
509
+ app
510
+ x
511
+ 7
512
+ options
513
+ x
514
+ 17
515
+ method_visibility
516
+ x
517
+ 15
518
+ add_defn_method
519
+ x
520
+ 9
521
+ sync_call
522
+ M
523
+ 1
524
+ n
525
+ n
526
+ x
527
+ 9
528
+ sync_call
529
+ i
530
+ 169
531
+ 35
532
+ 0
533
+ 38
534
+ 0
535
+ 15
536
+ 45
537
+ 1
538
+ 2
539
+ 13
540
+ 71
541
+ 3
542
+ 47
543
+ 9
544
+ 34
545
+ 47
546
+ 49
547
+ 4
548
+ 0
549
+ 13
550
+ 5
551
+ 48
552
+ 5
553
+ 20
554
+ 0
555
+ 49
556
+ 6
557
+ 1
558
+ 47
559
+ 49
560
+ 7
561
+ 1
562
+ 15
563
+ 8
564
+ 45
565
+ 5
566
+ 48
567
+ 5
568
+ 20
569
+ 0
570
+ 49
571
+ 6
572
+ 1
573
+ 49
574
+ 3
575
+ 1
576
+ 19
577
+ 1
578
+ 15
579
+ 20
580
+ 1
581
+ 49
582
+ 8
583
+ 0
584
+ 9
585
+ 58
586
+ 1
587
+ 8
588
+ 66
589
+ 39
590
+ 9
591
+ 20
592
+ 0
593
+ 49
594
+ 10
595
+ 1
596
+ 11
597
+ 15
598
+ 45
599
+ 11
600
+ 12
601
+ 39
602
+ 9
603
+ 20
604
+ 1
605
+ 49
606
+ 13
607
+ 0
608
+ 19
609
+ 0
610
+ 49
611
+ 10
612
+ 1
613
+ 36
614
+ 1
615
+ 51
616
+ 3
617
+ 0
618
+ 19
619
+ 2
620
+ 15
621
+ 20
622
+ 2
623
+ 49
624
+ 14
625
+ 0
626
+ 9
627
+ 108
628
+ 5
629
+ 20
630
+ 1
631
+ 47
632
+ 49
633
+ 15
634
+ 1
635
+ 19
636
+ 2
637
+ 8
638
+ 133
639
+ 20
640
+ 2
641
+ 49
642
+ 8
643
+ 0
644
+ 9
645
+ 126
646
+ 5
647
+ 20
648
+ 1
649
+ 20
650
+ 2
651
+ 47
652
+ 49
653
+ 16
654
+ 2
655
+ 8
656
+ 133
657
+ 5
658
+ 20
659
+ 1
660
+ 47
661
+ 49
662
+ 17
663
+ 1
664
+ 15
665
+ 39
666
+ 0
667
+ 7
668
+ 18
669
+ 64
670
+ 49
671
+ 19
672
+ 1
673
+ 19
674
+ 3
675
+ 15
676
+ 20
677
+ 2
678
+ 49
679
+ 20
680
+ 0
681
+ 7
682
+ 21
683
+ 64
684
+ 20
685
+ 3
686
+ 13
687
+ 18
688
+ 3
689
+ 49
690
+ 22
691
+ 2
692
+ 15
693
+ 15
694
+ 20
695
+ 2
696
+ 49
697
+ 23
698
+ 0
699
+ 11
700
+ I
701
+ 8
702
+ I
703
+ 4
704
+ I
705
+ 1
706
+ I
707
+ 1
708
+ n
709
+ p
710
+ 24
711
+ x
712
+ 6
713
+ @trace
714
+ x
715
+ 7
716
+ Request
717
+ n
718
+ x
719
+ 3
720
+ new
721
+ x
722
+ 8
723
+ allocate
724
+ x
725
+ 7
726
+ options
727
+ x
728
+ 5
729
+ merge
730
+ x
731
+ 10
732
+ initialize
733
+ x
734
+ 10
735
+ cacheable?
736
+ x
737
+ 4
738
+ @app
739
+ x
740
+ 4
741
+ call
742
+ x
743
+ 8
744
+ Response
745
+ n
746
+ x
747
+ 3
748
+ env
749
+ x
750
+ 13
751
+ not_modified?
752
+ x
753
+ 6
754
+ lookup
755
+ x
756
+ 5
757
+ store
758
+ x
759
+ 4
760
+ pass
761
+ s
762
+ 2
763
+ ,
764
+ x
765
+ 4
766
+ join
767
+ x
768
+ 7
769
+ headers
770
+ s
771
+ 19
772
+ X-Rack-Client-Cache
773
+ x
774
+ 3
775
+ []=
776
+ x
777
+ 4
778
+ to_a
779
+ p
780
+ 27
781
+ I
782
+ 0
783
+ I
784
+ e
785
+ I
786
+ 0
787
+ I
788
+ f
789
+ I
790
+ 5
791
+ I
792
+ 10
793
+ I
794
+ 30
795
+ I
796
+ 12
797
+ I
798
+ 43
799
+ I
800
+ 14
801
+ I
802
+ 5a
803
+ I
804
+ 16
805
+ I
806
+ 61
807
+ I
808
+ 17
809
+ I
810
+ 6c
811
+ I
812
+ 18
813
+ I
814
+ 73
815
+ I
816
+ 19
817
+ I
818
+ 7e
819
+ I
820
+ 1b
821
+ I
822
+ 86
823
+ I
824
+ 1e
825
+ I
826
+ 91
827
+ I
828
+ 1f
829
+ I
830
+ a3
831
+ I
832
+ 21
833
+ I
834
+ a9
835
+ x
836
+ 71
837
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
838
+ p
839
+ 4
840
+ x
841
+ 3
842
+ env
843
+ x
844
+ 7
845
+ request
846
+ x
847
+ 8
848
+ response
849
+ x
850
+ 5
851
+ trace
852
+ x
853
+ 10
854
+ async_call
855
+ M
856
+ 1
857
+ n
858
+ n
859
+ x
860
+ 10
861
+ async_call
862
+ i
863
+ 81
864
+ 35
865
+ 0
866
+ 38
867
+ 0
868
+ 15
869
+ 45
870
+ 1
871
+ 2
872
+ 13
873
+ 71
874
+ 3
875
+ 47
876
+ 9
877
+ 34
878
+ 47
879
+ 49
880
+ 4
881
+ 0
882
+ 13
883
+ 5
884
+ 48
885
+ 5
886
+ 20
887
+ 0
888
+ 49
889
+ 6
890
+ 1
891
+ 47
892
+ 49
893
+ 7
894
+ 1
895
+ 15
896
+ 8
897
+ 45
898
+ 5
899
+ 48
900
+ 5
901
+ 20
902
+ 0
903
+ 49
904
+ 6
905
+ 1
906
+ 49
907
+ 3
908
+ 1
909
+ 19
910
+ 1
911
+ 15
912
+ 20
913
+ 1
914
+ 49
915
+ 8
916
+ 0
917
+ 9
918
+ 71
919
+ 39
920
+ 9
921
+ 20
922
+ 1
923
+ 49
924
+ 10
925
+ 0
926
+ 19
927
+ 0
928
+ 56
929
+ 11
930
+ 50
931
+ 12
932
+ 1
933
+ 8
934
+ 80
935
+ 39
936
+ 9
937
+ 20
938
+ 0
939
+ 56
940
+ 13
941
+ 50
942
+ 12
943
+ 1
944
+ 11
945
+ I
946
+ 6
947
+ I
948
+ 2
949
+ I
950
+ 1
951
+ I
952
+ 1
953
+ n
954
+ p
955
+ 14
956
+ x
957
+ 6
958
+ @trace
959
+ x
960
+ 7
961
+ Request
962
+ n
963
+ x
964
+ 3
965
+ new
966
+ x
967
+ 8
968
+ allocate
969
+ x
970
+ 7
971
+ options
972
+ x
973
+ 5
974
+ merge
975
+ x
976
+ 10
977
+ initialize
978
+ x
979
+ 10
980
+ cacheable?
981
+ x
982
+ 4
983
+ @app
984
+ x
985
+ 3
986
+ env
987
+ M
988
+ 1
989
+ p
990
+ 2
991
+ x
992
+ 9
993
+ for_block
994
+ t
995
+ n
996
+ x
997
+ 10
998
+ async_call
999
+ i
1000
+ 101
1001
+ 57
1002
+ 19
1003
+ 0
1004
+ 15
1005
+ 45
1006
+ 0
1007
+ 1
1008
+ 20
1009
+ 0
1010
+ 36
1011
+ 1
1012
+ 51
1013
+ 2
1014
+ 0
1015
+ 19
1016
+ 1
1017
+ 15
1018
+ 20
1019
+ 1
1020
+ 49
1021
+ 3
1022
+ 0
1023
+ 9
1024
+ 36
1025
+ 5
1026
+ 21
1027
+ 1
1028
+ 1
1029
+ 47
1030
+ 49
1031
+ 4
1032
+ 1
1033
+ 19
1034
+ 1
1035
+ 8
1036
+ 63
1037
+ 20
1038
+ 1
1039
+ 49
1040
+ 5
1041
+ 0
1042
+ 9
1043
+ 55
1044
+ 5
1045
+ 21
1046
+ 1
1047
+ 1
1048
+ 20
1049
+ 1
1050
+ 47
1051
+ 49
1052
+ 6
1053
+ 2
1054
+ 8
1055
+ 63
1056
+ 5
1057
+ 21
1058
+ 1
1059
+ 0
1060
+ 47
1061
+ 49
1062
+ 7
1063
+ 1
1064
+ 15
1065
+ 39
1066
+ 8
1067
+ 7
1068
+ 9
1069
+ 64
1070
+ 49
1071
+ 10
1072
+ 1
1073
+ 19
1074
+ 2
1075
+ 15
1076
+ 20
1077
+ 1
1078
+ 49
1079
+ 11
1080
+ 0
1081
+ 7
1082
+ 12
1083
+ 64
1084
+ 20
1085
+ 2
1086
+ 13
1087
+ 18
1088
+ 3
1089
+ 49
1090
+ 13
1091
+ 2
1092
+ 15
1093
+ 15
1094
+ 20
1095
+ 1
1096
+ 49
1097
+ 14
1098
+ 0
1099
+ 60
1100
+ 1
1101
+ 11
1102
+ I
1103
+ 8
1104
+ I
1105
+ 3
1106
+ I
1107
+ 1
1108
+ I
1109
+ 1
1110
+ n
1111
+ p
1112
+ 15
1113
+ x
1114
+ 8
1115
+ Response
1116
+ n
1117
+ x
1118
+ 3
1119
+ new
1120
+ x
1121
+ 13
1122
+ not_modified?
1123
+ x
1124
+ 6
1125
+ lookup
1126
+ x
1127
+ 10
1128
+ cacheable?
1129
+ x
1130
+ 5
1131
+ store
1132
+ x
1133
+ 4
1134
+ pass
1135
+ x
1136
+ 6
1137
+ @trace
1138
+ s
1139
+ 2
1140
+ ,
1141
+ x
1142
+ 4
1143
+ join
1144
+ x
1145
+ 7
1146
+ headers
1147
+ s
1148
+ 19
1149
+ X-Rack-Client-Cache
1150
+ x
1151
+ 3
1152
+ []=
1153
+ x
1154
+ 4
1155
+ to_a
1156
+ p
1157
+ 21
1158
+ I
1159
+ 0
1160
+ I
1161
+ 29
1162
+ I
1163
+ 4
1164
+ I
1165
+ 2a
1166
+ I
1167
+ 11
1168
+ I
1169
+ 2c
1170
+ I
1171
+ 18
1172
+ I
1173
+ 2d
1174
+ I
1175
+ 24
1176
+ I
1177
+ 2e
1178
+ I
1179
+ 2b
1180
+ I
1181
+ 2f
1182
+ I
1183
+ 37
1184
+ I
1185
+ 31
1186
+ I
1187
+ 40
1188
+ I
1189
+ 34
1190
+ I
1191
+ 4b
1192
+ I
1193
+ 35
1194
+ I
1195
+ 5d
1196
+ I
1197
+ 37
1198
+ I
1199
+ 65
1200
+ x
1201
+ 71
1202
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1203
+ p
1204
+ 3
1205
+ x
1206
+ 14
1207
+ response_parts
1208
+ x
1209
+ 8
1210
+ response
1211
+ x
1212
+ 5
1213
+ trace
1214
+ x
1215
+ 4
1216
+ call
1217
+ M
1218
+ 1
1219
+ p
1220
+ 2
1221
+ x
1222
+ 9
1223
+ for_block
1224
+ t
1225
+ n
1226
+ x
1227
+ 10
1228
+ async_call
1229
+ i
1230
+ 11
1231
+ 59
1232
+ 36
1233
+ 19
1234
+ 0
1235
+ 15
1236
+ 20
1237
+ 0
1238
+ 36
1239
+ 61
1240
+ 0
1241
+ 11
1242
+ I
1243
+ 3
1244
+ I
1245
+ 1
1246
+ I
1247
+ 0
1248
+ I
1249
+ 0
1250
+ I
1251
+ 0
1252
+ p
1253
+ 0
1254
+ p
1255
+ 3
1256
+ I
1257
+ 0
1258
+ I
1259
+ 3a
1260
+ I
1261
+ b
1262
+ x
1263
+ 71
1264
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1265
+ p
1266
+ 1
1267
+ x
1268
+ 8
1269
+ response
1270
+ p
1271
+ 13
1272
+ I
1273
+ 0
1274
+ I
1275
+ 24
1276
+ I
1277
+ 0
1278
+ I
1279
+ 25
1280
+ I
1281
+ 5
1282
+ I
1283
+ 26
1284
+ I
1285
+ 30
1286
+ I
1287
+ 28
1288
+ I
1289
+ 37
1290
+ I
1291
+ 29
1292
+ I
1293
+ 47
1294
+ I
1295
+ 3a
1296
+ I
1297
+ 51
1298
+ x
1299
+ 71
1300
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1301
+ p
1302
+ 2
1303
+ x
1304
+ 3
1305
+ env
1306
+ x
1307
+ 7
1308
+ request
1309
+ x
1310
+ 6
1311
+ lookup
1312
+ M
1313
+ 1
1314
+ n
1315
+ n
1316
+ x
1317
+ 6
1318
+ lookup
1319
+ i
1320
+ 87
1321
+ 26
1322
+ 93
1323
+ 0
1324
+ 15
1325
+ 29
1326
+ 34
1327
+ 0
1328
+ 5
1329
+ 48
1330
+ 0
1331
+ 20
1332
+ 0
1333
+ 5
1334
+ 48
1335
+ 1
1336
+ 49
1337
+ 2
1338
+ 2
1339
+ 19
1340
+ 1
1341
+ 15
1342
+ 5
1343
+ 7
1344
+ 3
1345
+ 47
1346
+ 49
1347
+ 4
1348
+ 1
1349
+ 15
1350
+ 20
1351
+ 1
1352
+ 30
1353
+ 8
1354
+ 83
1355
+ 26
1356
+ 93
1357
+ 1
1358
+ 15
1359
+ 24
1360
+ 13
1361
+ 45
1362
+ 5
1363
+ 6
1364
+ 12
1365
+ 49
1366
+ 7
1367
+ 1
1368
+ 10
1369
+ 51
1370
+ 8
1371
+ 78
1372
+ 15
1373
+ 24
1374
+ 19
1375
+ 2
1376
+ 15
1377
+ 5
1378
+ 20
1379
+ 2
1380
+ 47
1381
+ 49
1382
+ 8
1383
+ 1
1384
+ 15
1385
+ 5
1386
+ 20
1387
+ 0
1388
+ 47
1389
+ 49
1390
+ 9
1391
+ 1
1392
+ 92
1393
+ 0
1394
+ 27
1395
+ 11
1396
+ 25
1397
+ 8
1398
+ 83
1399
+ 15
1400
+ 92
1401
+ 1
1402
+ 27
1403
+ 34
1404
+ 92
1405
+ 0
1406
+ 27
1407
+ 11
1408
+ I
1409
+ 8
1410
+ I
1411
+ 3
1412
+ I
1413
+ 1
1414
+ I
1415
+ 1
1416
+ n
1417
+ p
1418
+ 10
1419
+ x
1420
+ 9
1421
+ metastore
1422
+ x
1423
+ 11
1424
+ entitystore
1425
+ x
1426
+ 6
1427
+ lookup
1428
+ x
1429
+ 5
1430
+ fresh
1431
+ x
1432
+ 6
1433
+ record
1434
+ x
1435
+ 9
1436
+ Exception
1437
+ n
1438
+ x
1439
+ 3
1440
+ ===
1441
+ x
1442
+ 9
1443
+ log_error
1444
+ x
1445
+ 4
1446
+ pass
1447
+ p
1448
+ 17
1449
+ I
1450
+ 0
1451
+ I
1452
+ 3e
1453
+ I
1454
+ 0
1455
+ I
1456
+ 40
1457
+ I
1458
+ 15
1459
+ I
1460
+ 41
1461
+ I
1462
+ 1d
1463
+ I
1464
+ 42
1465
+ I
1466
+ 27
1467
+ I
1468
+ 43
1469
+ I
1470
+ 34
1471
+ I
1472
+ 46
1473
+ I
1474
+ 38
1475
+ I
1476
+ 44
1477
+ I
1478
+ 40
1479
+ I
1480
+ 45
1481
+ I
1482
+ 57
1483
+ x
1484
+ 71
1485
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1486
+ p
1487
+ 3
1488
+ x
1489
+ 7
1490
+ request
1491
+ x
1492
+ 5
1493
+ entry
1494
+ x
1495
+ 1
1496
+ e
1497
+ x
1498
+ 5
1499
+ store
1500
+ M
1501
+ 1
1502
+ n
1503
+ n
1504
+ x
1505
+ 5
1506
+ store
1507
+ i
1508
+ 22
1509
+ 5
1510
+ 48
1511
+ 0
1512
+ 20
1513
+ 0
1514
+ 20
1515
+ 1
1516
+ 5
1517
+ 48
1518
+ 1
1519
+ 49
1520
+ 2
1521
+ 3
1522
+ 15
1523
+ 5
1524
+ 7
1525
+ 2
1526
+ 47
1527
+ 49
1528
+ 3
1529
+ 1
1530
+ 11
1531
+ I
1532
+ 6
1533
+ I
1534
+ 2
1535
+ I
1536
+ 2
1537
+ I
1538
+ 2
1539
+ n
1540
+ p
1541
+ 4
1542
+ x
1543
+ 9
1544
+ metastore
1545
+ x
1546
+ 11
1547
+ entitystore
1548
+ x
1549
+ 5
1550
+ store
1551
+ x
1552
+ 6
1553
+ record
1554
+ p
1555
+ 7
1556
+ I
1557
+ 0
1558
+ I
1559
+ 49
1560
+ I
1561
+ 0
1562
+ I
1563
+ 4a
1564
+ I
1565
+ e
1566
+ I
1567
+ 4b
1568
+ I
1569
+ 16
1570
+ x
1571
+ 71
1572
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1573
+ p
1574
+ 2
1575
+ x
1576
+ 7
1577
+ request
1578
+ x
1579
+ 8
1580
+ response
1581
+ x
1582
+ 9
1583
+ metastore
1584
+ M
1585
+ 1
1586
+ n
1587
+ n
1588
+ x
1589
+ 9
1590
+ metastore
1591
+ i
1592
+ 21
1593
+ 5
1594
+ 48
1595
+ 0
1596
+ 7
1597
+ 1
1598
+ 64
1599
+ 49
1600
+ 2
1601
+ 1
1602
+ 19
1603
+ 0
1604
+ 15
1605
+ 5
1606
+ 48
1607
+ 3
1608
+ 20
1609
+ 0
1610
+ 49
1611
+ 4
1612
+ 1
1613
+ 11
1614
+ I
1615
+ 3
1616
+ I
1617
+ 1
1618
+ I
1619
+ 0
1620
+ I
1621
+ 0
1622
+ n
1623
+ p
1624
+ 5
1625
+ x
1626
+ 7
1627
+ options
1628
+ s
1629
+ 27
1630
+ rack-client-cache.metastore
1631
+ x
1632
+ 2
1633
+ []
1634
+ x
1635
+ 7
1636
+ storage
1637
+ x
1638
+ 21
1639
+ resolve_metastore_uri
1640
+ p
1641
+ 7
1642
+ I
1643
+ 0
1644
+ I
1645
+ 4e
1646
+ I
1647
+ 0
1648
+ I
1649
+ 4f
1650
+ I
1651
+ c
1652
+ I
1653
+ 50
1654
+ I
1655
+ 15
1656
+ x
1657
+ 71
1658
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1659
+ p
1660
+ 1
1661
+ x
1662
+ 3
1663
+ uri
1664
+ x
1665
+ 11
1666
+ entitystore
1667
+ M
1668
+ 1
1669
+ n
1670
+ n
1671
+ x
1672
+ 11
1673
+ entitystore
1674
+ i
1675
+ 21
1676
+ 5
1677
+ 48
1678
+ 0
1679
+ 7
1680
+ 1
1681
+ 64
1682
+ 49
1683
+ 2
1684
+ 1
1685
+ 19
1686
+ 0
1687
+ 15
1688
+ 5
1689
+ 48
1690
+ 3
1691
+ 20
1692
+ 0
1693
+ 49
1694
+ 4
1695
+ 1
1696
+ 11
1697
+ I
1698
+ 3
1699
+ I
1700
+ 1
1701
+ I
1702
+ 0
1703
+ I
1704
+ 0
1705
+ n
1706
+ p
1707
+ 5
1708
+ x
1709
+ 7
1710
+ options
1711
+ s
1712
+ 29
1713
+ rack-client-cache.entitystore
1714
+ x
1715
+ 2
1716
+ []
1717
+ x
1718
+ 7
1719
+ storage
1720
+ x
1721
+ 23
1722
+ resolve_entitystore_uri
1723
+ p
1724
+ 7
1725
+ I
1726
+ 0
1727
+ I
1728
+ 53
1729
+ I
1730
+ 0
1731
+ I
1732
+ 54
1733
+ I
1734
+ c
1735
+ I
1736
+ 55
1737
+ I
1738
+ 15
1739
+ x
1740
+ 71
1741
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1742
+ p
1743
+ 1
1744
+ x
1745
+ 3
1746
+ uri
1747
+ x
1748
+ 6
1749
+ record
1750
+ M
1751
+ 1
1752
+ n
1753
+ n
1754
+ x
1755
+ 6
1756
+ record
1757
+ i
1758
+ 8
1759
+ 39
1760
+ 0
1761
+ 20
1762
+ 0
1763
+ 49
1764
+ 1
1765
+ 1
1766
+ 11
1767
+ I
1768
+ 3
1769
+ I
1770
+ 1
1771
+ I
1772
+ 1
1773
+ I
1774
+ 1
1775
+ n
1776
+ p
1777
+ 2
1778
+ x
1779
+ 6
1780
+ @trace
1781
+ x
1782
+ 2
1783
+ <<
1784
+ p
1785
+ 5
1786
+ I
1787
+ 0
1788
+ I
1789
+ 59
1790
+ I
1791
+ 0
1792
+ I
1793
+ 5a
1794
+ I
1795
+ 8
1796
+ x
1797
+ 71
1798
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1799
+ p
1800
+ 1
1801
+ x
1802
+ 5
1803
+ event
1804
+ x
1805
+ 4
1806
+ pass
1807
+ M
1808
+ 1
1809
+ n
1810
+ n
1811
+ x
1812
+ 4
1813
+ pass
1814
+ i
1815
+ 16
1816
+ 5
1817
+ 7
1818
+ 0
1819
+ 47
1820
+ 49
1821
+ 1
1822
+ 1
1823
+ 15
1824
+ 5
1825
+ 20
1826
+ 0
1827
+ 47
1828
+ 49
1829
+ 2
1830
+ 1
1831
+ 11
1832
+ I
1833
+ 3
1834
+ I
1835
+ 1
1836
+ I
1837
+ 1
1838
+ I
1839
+ 1
1840
+ n
1841
+ p
1842
+ 3
1843
+ x
1844
+ 4
1845
+ pass
1846
+ x
1847
+ 6
1848
+ record
1849
+ x
1850
+ 7
1851
+ forward
1852
+ p
1853
+ 7
1854
+ I
1855
+ 0
1856
+ I
1857
+ 5d
1858
+ I
1859
+ 0
1860
+ I
1861
+ 5e
1862
+ I
1863
+ 8
1864
+ I
1865
+ 5f
1866
+ I
1867
+ 10
1868
+ x
1869
+ 71
1870
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1871
+ p
1872
+ 1
1873
+ x
1874
+ 7
1875
+ request
1876
+ x
1877
+ 7
1878
+ forward
1879
+ M
1880
+ 1
1881
+ n
1882
+ n
1883
+ x
1884
+ 7
1885
+ forward
1886
+ i
1887
+ 19
1888
+ 45
1889
+ 0
1890
+ 1
1891
+ 39
1892
+ 2
1893
+ 20
1894
+ 0
1895
+ 49
1896
+ 3
1897
+ 0
1898
+ 49
1899
+ 4
1900
+ 1
1901
+ 36
1902
+ 1
1903
+ 51
1904
+ 5
1905
+ 0
1906
+ 11
1907
+ I
1908
+ 4
1909
+ I
1910
+ 1
1911
+ I
1912
+ 1
1913
+ I
1914
+ 1
1915
+ n
1916
+ p
1917
+ 6
1918
+ x
1919
+ 8
1920
+ Response
1921
+ n
1922
+ x
1923
+ 4
1924
+ @app
1925
+ x
1926
+ 3
1927
+ env
1928
+ x
1929
+ 4
1930
+ call
1931
+ x
1932
+ 3
1933
+ new
1934
+ p
1935
+ 5
1936
+ I
1937
+ 0
1938
+ I
1939
+ 62
1940
+ I
1941
+ 0
1942
+ I
1943
+ 63
1944
+ I
1945
+ 13
1946
+ x
1947
+ 71
1948
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
1949
+ p
1950
+ 1
1951
+ x
1952
+ 7
1953
+ request
1954
+ p
1955
+ 25
1956
+ I
1957
+ 2
1958
+ I
1959
+ 5
1960
+ I
1961
+ b
1962
+ I
1963
+ 6
1964
+ I
1965
+ 14
1966
+ I
1967
+ 8
1968
+ I
1969
+ 22
1970
+ I
1971
+ e
1972
+ I
1973
+ 30
1974
+ I
1975
+ 24
1976
+ I
1977
+ 3e
1978
+ I
1979
+ 3e
1980
+ I
1981
+ 4c
1982
+ I
1983
+ 49
1984
+ I
1985
+ 5a
1986
+ I
1987
+ 4e
1988
+ I
1989
+ 68
1990
+ I
1991
+ 53
1992
+ I
1993
+ 76
1994
+ I
1995
+ 59
1996
+ I
1997
+ 84
1998
+ I
1999
+ 5d
2000
+ I
2001
+ 92
2002
+ I
2003
+ 62
2004
+ I
2005
+ a0
2006
+ x
2007
+ 71
2008
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
2009
+ p
2010
+ 0
2011
+ x
2012
+ 13
2013
+ attach_method
2014
+ p
2015
+ 3
2016
+ I
2017
+ 2
2018
+ I
2019
+ 4
2020
+ I
2021
+ 1d
2022
+ x
2023
+ 71
2024
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
2025
+ p
2026
+ 0
2027
+ x
2028
+ 13
2029
+ attach_method
2030
+ p
2031
+ 3
2032
+ I
2033
+ 2
2034
+ I
2035
+ 3
2036
+ I
2037
+ 1c
2038
+ x
2039
+ 71
2040
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
2041
+ p
2042
+ 0
2043
+ x
2044
+ 13
2045
+ attach_method
2046
+ p
2047
+ 3
2048
+ I
2049
+ 2
2050
+ I
2051
+ 2
2052
+ I
2053
+ 1c
2054
+ x
2055
+ 71
2056
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
2057
+ p
2058
+ 0
2059
+ x
2060
+ 13
2061
+ attach_method
2062
+ p
2063
+ 3
2064
+ I
2065
+ 0
2066
+ I
2067
+ 1
2068
+ I
2069
+ 1c
2070
+ x
2071
+ 71
2072
+ /Users/ben/code/rack-client/lib/rack/client/middleware/cache/context.rb
2073
+ p
2074
+ 0