actionpack 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionpack might be problematic. Click here for more details.

Files changed (125) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/abstract_controller.rbc +541 -0
  3. data/lib/abstract_controller/asset_paths.rbc +293 -0
  4. data/lib/abstract_controller/base.rbc +2155 -0
  5. data/lib/abstract_controller/callbacks.rb +1 -1
  6. data/lib/abstract_controller/callbacks.rbc +1562 -0
  7. data/lib/abstract_controller/collector.rbc +686 -0
  8. data/lib/abstract_controller/helpers.rbc +2220 -0
  9. data/lib/abstract_controller/layouts.rbc +2981 -0
  10. data/lib/abstract_controller/logger.rbc +333 -0
  11. data/lib/abstract_controller/rendering.rbc +3072 -0
  12. data/lib/abstract_controller/translation.rbc +383 -0
  13. data/lib/abstract_controller/view_paths.rbc +1292 -0
  14. data/lib/action_controller.rbc +1199 -0
  15. data/lib/action_controller/base.rbc +996 -0
  16. data/lib/action_controller/caching.rbc +1263 -0
  17. data/lib/action_controller/caching/actions.rbc +2339 -0
  18. data/lib/action_controller/caching/fragments.rbc +1464 -0
  19. data/lib/action_controller/caching/pages.rbc +2579 -0
  20. data/lib/action_controller/caching/sweeping.rbc +1743 -0
  21. data/lib/action_controller/deprecated.rbc +136 -0
  22. data/lib/action_controller/deprecated/base.rbc +3156 -0
  23. data/lib/action_controller/log_subscriber.rbc +1424 -0
  24. data/lib/action_controller/metal.rbc +3137 -0
  25. data/lib/action_controller/metal/compatibility.rbc +1570 -0
  26. data/lib/action_controller/metal/conditional_get.rbc +963 -0
  27. data/lib/action_controller/metal/cookies.rbc +381 -0
  28. data/lib/action_controller/metal/exceptions.rbc +856 -0
  29. data/lib/action_controller/metal/flash.rbc +632 -0
  30. data/lib/action_controller/metal/head.rbc +744 -0
  31. data/lib/action_controller/metal/helpers.rbc +1409 -0
  32. data/lib/action_controller/metal/hide_actions.rbc +1192 -0
  33. data/lib/action_controller/metal/http_authentication.rbc +6009 -0
  34. data/lib/action_controller/metal/implicit_render.rb +10 -8
  35. data/lib/action_controller/metal/implicit_render.rbc +495 -0
  36. data/lib/action_controller/metal/instrumentation.rbc +1916 -0
  37. data/lib/action_controller/metal/mime_responds.rbc +2827 -0
  38. data/lib/action_controller/metal/rack_delegation.rbc +683 -0
  39. data/lib/action_controller/metal/redirecting.rbc +1306 -0
  40. data/lib/action_controller/metal/renderers.rbc +2378 -0
  41. data/lib/action_controller/metal/rendering.rbc +1197 -0
  42. data/lib/action_controller/metal/request_forgery_protection.rbc +1272 -0
  43. data/lib/action_controller/metal/rescue.rbc +548 -0
  44. data/lib/action_controller/metal/responder.rbc +2566 -0
  45. data/lib/action_controller/metal/session_management.rbc +225 -0
  46. data/lib/action_controller/metal/streaming.rbc +1586 -0
  47. data/lib/action_controller/metal/url_for.rbc +710 -0
  48. data/lib/action_controller/railtie.rbc +1940 -0
  49. data/lib/action_controller/record_identifier.rbc +777 -0
  50. data/lib/action_controller/vendor/html-scanner.rbc +480 -0
  51. data/lib/action_dispatch.rbc +1370 -0
  52. data/lib/action_dispatch/http/cache.rbc +2914 -0
  53. data/lib/action_dispatch/http/filter_parameters.rbc +1291 -0
  54. data/lib/action_dispatch/http/headers.rbc +706 -0
  55. data/lib/action_dispatch/http/mime_negotiation.rbc +1444 -0
  56. data/lib/action_dispatch/http/mime_type.rbc +4946 -0
  57. data/lib/action_dispatch/http/mime_types.rbc +520 -0
  58. data/lib/action_dispatch/http/parameters.rbc +1497 -0
  59. data/lib/action_dispatch/http/request.rbc +4880 -0
  60. data/lib/action_dispatch/http/response.rbc +3276 -0
  61. data/lib/action_dispatch/http/upload.rbc +1067 -0
  62. data/lib/action_dispatch/http/url.rbc +2115 -0
  63. data/lib/action_dispatch/middleware/best_standards_support.rbc +502 -0
  64. data/lib/action_dispatch/middleware/callbacks.rbc +972 -0
  65. data/lib/action_dispatch/middleware/cookies.rbc +4350 -0
  66. data/lib/action_dispatch/middleware/flash.rbc +3071 -0
  67. data/lib/action_dispatch/middleware/head.rbc +461 -0
  68. data/lib/action_dispatch/middleware/params_parser.rbc +1773 -0
  69. data/lib/action_dispatch/middleware/remote_ip.rbc +1400 -0
  70. data/lib/action_dispatch/middleware/session/abstract_store.rbc +5227 -0
  71. data/lib/action_dispatch/middleware/session/cookie_store.rbc +1345 -0
  72. data/lib/action_dispatch/middleware/show_exceptions.rbc +3627 -0
  73. data/lib/action_dispatch/middleware/stack.rbc +2159 -0
  74. data/lib/action_dispatch/middleware/static.rbc +987 -0
  75. data/lib/action_dispatch/railtie.rbc +383 -0
  76. data/lib/action_dispatch/routing.rbc +520 -0
  77. data/lib/action_dispatch/routing/deprecated_mapper.rbc +13190 -0
  78. data/lib/action_dispatch/routing/mapper.rbc +22006 -0
  79. data/lib/action_dispatch/routing/polymorphic_routes.rbc +2083 -0
  80. data/lib/action_dispatch/routing/route.rbc +1797 -0
  81. data/lib/action_dispatch/routing/route_set.rbc +11847 -0
  82. data/lib/action_dispatch/routing/url_for.rbc +735 -0
  83. data/lib/action_pack.rbc +53 -0
  84. data/lib/action_pack/version.rb +2 -2
  85. data/lib/action_pack/version.rbc +295 -0
  86. data/lib/action_view.rbc +864 -0
  87. data/lib/action_view/base.rbc +2257 -0
  88. data/lib/action_view/context.rbc +327 -0
  89. data/lib/action_view/helpers.rbc +1002 -0
  90. data/lib/action_view/helpers/active_model_helper.rbc +1680 -0
  91. data/lib/action_view/helpers/asset_tag_helper.rbc +8922 -0
  92. data/lib/action_view/helpers/atom_feed_helper.rbc +2872 -0
  93. data/lib/action_view/helpers/cache_helper.rbc +660 -0
  94. data/lib/action_view/helpers/capture_helper.rbc +1242 -0
  95. data/lib/action_view/helpers/csrf_helper.rbc +411 -0
  96. data/lib/action_view/helpers/date_helper.rbc +12404 -0
  97. data/lib/action_view/helpers/debug_helper.rbc +499 -0
  98. data/lib/action_view/helpers/form_helper.rbc +14903 -0
  99. data/lib/action_view/helpers/form_options_helper.rbc +6367 -0
  100. data/lib/action_view/helpers/form_tag_helper.rbc +5961 -0
  101. data/lib/action_view/helpers/javascript_helper.rbc +1611 -0
  102. data/lib/action_view/helpers/number_helper.rbc +6601 -0
  103. data/lib/action_view/helpers/prototype_helper.rbc +11921 -0
  104. data/lib/action_view/helpers/raw_output_helper.rbc +335 -0
  105. data/lib/action_view/helpers/record_tag_helper.rbc +684 -0
  106. data/lib/action_view/helpers/sanitize_helper.rbc +2571 -0
  107. data/lib/action_view/helpers/scriptaculous_helper.rbc +3434 -0
  108. data/lib/action_view/helpers/tag_helper.rbc +1856 -0
  109. data/lib/action_view/helpers/text_helper.rbc +5861 -0
  110. data/lib/action_view/helpers/translation_helper.rbc +1263 -0
  111. data/lib/action_view/helpers/url_helper.rbc +5487 -0
  112. data/lib/action_view/log_subscriber.rbc +732 -0
  113. data/lib/action_view/paths.rbc +1111 -0
  114. data/lib/action_view/railtie.rbc +1043 -0
  115. data/lib/action_view/render/layouts.rbc +943 -0
  116. data/lib/action_view/render/partials.rbc +3615 -0
  117. data/lib/action_view/render/rendering.rbc +1516 -0
  118. data/lib/action_view/template.rbc +3357 -0
  119. data/lib/action_view/template/handler.rbc +1112 -0
  120. data/lib/action_view/template/handlers.rbc +1177 -0
  121. data/lib/action_view/template/handlers/builder.rbc +458 -0
  122. data/lib/action_view/template/handlers/erb.rbc +2483 -0
  123. data/lib/action_view/template/handlers/rjs.rbc +490 -0
  124. data/lib/action_view/template/resolver.rbc +3587 -0
  125. metadata +144 -16
@@ -0,0 +1,2159 @@
1
+ !RBIX
2
+ 12079494195756429234
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
+ 32
63
+ active_support/inflector/methods
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 14
69
+ ActionDispatch
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
+ 14
82
+ ActionDispatch
83
+ i
84
+ 31
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 45
91
+ 1
92
+ 2
93
+ 65
94
+ 49
95
+ 3
96
+ 3
97
+ 13
98
+ 99
99
+ 12
100
+ 7
101
+ 4
102
+ 12
103
+ 7
104
+ 5
105
+ 12
106
+ 65
107
+ 12
108
+ 49
109
+ 6
110
+ 4
111
+ 15
112
+ 49
113
+ 4
114
+ 0
115
+ 11
116
+ I
117
+ 6
118
+ I
119
+ 0
120
+ I
121
+ 0
122
+ I
123
+ 0
124
+ n
125
+ p
126
+ 7
127
+ x
128
+ 15
129
+ MiddlewareStack
130
+ x
131
+ 5
132
+ Array
133
+ n
134
+ x
135
+ 10
136
+ open_class
137
+ x
138
+ 14
139
+ __class_init__
140
+ M
141
+ 1
142
+ n
143
+ n
144
+ x
145
+ 15
146
+ MiddlewareStack
147
+ i
148
+ 155
149
+ 5
150
+ 66
151
+ 99
152
+ 7
153
+ 0
154
+ 1
155
+ 65
156
+ 49
157
+ 1
158
+ 3
159
+ 13
160
+ 99
161
+ 12
162
+ 7
163
+ 2
164
+ 12
165
+ 7
166
+ 3
167
+ 12
168
+ 65
169
+ 12
170
+ 49
171
+ 4
172
+ 4
173
+ 15
174
+ 49
175
+ 2
176
+ 0
177
+ 15
178
+ 99
179
+ 7
180
+ 5
181
+ 7
182
+ 6
183
+ 65
184
+ 67
185
+ 49
186
+ 7
187
+ 0
188
+ 49
189
+ 8
190
+ 4
191
+ 15
192
+ 99
193
+ 7
194
+ 9
195
+ 7
196
+ 10
197
+ 65
198
+ 67
199
+ 49
200
+ 7
201
+ 0
202
+ 49
203
+ 8
204
+ 4
205
+ 15
206
+ 5
207
+ 7
208
+ 11
209
+ 7
210
+ 9
211
+ 47
212
+ 49
213
+ 12
214
+ 2
215
+ 15
216
+ 99
217
+ 7
218
+ 13
219
+ 7
220
+ 14
221
+ 65
222
+ 67
223
+ 49
224
+ 7
225
+ 0
226
+ 49
227
+ 8
228
+ 4
229
+ 15
230
+ 99
231
+ 7
232
+ 15
233
+ 7
234
+ 16
235
+ 65
236
+ 67
237
+ 49
238
+ 7
239
+ 0
240
+ 49
241
+ 8
242
+ 4
243
+ 15
244
+ 99
245
+ 7
246
+ 17
247
+ 7
248
+ 18
249
+ 65
250
+ 67
251
+ 49
252
+ 7
253
+ 0
254
+ 49
255
+ 8
256
+ 4
257
+ 15
258
+ 99
259
+ 7
260
+ 19
261
+ 7
262
+ 20
263
+ 65
264
+ 67
265
+ 49
266
+ 7
267
+ 0
268
+ 49
269
+ 8
270
+ 4
271
+ 15
272
+ 99
273
+ 7
274
+ 21
275
+ 7
276
+ 22
277
+ 65
278
+ 67
279
+ 49
280
+ 7
281
+ 0
282
+ 49
283
+ 8
284
+ 4
285
+ 15
286
+ 5
287
+ 48
288
+ 23
289
+ 15
290
+ 99
291
+ 7
292
+ 24
293
+ 7
294
+ 25
295
+ 65
296
+ 67
297
+ 49
298
+ 7
299
+ 0
300
+ 49
301
+ 8
302
+ 4
303
+ 11
304
+ I
305
+ 6
306
+ I
307
+ 0
308
+ I
309
+ 0
310
+ I
311
+ 0
312
+ n
313
+ p
314
+ 26
315
+ x
316
+ 10
317
+ Middleware
318
+ x
319
+ 10
320
+ open_class
321
+ x
322
+ 14
323
+ __class_init__
324
+ M
325
+ 1
326
+ n
327
+ n
328
+ x
329
+ 10
330
+ Middleware
331
+ i
332
+ 100
333
+ 5
334
+ 66
335
+ 5
336
+ 7
337
+ 0
338
+ 7
339
+ 1
340
+ 47
341
+ 49
342
+ 2
343
+ 2
344
+ 15
345
+ 99
346
+ 7
347
+ 3
348
+ 7
349
+ 4
350
+ 65
351
+ 67
352
+ 49
353
+ 5
354
+ 0
355
+ 49
356
+ 6
357
+ 4
358
+ 15
359
+ 99
360
+ 7
361
+ 7
362
+ 7
363
+ 8
364
+ 65
365
+ 67
366
+ 49
367
+ 5
368
+ 0
369
+ 49
370
+ 6
371
+ 4
372
+ 15
373
+ 99
374
+ 7
375
+ 9
376
+ 7
377
+ 10
378
+ 65
379
+ 67
380
+ 49
381
+ 5
382
+ 0
383
+ 49
384
+ 6
385
+ 4
386
+ 15
387
+ 99
388
+ 7
389
+ 11
390
+ 7
391
+ 12
392
+ 65
393
+ 67
394
+ 49
395
+ 5
396
+ 0
397
+ 49
398
+ 6
399
+ 4
400
+ 15
401
+ 99
402
+ 7
403
+ 13
404
+ 7
405
+ 14
406
+ 65
407
+ 67
408
+ 49
409
+ 5
410
+ 0
411
+ 49
412
+ 6
413
+ 4
414
+ 15
415
+ 5
416
+ 48
417
+ 15
418
+ 15
419
+ 99
420
+ 7
421
+ 16
422
+ 7
423
+ 17
424
+ 65
425
+ 67
426
+ 49
427
+ 5
428
+ 0
429
+ 49
430
+ 6
431
+ 4
432
+ 11
433
+ I
434
+ 5
435
+ I
436
+ 0
437
+ I
438
+ 0
439
+ I
440
+ 0
441
+ n
442
+ p
443
+ 18
444
+ x
445
+ 4
446
+ args
447
+ x
448
+ 5
449
+ block
450
+ x
451
+ 11
452
+ attr_reader
453
+ x
454
+ 10
455
+ initialize
456
+ M
457
+ 1
458
+ n
459
+ n
460
+ x
461
+ 10
462
+ initialize
463
+ i
464
+ 53
465
+ 95
466
+ 19
467
+ 2
468
+ 15
469
+ 45
470
+ 0
471
+ 1
472
+ 43
473
+ 2
474
+ 43
475
+ 3
476
+ 13
477
+ 71
478
+ 4
479
+ 47
480
+ 9
481
+ 31
482
+ 47
483
+ 49
484
+ 5
485
+ 0
486
+ 13
487
+ 20
488
+ 0
489
+ 47
490
+ 49
491
+ 6
492
+ 1
493
+ 15
494
+ 8
495
+ 36
496
+ 20
497
+ 0
498
+ 49
499
+ 4
500
+ 1
501
+ 38
502
+ 7
503
+ 15
504
+ 20
505
+ 1
506
+ 20
507
+ 2
508
+ 17
509
+ 2
510
+ 38
511
+ 8
512
+ 15
513
+ 38
514
+ 9
515
+ 15
516
+ 2
517
+ 11
518
+ I
519
+ 6
520
+ I
521
+ 3
522
+ I
523
+ 1
524
+ I
525
+ 1
526
+ I
527
+ 1
528
+ p
529
+ 10
530
+ x
531
+ 13
532
+ ActiveSupport
533
+ n
534
+ x
535
+ 12
536
+ Dependencies
537
+ x
538
+ 9
539
+ Reference
540
+ x
541
+ 3
542
+ new
543
+ x
544
+ 8
545
+ allocate
546
+ x
547
+ 10
548
+ initialize
549
+ x
550
+ 4
551
+ @ref
552
+ x
553
+ 5
554
+ @args
555
+ x
556
+ 6
557
+ @block
558
+ p
559
+ 7
560
+ I
561
+ -1
562
+ I
563
+ 8
564
+ I
565
+ 4
566
+ I
567
+ 9
568
+ I
569
+ 27
570
+ I
571
+ a
572
+ I
573
+ 35
574
+ x
575
+ 87
576
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
577
+ p
578
+ 3
579
+ x
580
+ 13
581
+ klass_or_name
582
+ x
583
+ 4
584
+ args
585
+ x
586
+ 5
587
+ block
588
+ x
589
+ 17
590
+ method_visibility
591
+ x
592
+ 15
593
+ add_defn_method
594
+ x
595
+ 5
596
+ klass
597
+ M
598
+ 1
599
+ n
600
+ n
601
+ x
602
+ 5
603
+ klass
604
+ i
605
+ 6
606
+ 39
607
+ 0
608
+ 49
609
+ 1
610
+ 0
611
+ 11
612
+ I
613
+ 1
614
+ I
615
+ 0
616
+ I
617
+ 0
618
+ I
619
+ 0
620
+ n
621
+ p
622
+ 2
623
+ x
624
+ 4
625
+ @ref
626
+ x
627
+ 3
628
+ get
629
+ p
630
+ 5
631
+ I
632
+ -1
633
+ I
634
+ d
635
+ I
636
+ 0
637
+ I
638
+ e
639
+ I
640
+ 6
641
+ x
642
+ 87
643
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
644
+ p
645
+ 0
646
+ x
647
+ 2
648
+ ==
649
+ M
650
+ 1
651
+ n
652
+ n
653
+ x
654
+ 2
655
+ ==
656
+ i
657
+ 66
658
+ 20
659
+ 0
660
+ 13
661
+ 45
662
+ 0
663
+ 1
664
+ 12
665
+ 49
666
+ 2
667
+ 1
668
+ 9
669
+ 25
670
+ 15
671
+ 5
672
+ 48
673
+ 3
674
+ 20
675
+ 0
676
+ 49
677
+ 3
678
+ 0
679
+ 83
680
+ 4
681
+ 8
682
+ 65
683
+ 13
684
+ 45
685
+ 5
686
+ 6
687
+ 12
688
+ 49
689
+ 2
690
+ 1
691
+ 9
692
+ 45
693
+ 15
694
+ 5
695
+ 48
696
+ 3
697
+ 20
698
+ 0
699
+ 83
700
+ 4
701
+ 8
702
+ 65
703
+ 15
704
+ 5
705
+ 39
706
+ 7
707
+ 49
708
+ 8
709
+ 0
710
+ 47
711
+ 49
712
+ 9
713
+ 1
714
+ 5
715
+ 20
716
+ 0
717
+ 47
718
+ 49
719
+ 9
720
+ 1
721
+ 83
722
+ 4
723
+ 11
724
+ I
725
+ 4
726
+ I
727
+ 1
728
+ I
729
+ 1
730
+ I
731
+ 1
732
+ n
733
+ p
734
+ 10
735
+ x
736
+ 10
737
+ Middleware
738
+ n
739
+ x
740
+ 3
741
+ ===
742
+ x
743
+ 5
744
+ klass
745
+ x
746
+ 2
747
+ ==
748
+ x
749
+ 5
750
+ Class
751
+ n
752
+ x
753
+ 4
754
+ @ref
755
+ x
756
+ 4
757
+ name
758
+ x
759
+ 9
760
+ normalize
761
+ p
762
+ 15
763
+ I
764
+ -1
765
+ I
766
+ 11
767
+ I
768
+ 0
769
+ I
770
+ 12
771
+ I
772
+ 2
773
+ I
774
+ 13
775
+ I
776
+ d
777
+ I
778
+ 14
779
+ I
780
+ 19
781
+ I
782
+ 15
783
+ I
784
+ 24
785
+ I
786
+ 16
787
+ I
788
+ 2e
789
+ I
790
+ 18
791
+ I
792
+ 42
793
+ x
794
+ 87
795
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
796
+ p
797
+ 1
798
+ x
799
+ 10
800
+ middleware
801
+ x
802
+ 7
803
+ inspect
804
+ M
805
+ 1
806
+ n
807
+ n
808
+ x
809
+ 7
810
+ inspect
811
+ i
812
+ 7
813
+ 5
814
+ 48
815
+ 0
816
+ 49
817
+ 1
818
+ 0
819
+ 11
820
+ I
821
+ 1
822
+ I
823
+ 0
824
+ I
825
+ 0
826
+ I
827
+ 0
828
+ n
829
+ p
830
+ 2
831
+ x
832
+ 5
833
+ klass
834
+ x
835
+ 4
836
+ to_s
837
+ p
838
+ 5
839
+ I
840
+ -1
841
+ I
842
+ 1c
843
+ I
844
+ 0
845
+ I
846
+ 1d
847
+ I
848
+ 7
849
+ x
850
+ 87
851
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
852
+ p
853
+ 0
854
+ x
855
+ 5
856
+ build
857
+ M
858
+ 1
859
+ n
860
+ n
861
+ x
862
+ 5
863
+ build
864
+ i
865
+ 27
866
+ 5
867
+ 48
868
+ 0
869
+ 20
870
+ 0
871
+ 5
872
+ 48
873
+ 1
874
+ 36
875
+ 5
876
+ 48
877
+ 2
878
+ 13
879
+ 70
880
+ 10
881
+ 23
882
+ 44
883
+ 43
884
+ 3
885
+ 12
886
+ 49
887
+ 4
888
+ 1
889
+ 51
890
+ 5
891
+ 1
892
+ 11
893
+ I
894
+ 6
895
+ I
896
+ 1
897
+ I
898
+ 1
899
+ I
900
+ 1
901
+ n
902
+ p
903
+ 6
904
+ x
905
+ 5
906
+ klass
907
+ x
908
+ 4
909
+ args
910
+ x
911
+ 5
912
+ block
913
+ x
914
+ 4
915
+ Proc
916
+ x
917
+ 14
918
+ __from_block__
919
+ x
920
+ 3
921
+ new
922
+ p
923
+ 5
924
+ I
925
+ -1
926
+ I
927
+ 20
928
+ I
929
+ 0
930
+ I
931
+ 21
932
+ I
933
+ 1b
934
+ x
935
+ 87
936
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
937
+ p
938
+ 1
939
+ x
940
+ 3
941
+ app
942
+ x
943
+ 7
944
+ private
945
+ x
946
+ 9
947
+ normalize
948
+ M
949
+ 1
950
+ n
951
+ n
952
+ x
953
+ 9
954
+ normalize
955
+ i
956
+ 33
957
+ 20
958
+ 0
959
+ 49
960
+ 0
961
+ 0
962
+ 49
963
+ 1
964
+ 0
965
+ 7
966
+ 2
967
+ 13
968
+ 70
969
+ 9
970
+ 26
971
+ 15
972
+ 44
973
+ 43
974
+ 3
975
+ 7
976
+ 4
977
+ 78
978
+ 49
979
+ 5
980
+ 2
981
+ 6
982
+ 2
983
+ 7
984
+ 6
985
+ 64
986
+ 49
987
+ 7
988
+ 2
989
+ 11
990
+ I
991
+ 5
992
+ I
993
+ 1
994
+ I
995
+ 1
996
+ I
997
+ 1
998
+ n
999
+ p
1000
+ 8
1001
+ x
1002
+ 4
1003
+ to_s
1004
+ x
1005
+ 5
1006
+ strip
1007
+ n
1008
+ x
1009
+ 6
1010
+ Regexp
1011
+ s
1012
+ 3
1013
+ ^::
1014
+ x
1015
+ 3
1016
+ new
1017
+ s
1018
+ 0
1019
+
1020
+ x
1021
+ 3
1022
+ sub
1023
+ p
1024
+ 5
1025
+ I
1026
+ -1
1027
+ I
1028
+ 26
1029
+ I
1030
+ 0
1031
+ I
1032
+ 27
1033
+ I
1034
+ 21
1035
+ x
1036
+ 87
1037
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1038
+ p
1039
+ 1
1040
+ x
1041
+ 6
1042
+ object
1043
+ p
1044
+ 17
1045
+ I
1046
+ 2
1047
+ I
1048
+ 6
1049
+ I
1050
+ c
1051
+ I
1052
+ 8
1053
+ I
1054
+ 1a
1055
+ I
1056
+ d
1057
+ I
1058
+ 28
1059
+ I
1060
+ 11
1061
+ I
1062
+ 36
1063
+ I
1064
+ 1c
1065
+ I
1066
+ 44
1067
+ I
1068
+ 20
1069
+ I
1070
+ 52
1071
+ I
1072
+ 24
1073
+ I
1074
+ 56
1075
+ I
1076
+ 26
1077
+ I
1078
+ 64
1079
+ x
1080
+ 87
1081
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1082
+ p
1083
+ 0
1084
+ x
1085
+ 13
1086
+ attach_method
1087
+ x
1088
+ 10
1089
+ initialize
1090
+ M
1091
+ 1
1092
+ n
1093
+ n
1094
+ x
1095
+ 10
1096
+ initialize
1097
+ i
1098
+ 25
1099
+ 95
1100
+ 19
1101
+ 1
1102
+ 15
1103
+ 20
1104
+ 0
1105
+ 36
1106
+ 54
1107
+ 53
1108
+ 0
1109
+ 0
1110
+ 15
1111
+ 94
1112
+ 9
1113
+ 23
1114
+ 20
1115
+ 1
1116
+ 5
1117
+ 49
1118
+ 1
1119
+ 1
1120
+ 8
1121
+ 24
1122
+ 1
1123
+ 11
1124
+ I
1125
+ 4
1126
+ I
1127
+ 2
1128
+ I
1129
+ 0
1130
+ I
1131
+ 0
1132
+ I
1133
+ 0
1134
+ p
1135
+ 2
1136
+ x
1137
+ 10
1138
+ initialize
1139
+ x
1140
+ 4
1141
+ call
1142
+ p
1143
+ 7
1144
+ I
1145
+ -1
1146
+ I
1147
+ 2b
1148
+ I
1149
+ 4
1150
+ I
1151
+ 2c
1152
+ I
1153
+ c
1154
+ I
1155
+ 2d
1156
+ I
1157
+ 19
1158
+ x
1159
+ 87
1160
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1161
+ p
1162
+ 2
1163
+ x
1164
+ 4
1165
+ args
1166
+ x
1167
+ 5
1168
+ block
1169
+ x
1170
+ 17
1171
+ method_visibility
1172
+ x
1173
+ 15
1174
+ add_defn_method
1175
+ x
1176
+ 6
1177
+ insert
1178
+ M
1179
+ 1
1180
+ n
1181
+ n
1182
+ x
1183
+ 6
1184
+ insert
1185
+ i
1186
+ 53
1187
+ 95
1188
+ 19
1189
+ 2
1190
+ 15
1191
+ 5
1192
+ 20
1193
+ 0
1194
+ 7
1195
+ 0
1196
+ 47
1197
+ 49
1198
+ 1
1199
+ 2
1200
+ 19
1201
+ 0
1202
+ 15
1203
+ 5
1204
+ 49
1205
+ 2
1206
+ 0
1207
+ 43
1208
+ 3
1209
+ 20
1210
+ 1
1211
+ 36
1212
+ 20
1213
+ 2
1214
+ 13
1215
+ 70
1216
+ 10
1217
+ 38
1218
+ 44
1219
+ 43
1220
+ 4
1221
+ 12
1222
+ 49
1223
+ 5
1224
+ 1
1225
+ 51
1226
+ 6
1227
+ 0
1228
+ 19
1229
+ 3
1230
+ 15
1231
+ 20
1232
+ 0
1233
+ 20
1234
+ 3
1235
+ 54
1236
+ 52
1237
+ 7
1238
+ 2
1239
+ 11
1240
+ I
1241
+ 8
1242
+ I
1243
+ 4
1244
+ I
1245
+ 1
1246
+ I
1247
+ 1
1248
+ I
1249
+ 1
1250
+ p
1251
+ 8
1252
+ x
1253
+ 6
1254
+ before
1255
+ x
1256
+ 12
1257
+ assert_index
1258
+ x
1259
+ 5
1260
+ class
1261
+ x
1262
+ 10
1263
+ Middleware
1264
+ x
1265
+ 4
1266
+ Proc
1267
+ x
1268
+ 14
1269
+ __from_block__
1270
+ x
1271
+ 3
1272
+ new
1273
+ x
1274
+ 6
1275
+ insert
1276
+ p
1277
+ 9
1278
+ I
1279
+ -1
1280
+ I
1281
+ 30
1282
+ I
1283
+ 4
1284
+ I
1285
+ 31
1286
+ I
1287
+ 10
1288
+ I
1289
+ 32
1290
+ I
1291
+ 2c
1292
+ I
1293
+ 33
1294
+ I
1295
+ 35
1296
+ x
1297
+ 87
1298
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1299
+ p
1300
+ 4
1301
+ x
1302
+ 5
1303
+ index
1304
+ x
1305
+ 4
1306
+ args
1307
+ x
1308
+ 5
1309
+ block
1310
+ x
1311
+ 10
1312
+ middleware
1313
+ x
1314
+ 13
1315
+ insert_before
1316
+ x
1317
+ 12
1318
+ alias_method
1319
+ x
1320
+ 12
1321
+ insert_after
1322
+ M
1323
+ 1
1324
+ n
1325
+ n
1326
+ x
1327
+ 12
1328
+ insert_after
1329
+ i
1330
+ 43
1331
+ 95
1332
+ 19
1333
+ 2
1334
+ 15
1335
+ 5
1336
+ 20
1337
+ 0
1338
+ 7
1339
+ 0
1340
+ 47
1341
+ 49
1342
+ 1
1343
+ 2
1344
+ 19
1345
+ 0
1346
+ 15
1347
+ 5
1348
+ 20
1349
+ 0
1350
+ 79
1351
+ 81
1352
+ 2
1353
+ 20
1354
+ 1
1355
+ 36
1356
+ 20
1357
+ 2
1358
+ 13
1359
+ 70
1360
+ 10
1361
+ 38
1362
+ 44
1363
+ 43
1364
+ 3
1365
+ 12
1366
+ 49
1367
+ 4
1368
+ 1
1369
+ 47
1370
+ 51
1371
+ 5
1372
+ 1
1373
+ 11
1374
+ I
1375
+ 8
1376
+ I
1377
+ 3
1378
+ I
1379
+ 1
1380
+ I
1381
+ 1
1382
+ I
1383
+ 1
1384
+ p
1385
+ 6
1386
+ x
1387
+ 5
1388
+ after
1389
+ x
1390
+ 12
1391
+ assert_index
1392
+ x
1393
+ 1
1394
+ +
1395
+ x
1396
+ 4
1397
+ Proc
1398
+ x
1399
+ 14
1400
+ __from_block__
1401
+ x
1402
+ 6
1403
+ insert
1404
+ p
1405
+ 7
1406
+ I
1407
+ -1
1408
+ I
1409
+ 38
1410
+ I
1411
+ 4
1412
+ I
1413
+ 39
1414
+ I
1415
+ 10
1416
+ I
1417
+ 3a
1418
+ I
1419
+ 2b
1420
+ x
1421
+ 87
1422
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1423
+ p
1424
+ 3
1425
+ x
1426
+ 5
1427
+ index
1428
+ x
1429
+ 4
1430
+ args
1431
+ x
1432
+ 5
1433
+ block
1434
+ x
1435
+ 4
1436
+ swap
1437
+ M
1438
+ 1
1439
+ n
1440
+ n
1441
+ x
1442
+ 4
1443
+ swap
1444
+ i
1445
+ 36
1446
+ 95
1447
+ 19
1448
+ 2
1449
+ 15
1450
+ 5
1451
+ 20
1452
+ 0
1453
+ 20
1454
+ 1
1455
+ 36
1456
+ 20
1457
+ 2
1458
+ 13
1459
+ 70
1460
+ 10
1461
+ 23
1462
+ 44
1463
+ 43
1464
+ 0
1465
+ 12
1466
+ 49
1467
+ 1
1468
+ 1
1469
+ 47
1470
+ 51
1471
+ 2
1472
+ 1
1473
+ 15
1474
+ 5
1475
+ 20
1476
+ 0
1477
+ 47
1478
+ 49
1479
+ 3
1480
+ 1
1481
+ 11
1482
+ I
1483
+ 8
1484
+ I
1485
+ 3
1486
+ I
1487
+ 1
1488
+ I
1489
+ 1
1490
+ I
1491
+ 1
1492
+ p
1493
+ 4
1494
+ x
1495
+ 4
1496
+ Proc
1497
+ x
1498
+ 14
1499
+ __from_block__
1500
+ x
1501
+ 13
1502
+ insert_before
1503
+ x
1504
+ 6
1505
+ delete
1506
+ p
1507
+ 7
1508
+ I
1509
+ -1
1510
+ I
1511
+ 3d
1512
+ I
1513
+ 4
1514
+ I
1515
+ 3e
1516
+ I
1517
+ 1c
1518
+ I
1519
+ 3f
1520
+ I
1521
+ 24
1522
+ x
1523
+ 87
1524
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1525
+ p
1526
+ 3
1527
+ x
1528
+ 6
1529
+ target
1530
+ x
1531
+ 4
1532
+ args
1533
+ x
1534
+ 5
1535
+ block
1536
+ x
1537
+ 3
1538
+ use
1539
+ M
1540
+ 1
1541
+ n
1542
+ n
1543
+ x
1544
+ 3
1545
+ use
1546
+ i
1547
+ 40
1548
+ 95
1549
+ 19
1550
+ 1
1551
+ 15
1552
+ 5
1553
+ 49
1554
+ 0
1555
+ 0
1556
+ 43
1557
+ 1
1558
+ 20
1559
+ 0
1560
+ 36
1561
+ 20
1562
+ 1
1563
+ 13
1564
+ 70
1565
+ 10
1566
+ 26
1567
+ 44
1568
+ 43
1569
+ 2
1570
+ 12
1571
+ 49
1572
+ 3
1573
+ 1
1574
+ 51
1575
+ 4
1576
+ 0
1577
+ 19
1578
+ 2
1579
+ 15
1580
+ 5
1581
+ 20
1582
+ 2
1583
+ 47
1584
+ 49
1585
+ 5
1586
+ 1
1587
+ 11
1588
+ I
1589
+ 7
1590
+ I
1591
+ 3
1592
+ I
1593
+ 0
1594
+ I
1595
+ 0
1596
+ I
1597
+ 0
1598
+ p
1599
+ 6
1600
+ x
1601
+ 5
1602
+ class
1603
+ x
1604
+ 10
1605
+ Middleware
1606
+ x
1607
+ 4
1608
+ Proc
1609
+ x
1610
+ 14
1611
+ __from_block__
1612
+ x
1613
+ 3
1614
+ new
1615
+ x
1616
+ 4
1617
+ push
1618
+ p
1619
+ 7
1620
+ I
1621
+ -1
1622
+ I
1623
+ 42
1624
+ I
1625
+ 4
1626
+ I
1627
+ 43
1628
+ I
1629
+ 20
1630
+ I
1631
+ 44
1632
+ I
1633
+ 28
1634
+ x
1635
+ 87
1636
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1637
+ p
1638
+ 3
1639
+ x
1640
+ 4
1641
+ args
1642
+ x
1643
+ 5
1644
+ block
1645
+ x
1646
+ 10
1647
+ middleware
1648
+ x
1649
+ 6
1650
+ active
1651
+ M
1652
+ 1
1653
+ n
1654
+ n
1655
+ x
1656
+ 6
1657
+ active
1658
+ i
1659
+ 21
1660
+ 45
1661
+ 0
1662
+ 1
1663
+ 43
1664
+ 2
1665
+ 7
1666
+ 3
1667
+ 64
1668
+ 7
1669
+ 4
1670
+ 64
1671
+ 49
1672
+ 5
1673
+ 1
1674
+ 5
1675
+ 48
1676
+ 6
1677
+ 49
1678
+ 7
1679
+ 2
1680
+ 11
1681
+ I
1682
+ 3
1683
+ I
1684
+ 0
1685
+ I
1686
+ 0
1687
+ I
1688
+ 0
1689
+ n
1690
+ p
1691
+ 8
1692
+ x
1693
+ 13
1694
+ ActiveSupport
1695
+ n
1696
+ x
1697
+ 11
1698
+ Deprecation
1699
+ s
1700
+ 59
1701
+ All middlewares in the chain are active since the laziness
1702
+ s
1703
+ 37
1704
+ was removed from the middleware stack
1705
+ x
1706
+ 2
1707
+ <<
1708
+ x
1709
+ 6
1710
+ caller
1711
+ x
1712
+ 4
1713
+ warn
1714
+ p
1715
+ 13
1716
+ I
1717
+ -1
1718
+ I
1719
+ 47
1720
+ I
1721
+ 0
1722
+ I
1723
+ 48
1724
+ I
1725
+ 8
1726
+ I
1727
+ 49
1728
+ I
1729
+ b
1730
+ I
1731
+ 48
1732
+ I
1733
+ e
1734
+ I
1735
+ 49
1736
+ I
1737
+ 11
1738
+ I
1739
+ 48
1740
+ I
1741
+ 15
1742
+ x
1743
+ 87
1744
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1745
+ p
1746
+ 0
1747
+ x
1748
+ 5
1749
+ build
1750
+ M
1751
+ 1
1752
+ n
1753
+ n
1754
+ x
1755
+ 5
1756
+ build
1757
+ i
1758
+ 50
1759
+ 23
1760
+ 0
1761
+ 10
1762
+ 8
1763
+ 1
1764
+ 19
1765
+ 0
1766
+ 15
1767
+ 95
1768
+ 19
1769
+ 1
1770
+ 15
1771
+ 20
1772
+ 0
1773
+ 13
1774
+ 10
1775
+ 22
1776
+ 15
1777
+ 20
1778
+ 1
1779
+ 19
1780
+ 0
1781
+ 15
1782
+ 20
1783
+ 0
1784
+ 9
1785
+ 30
1786
+ 1
1787
+ 8
1788
+ 38
1789
+ 5
1790
+ 7
1791
+ 0
1792
+ 64
1793
+ 47
1794
+ 49
1795
+ 1
1796
+ 1
1797
+ 15
1798
+ 5
1799
+ 48
1800
+ 2
1801
+ 20
1802
+ 0
1803
+ 56
1804
+ 3
1805
+ 50
1806
+ 4
1807
+ 1
1808
+ 11
1809
+ I
1810
+ 5
1811
+ I
1812
+ 2
1813
+ I
1814
+ 0
1815
+ I
1816
+ 1
1817
+ n
1818
+ p
1819
+ 5
1820
+ s
1821
+ 37
1822
+ MiddlewareStack#build requires an app
1823
+ x
1824
+ 5
1825
+ raise
1826
+ x
1827
+ 7
1828
+ reverse
1829
+ M
1830
+ 1
1831
+ p
1832
+ 2
1833
+ x
1834
+ 9
1835
+ for_block
1836
+ t
1837
+ n
1838
+ x
1839
+ 5
1840
+ build
1841
+ i
1842
+ 18
1843
+ 58
1844
+ 37
1845
+ 19
1846
+ 0
1847
+ 15
1848
+ 37
1849
+ 19
1850
+ 1
1851
+ 15
1852
+ 15
1853
+ 20
1854
+ 1
1855
+ 20
1856
+ 0
1857
+ 49
1858
+ 0
1859
+ 1
1860
+ 11
1861
+ I
1862
+ 5
1863
+ I
1864
+ 2
1865
+ I
1866
+ 2
1867
+ I
1868
+ 2
1869
+ n
1870
+ p
1871
+ 1
1872
+ x
1873
+ 5
1874
+ build
1875
+ p
1876
+ 3
1877
+ I
1878
+ 0
1879
+ I
1880
+ 4f
1881
+ I
1882
+ 12
1883
+ x
1884
+ 87
1885
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1886
+ p
1887
+ 2
1888
+ x
1889
+ 1
1890
+ a
1891
+ x
1892
+ 1
1893
+ e
1894
+ x
1895
+ 6
1896
+ inject
1897
+ p
1898
+ 9
1899
+ I
1900
+ -1
1901
+ I
1902
+ 4c
1903
+ I
1904
+ c
1905
+ I
1906
+ 4d
1907
+ I
1908
+ 17
1909
+ I
1910
+ 4e
1911
+ I
1912
+ 27
1913
+ I
1914
+ 4f
1915
+ I
1916
+ 32
1917
+ x
1918
+ 87
1919
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
1920
+ p
1921
+ 2
1922
+ x
1923
+ 3
1924
+ app
1925
+ x
1926
+ 5
1927
+ block
1928
+ x
1929
+ 9
1930
+ protected
1931
+ x
1932
+ 12
1933
+ assert_index
1934
+ M
1935
+ 1
1936
+ n
1937
+ n
1938
+ x
1939
+ 12
1940
+ assert_index
1941
+ i
1942
+ 58
1943
+ 20
1944
+ 0
1945
+ 45
1946
+ 0
1947
+ 1
1948
+ 49
1949
+ 2
1950
+ 1
1951
+ 9
1952
+ 14
1953
+ 20
1954
+ 0
1955
+ 8
1956
+ 20
1957
+ 5
1958
+ 20
1959
+ 0
1960
+ 49
1961
+ 3
1962
+ 1
1963
+ 19
1964
+ 2
1965
+ 15
1966
+ 20
1967
+ 2
1968
+ 9
1969
+ 30
1970
+ 1
1971
+ 8
1972
+ 54
1973
+ 5
1974
+ 7
1975
+ 4
1976
+ 20
1977
+ 1
1978
+ 47
1979
+ 101
1980
+ 5
1981
+ 7
1982
+ 6
1983
+ 20
1984
+ 0
1985
+ 49
1986
+ 7
1987
+ 0
1988
+ 47
1989
+ 101
1990
+ 5
1991
+ 63
1992
+ 4
1993
+ 47
1994
+ 49
1995
+ 8
1996
+ 1
1997
+ 15
1998
+ 20
1999
+ 2
2000
+ 11
2001
+ I
2002
+ 8
2003
+ I
2004
+ 3
2005
+ I
2006
+ 2
2007
+ I
2008
+ 2
2009
+ n
2010
+ p
2011
+ 9
2012
+ x
2013
+ 7
2014
+ Integer
2015
+ n
2016
+ x
2017
+ 5
2018
+ is_a?
2019
+ x
2020
+ 5
2021
+ index
2022
+ s
2023
+ 29
2024
+ No such middleware to insert
2025
+ x
2026
+ 4
2027
+ to_s
2028
+ s
2029
+ 2
2030
+ :
2031
+ x
2032
+ 7
2033
+ inspect
2034
+ x
2035
+ 5
2036
+ raise
2037
+ p
2038
+ 9
2039
+ I
2040
+ -1
2041
+ I
2042
+ 54
2043
+ I
2044
+ 0
2045
+ I
2046
+ 55
2047
+ I
2048
+ 17
2049
+ I
2050
+ 56
2051
+ I
2052
+ 37
2053
+ I
2054
+ 57
2055
+ I
2056
+ 3a
2057
+ x
2058
+ 87
2059
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
2060
+ p
2061
+ 3
2062
+ x
2063
+ 5
2064
+ index
2065
+ x
2066
+ 5
2067
+ where
2068
+ x
2069
+ 1
2070
+ i
2071
+ p
2072
+ 23
2073
+ I
2074
+ 2
2075
+ I
2076
+ 5
2077
+ I
2078
+ 1d
2079
+ I
2080
+ 2b
2081
+ I
2082
+ 2b
2083
+ I
2084
+ 30
2085
+ I
2086
+ 39
2087
+ I
2088
+ 36
2089
+ I
2090
+ 43
2091
+ I
2092
+ 38
2093
+ I
2094
+ 51
2095
+ I
2096
+ 3d
2097
+ I
2098
+ 5f
2099
+ I
2100
+ 42
2101
+ I
2102
+ 6d
2103
+ I
2104
+ 47
2105
+ I
2106
+ 7b
2107
+ I
2108
+ 4c
2109
+ I
2110
+ 89
2111
+ I
2112
+ 52
2113
+ I
2114
+ 8d
2115
+ I
2116
+ 54
2117
+ I
2118
+ 9b
2119
+ x
2120
+ 87
2121
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
2122
+ p
2123
+ 0
2124
+ x
2125
+ 13
2126
+ attach_method
2127
+ p
2128
+ 3
2129
+ I
2130
+ 2
2131
+ I
2132
+ 4
2133
+ I
2134
+ 1f
2135
+ x
2136
+ 87
2137
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
2138
+ p
2139
+ 0
2140
+ x
2141
+ 13
2142
+ attach_method
2143
+ p
2144
+ 5
2145
+ I
2146
+ 0
2147
+ I
2148
+ 1
2149
+ I
2150
+ 9
2151
+ I
2152
+ 3
2153
+ I
2154
+ 25
2155
+ x
2156
+ 87
2157
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/stack.rb
2158
+ p
2159
+ 0