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,3137 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 55
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 99
41
+ 7
42
+ 4
43
+ 65
44
+ 49
45
+ 5
46
+ 2
47
+ 13
48
+ 99
49
+ 12
50
+ 7
51
+ 6
52
+ 12
53
+ 7
54
+ 7
55
+ 12
56
+ 65
57
+ 12
58
+ 49
59
+ 8
60
+ 4
61
+ 15
62
+ 49
63
+ 6
64
+ 0
65
+ 15
66
+ 2
67
+ 11
68
+ I
69
+ 6
70
+ I
71
+ 0
72
+ I
73
+ 0
74
+ I
75
+ 0
76
+ n
77
+ p
78
+ 9
79
+ s
80
+ 39
81
+ active_support/core_ext/class/attribute
82
+ x
83
+ 7
84
+ require
85
+ s
86
+ 36
87
+ active_support/core_ext/object/blank
88
+ s
89
+ 32
90
+ action_dispatch/middleware/stack
91
+ x
92
+ 16
93
+ ActionController
94
+ x
95
+ 11
96
+ open_module
97
+ x
98
+ 15
99
+ __module_init__
100
+ M
101
+ 1
102
+ n
103
+ n
104
+ x
105
+ 16
106
+ ActionController
107
+ i
108
+ 64
109
+ 5
110
+ 66
111
+ 99
112
+ 7
113
+ 0
114
+ 45
115
+ 1
116
+ 2
117
+ 43
118
+ 0
119
+ 65
120
+ 49
121
+ 3
122
+ 3
123
+ 13
124
+ 99
125
+ 12
126
+ 7
127
+ 4
128
+ 12
129
+ 7
130
+ 5
131
+ 12
132
+ 65
133
+ 12
134
+ 49
135
+ 6
136
+ 4
137
+ 15
138
+ 49
139
+ 4
140
+ 0
141
+ 15
142
+ 99
143
+ 7
144
+ 7
145
+ 45
146
+ 8
147
+ 9
148
+ 43
149
+ 10
150
+ 65
151
+ 49
152
+ 3
153
+ 3
154
+ 13
155
+ 99
156
+ 12
157
+ 7
158
+ 4
159
+ 12
160
+ 7
161
+ 11
162
+ 12
163
+ 65
164
+ 12
165
+ 49
166
+ 6
167
+ 4
168
+ 15
169
+ 49
170
+ 4
171
+ 0
172
+ 11
173
+ I
174
+ 6
175
+ I
176
+ 0
177
+ I
178
+ 0
179
+ I
180
+ 0
181
+ n
182
+ p
183
+ 12
184
+ x
185
+ 15
186
+ MiddlewareStack
187
+ x
188
+ 14
189
+ ActionDispatch
190
+ n
191
+ x
192
+ 10
193
+ open_class
194
+ x
195
+ 14
196
+ __class_init__
197
+ M
198
+ 1
199
+ n
200
+ n
201
+ x
202
+ 15
203
+ MiddlewareStack
204
+ i
205
+ 49
206
+ 5
207
+ 66
208
+ 99
209
+ 7
210
+ 0
211
+ 45
212
+ 1
213
+ 2
214
+ 43
215
+ 3
216
+ 43
217
+ 0
218
+ 65
219
+ 49
220
+ 4
221
+ 3
222
+ 13
223
+ 99
224
+ 12
225
+ 7
226
+ 5
227
+ 12
228
+ 7
229
+ 6
230
+ 12
231
+ 65
232
+ 12
233
+ 49
234
+ 7
235
+ 4
236
+ 15
237
+ 49
238
+ 5
239
+ 0
240
+ 15
241
+ 99
242
+ 7
243
+ 8
244
+ 7
245
+ 9
246
+ 65
247
+ 67
248
+ 49
249
+ 10
250
+ 0
251
+ 49
252
+ 11
253
+ 4
254
+ 11
255
+ I
256
+ 6
257
+ I
258
+ 0
259
+ I
260
+ 0
261
+ I
262
+ 0
263
+ n
264
+ p
265
+ 12
266
+ x
267
+ 10
268
+ Middleware
269
+ x
270
+ 14
271
+ ActionDispatch
272
+ n
273
+ x
274
+ 15
275
+ MiddlewareStack
276
+ x
277
+ 10
278
+ open_class
279
+ x
280
+ 14
281
+ __class_init__
282
+ M
283
+ 1
284
+ n
285
+ n
286
+ x
287
+ 10
288
+ Middleware
289
+ i
290
+ 30
291
+ 5
292
+ 66
293
+ 99
294
+ 7
295
+ 0
296
+ 7
297
+ 1
298
+ 65
299
+ 67
300
+ 49
301
+ 2
302
+ 0
303
+ 49
304
+ 3
305
+ 4
306
+ 15
307
+ 99
308
+ 7
309
+ 4
310
+ 7
311
+ 5
312
+ 65
313
+ 67
314
+ 49
315
+ 2
316
+ 0
317
+ 49
318
+ 3
319
+ 4
320
+ 11
321
+ I
322
+ 5
323
+ I
324
+ 0
325
+ I
326
+ 0
327
+ I
328
+ 0
329
+ n
330
+ p
331
+ 6
332
+ x
333
+ 10
334
+ initialize
335
+ M
336
+ 1
337
+ n
338
+ n
339
+ x
340
+ 10
341
+ initialize
342
+ i
343
+ 96
344
+ 95
345
+ 19
346
+ 2
347
+ 15
348
+ 20
349
+ 1
350
+ 49
351
+ 0
352
+ 0
353
+ 19
354
+ 3
355
+ 15
356
+ 5
357
+ 20
358
+ 3
359
+ 7
360
+ 1
361
+ 49
362
+ 2
363
+ 1
364
+ 47
365
+ 49
366
+ 3
367
+ 1
368
+ 7
369
+ 4
370
+ 13
371
+ 70
372
+ 10
373
+ 37
374
+ 44
375
+ 43
376
+ 5
377
+ 12
378
+ 49
379
+ 6
380
+ 1
381
+ 50
382
+ 7
383
+ 0
384
+ 38
385
+ 8
386
+ 15
387
+ 5
388
+ 20
389
+ 3
390
+ 7
391
+ 9
392
+ 49
393
+ 2
394
+ 1
395
+ 47
396
+ 49
397
+ 3
398
+ 1
399
+ 7
400
+ 4
401
+ 13
402
+ 70
403
+ 10
404
+ 68
405
+ 44
406
+ 43
407
+ 5
408
+ 12
409
+ 49
410
+ 6
411
+ 1
412
+ 50
413
+ 7
414
+ 0
415
+ 38
416
+ 10
417
+ 15
418
+ 20
419
+ 3
420
+ 49
421
+ 11
422
+ 0
423
+ 9
424
+ 84
425
+ 1
426
+ 8
427
+ 91
428
+ 20
429
+ 1
430
+ 20
431
+ 3
432
+ 49
433
+ 12
434
+ 1
435
+ 15
436
+ 54
437
+ 89
438
+ 13
439
+ 11
440
+ I
441
+ 7
442
+ I
443
+ 4
444
+ I
445
+ 1
446
+ I
447
+ 1
448
+ I
449
+ 1
450
+ p
451
+ 14
452
+ x
453
+ 16
454
+ extract_options!
455
+ x
456
+ 4
457
+ only
458
+ x
459
+ 6
460
+ delete
461
+ x
462
+ 5
463
+ Array
464
+ x
465
+ 4
466
+ to_s
467
+ x
468
+ 4
469
+ Proc
470
+ x
471
+ 14
472
+ __from_block__
473
+ x
474
+ 3
475
+ map
476
+ x
477
+ 5
478
+ @only
479
+ x
480
+ 6
481
+ except
482
+ x
483
+ 7
484
+ @except
485
+ x
486
+ 6
487
+ empty?
488
+ x
489
+ 2
490
+ <<
491
+ x
492
+ 10
493
+ initialize
494
+ p
495
+ 13
496
+ I
497
+ -1
498
+ I
499
+ f
500
+ I
501
+ 4
502
+ I
503
+ 10
504
+ I
505
+ c
506
+ I
507
+ 11
508
+ I
509
+ 2b
510
+ I
511
+ 12
512
+ I
513
+ 4a
514
+ I
515
+ 13
516
+ I
517
+ 5c
518
+ I
519
+ 14
520
+ I
521
+ 60
522
+ x
523
+ 78
524
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
525
+ p
526
+ 4
527
+ x
528
+ 5
529
+ klass
530
+ x
531
+ 4
532
+ args
533
+ x
534
+ 5
535
+ block
536
+ x
537
+ 7
538
+ options
539
+ x
540
+ 17
541
+ method_visibility
542
+ x
543
+ 15
544
+ add_defn_method
545
+ x
546
+ 6
547
+ valid?
548
+ M
549
+ 1
550
+ n
551
+ n
552
+ x
553
+ 6
554
+ valid?
555
+ i
556
+ 40
557
+ 39
558
+ 0
559
+ 49
560
+ 1
561
+ 0
562
+ 9
563
+ 16
564
+ 39
565
+ 0
566
+ 20
567
+ 0
568
+ 49
569
+ 2
570
+ 1
571
+ 8
572
+ 39
573
+ 39
574
+ 3
575
+ 49
576
+ 1
577
+ 0
578
+ 9
579
+ 38
580
+ 39
581
+ 3
582
+ 20
583
+ 0
584
+ 49
585
+ 2
586
+ 1
587
+ 10
588
+ 35
589
+ 2
590
+ 8
591
+ 36
592
+ 3
593
+ 8
594
+ 39
595
+ 2
596
+ 11
597
+ I
598
+ 3
599
+ I
600
+ 1
601
+ I
602
+ 1
603
+ I
604
+ 1
605
+ n
606
+ p
607
+ 4
608
+ x
609
+ 5
610
+ @only
611
+ x
612
+ 8
613
+ present?
614
+ x
615
+ 8
616
+ include?
617
+ x
618
+ 7
619
+ @except
620
+ p
621
+ 13
622
+ I
623
+ -1
624
+ I
625
+ 17
626
+ I
627
+ 0
628
+ I
629
+ 18
630
+ I
631
+ 7
632
+ I
633
+ 19
634
+ I
635
+ 10
636
+ I
637
+ 1a
638
+ I
639
+ 17
640
+ I
641
+ 1b
642
+ I
643
+ 26
644
+ I
645
+ 1d
646
+ I
647
+ 28
648
+ x
649
+ 78
650
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
651
+ p
652
+ 1
653
+ x
654
+ 6
655
+ action
656
+ p
657
+ 5
658
+ I
659
+ 2
660
+ I
661
+ f
662
+ I
663
+ 10
664
+ I
665
+ 17
666
+ I
667
+ 1e
668
+ x
669
+ 78
670
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
671
+ p
672
+ 0
673
+ x
674
+ 13
675
+ attach_method
676
+ x
677
+ 5
678
+ build
679
+ M
680
+ 1
681
+ n
682
+ n
683
+ x
684
+ 5
685
+ build
686
+ i
687
+ 58
688
+ 23
689
+ 1
690
+ 10
691
+ 8
692
+ 1
693
+ 19
694
+ 1
695
+ 15
696
+ 95
697
+ 19
698
+ 2
699
+ 15
700
+ 20
701
+ 1
702
+ 13
703
+ 10
704
+ 22
705
+ 15
706
+ 20
707
+ 2
708
+ 19
709
+ 1
710
+ 15
711
+ 20
712
+ 0
713
+ 49
714
+ 0
715
+ 0
716
+ 19
717
+ 0
718
+ 15
719
+ 20
720
+ 1
721
+ 9
722
+ 38
723
+ 1
724
+ 8
725
+ 46
726
+ 5
727
+ 7
728
+ 1
729
+ 64
730
+ 47
731
+ 49
732
+ 2
733
+ 1
734
+ 15
735
+ 5
736
+ 48
737
+ 3
738
+ 20
739
+ 1
740
+ 56
741
+ 4
742
+ 50
743
+ 5
744
+ 1
745
+ 11
746
+ I
747
+ 6
748
+ I
749
+ 3
750
+ I
751
+ 1
752
+ I
753
+ 2
754
+ n
755
+ p
756
+ 6
757
+ x
758
+ 4
759
+ to_s
760
+ s
761
+ 37
762
+ MiddlewareStack#build requires an app
763
+ x
764
+ 5
765
+ raise
766
+ x
767
+ 7
768
+ reverse
769
+ M
770
+ 1
771
+ p
772
+ 2
773
+ x
774
+ 9
775
+ for_block
776
+ t
777
+ n
778
+ x
779
+ 5
780
+ build
781
+ i
782
+ 32
783
+ 58
784
+ 37
785
+ 19
786
+ 0
787
+ 15
788
+ 37
789
+ 19
790
+ 1
791
+ 15
792
+ 15
793
+ 20
794
+ 1
795
+ 21
796
+ 1
797
+ 0
798
+ 49
799
+ 0
800
+ 1
801
+ 9
802
+ 29
803
+ 20
804
+ 1
805
+ 20
806
+ 0
807
+ 49
808
+ 1
809
+ 1
810
+ 8
811
+ 31
812
+ 20
813
+ 0
814
+ 11
815
+ I
816
+ 5
817
+ I
818
+ 2
819
+ I
820
+ 2
821
+ I
822
+ 2
823
+ n
824
+ p
825
+ 2
826
+ x
827
+ 6
828
+ valid?
829
+ x
830
+ 5
831
+ build
832
+ p
833
+ 7
834
+ I
835
+ 0
836
+ I
837
+ 27
838
+ I
839
+ a
840
+ I
841
+ 28
842
+ I
843
+ 14
844
+ I
845
+ 29
846
+ I
847
+ 20
848
+ x
849
+ 78
850
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
851
+ p
852
+ 2
853
+ x
854
+ 1
855
+ a
856
+ x
857
+ 10
858
+ middleware
859
+ x
860
+ 6
861
+ inject
862
+ p
863
+ 11
864
+ I
865
+ -1
866
+ I
867
+ 22
868
+ I
869
+ c
870
+ I
871
+ 23
872
+ I
873
+ 17
874
+ I
875
+ 24
876
+ I
877
+ 1f
878
+ I
879
+ 25
880
+ I
881
+ 2f
882
+ I
883
+ 27
884
+ I
885
+ 3a
886
+ x
887
+ 78
888
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
889
+ p
890
+ 3
891
+ x
892
+ 6
893
+ action
894
+ x
895
+ 3
896
+ app
897
+ x
898
+ 5
899
+ block
900
+ x
901
+ 17
902
+ method_visibility
903
+ x
904
+ 15
905
+ add_defn_method
906
+ p
907
+ 5
908
+ I
909
+ 2
910
+ I
911
+ e
912
+ I
913
+ 23
914
+ I
915
+ 22
916
+ I
917
+ 31
918
+ x
919
+ 78
920
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
921
+ p
922
+ 0
923
+ x
924
+ 13
925
+ attach_method
926
+ x
927
+ 5
928
+ Metal
929
+ x
930
+ 18
931
+ AbstractController
932
+ n
933
+ x
934
+ 4
935
+ Base
936
+ M
937
+ 1
938
+ n
939
+ n
940
+ x
941
+ 5
942
+ Metal
943
+ i
944
+ 359
945
+ 5
946
+ 66
947
+ 5
948
+ 47
949
+ 49
950
+ 0
951
+ 0
952
+ 15
953
+ 5
954
+ 7
955
+ 1
956
+ 47
957
+ 49
958
+ 2
959
+ 1
960
+ 15
961
+ 99
962
+ 7
963
+ 3
964
+ 7
965
+ 4
966
+ 65
967
+ 5
968
+ 49
969
+ 5
970
+ 4
971
+ 15
972
+ 99
973
+ 7
974
+ 3
975
+ 7
976
+ 6
977
+ 65
978
+ 67
979
+ 49
980
+ 7
981
+ 0
982
+ 49
983
+ 8
984
+ 4
985
+ 15
986
+ 5
987
+ 7
988
+ 9
989
+ 7
990
+ 10
991
+ 7
992
+ 11
993
+ 47
994
+ 49
995
+ 2
996
+ 3
997
+ 15
998
+ 5
999
+ 7
1000
+ 12
1001
+ 44
1002
+ 43
1003
+ 13
1004
+ 79
1005
+ 49
1006
+ 14
1007
+ 1
1008
+ 13
1009
+ 7
1010
+ 15
1011
+ 7
1012
+ 16
1013
+ 64
1014
+ 49
1015
+ 17
1016
+ 2
1017
+ 15
1018
+ 47
1019
+ 49
1020
+ 18
1021
+ 2
1022
+ 15
1023
+ 99
1024
+ 7
1025
+ 19
1026
+ 7
1027
+ 20
1028
+ 65
1029
+ 67
1030
+ 49
1031
+ 7
1032
+ 0
1033
+ 49
1034
+ 8
1035
+ 4
1036
+ 15
1037
+ 99
1038
+ 7
1039
+ 21
1040
+ 7
1041
+ 22
1042
+ 65
1043
+ 67
1044
+ 49
1045
+ 7
1046
+ 0
1047
+ 49
1048
+ 8
1049
+ 4
1050
+ 15
1051
+ 99
1052
+ 7
1053
+ 23
1054
+ 7
1055
+ 24
1056
+ 65
1057
+ 67
1058
+ 49
1059
+ 7
1060
+ 0
1061
+ 49
1062
+ 8
1063
+ 4
1064
+ 15
1065
+ 99
1066
+ 7
1067
+ 25
1068
+ 7
1069
+ 26
1070
+ 65
1071
+ 67
1072
+ 49
1073
+ 7
1074
+ 0
1075
+ 49
1076
+ 8
1077
+ 4
1078
+ 15
1079
+ 99
1080
+ 7
1081
+ 27
1082
+ 7
1083
+ 28
1084
+ 65
1085
+ 67
1086
+ 49
1087
+ 7
1088
+ 0
1089
+ 49
1090
+ 8
1091
+ 4
1092
+ 15
1093
+ 99
1094
+ 7
1095
+ 29
1096
+ 7
1097
+ 30
1098
+ 65
1099
+ 67
1100
+ 49
1101
+ 7
1102
+ 0
1103
+ 49
1104
+ 8
1105
+ 4
1106
+ 15
1107
+ 99
1108
+ 7
1109
+ 31
1110
+ 7
1111
+ 32
1112
+ 65
1113
+ 67
1114
+ 49
1115
+ 7
1116
+ 0
1117
+ 49
1118
+ 8
1119
+ 4
1120
+ 15
1121
+ 99
1122
+ 7
1123
+ 33
1124
+ 7
1125
+ 34
1126
+ 65
1127
+ 67
1128
+ 49
1129
+ 7
1130
+ 0
1131
+ 49
1132
+ 8
1133
+ 4
1134
+ 15
1135
+ 99
1136
+ 7
1137
+ 35
1138
+ 7
1139
+ 36
1140
+ 65
1141
+ 67
1142
+ 49
1143
+ 7
1144
+ 0
1145
+ 49
1146
+ 8
1147
+ 4
1148
+ 15
1149
+ 99
1150
+ 7
1151
+ 37
1152
+ 7
1153
+ 38
1154
+ 65
1155
+ 67
1156
+ 49
1157
+ 7
1158
+ 0
1159
+ 49
1160
+ 8
1161
+ 4
1162
+ 15
1163
+ 99
1164
+ 7
1165
+ 39
1166
+ 7
1167
+ 40
1168
+ 65
1169
+ 67
1170
+ 49
1171
+ 7
1172
+ 0
1173
+ 49
1174
+ 8
1175
+ 4
1176
+ 15
1177
+ 99
1178
+ 7
1179
+ 41
1180
+ 7
1181
+ 42
1182
+ 65
1183
+ 67
1184
+ 49
1185
+ 7
1186
+ 0
1187
+ 49
1188
+ 8
1189
+ 4
1190
+ 15
1191
+ 99
1192
+ 7
1193
+ 43
1194
+ 7
1195
+ 44
1196
+ 65
1197
+ 67
1198
+ 49
1199
+ 7
1200
+ 0
1201
+ 49
1202
+ 8
1203
+ 4
1204
+ 15
1205
+ 5
1206
+ 7
1207
+ 45
1208
+ 47
1209
+ 49
1210
+ 46
1211
+ 1
1212
+ 15
1213
+ 5
1214
+ 45
1215
+ 47
1216
+ 48
1217
+ 43
1218
+ 49
1219
+ 13
1220
+ 71
1221
+ 50
1222
+ 47
1223
+ 9
1224
+ 292
1225
+ 47
1226
+ 49
1227
+ 51
1228
+ 0
1229
+ 13
1230
+ 47
1231
+ 49
1232
+ 19
1233
+ 0
1234
+ 15
1235
+ 8
1236
+ 295
1237
+ 49
1238
+ 50
1239
+ 0
1240
+ 13
1241
+ 18
1242
+ 2
1243
+ 47
1244
+ 49
1245
+ 52
1246
+ 1
1247
+ 15
1248
+ 15
1249
+ 99
1250
+ 7
1251
+ 53
1252
+ 7
1253
+ 54
1254
+ 65
1255
+ 5
1256
+ 49
1257
+ 5
1258
+ 4
1259
+ 15
1260
+ 99
1261
+ 7
1262
+ 55
1263
+ 7
1264
+ 56
1265
+ 65
1266
+ 5
1267
+ 49
1268
+ 5
1269
+ 4
1270
+ 15
1271
+ 99
1272
+ 7
1273
+ 57
1274
+ 7
1275
+ 58
1276
+ 65
1277
+ 5
1278
+ 49
1279
+ 5
1280
+ 4
1281
+ 15
1282
+ 99
1283
+ 7
1284
+ 59
1285
+ 7
1286
+ 60
1287
+ 65
1288
+ 5
1289
+ 49
1290
+ 5
1291
+ 4
1292
+ 15
1293
+ 99
1294
+ 7
1295
+ 61
1296
+ 7
1297
+ 62
1298
+ 65
1299
+ 5
1300
+ 49
1301
+ 5
1302
+ 4
1303
+ 11
1304
+ I
1305
+ 6
1306
+ I
1307
+ 0
1308
+ I
1309
+ 0
1310
+ I
1311
+ 0
1312
+ n
1313
+ p
1314
+ 63
1315
+ x
1316
+ 9
1317
+ abstract!
1318
+ x
1319
+ 3
1320
+ env
1321
+ x
1322
+ 13
1323
+ attr_internal
1324
+ x
1325
+ 15
1326
+ controller_name
1327
+ M
1328
+ 1
1329
+ n
1330
+ n
1331
+ x
1332
+ 15
1333
+ controller_name
1334
+ i
1335
+ 43
1336
+ 39
1337
+ 0
1338
+ 13
1339
+ 10
1340
+ 42
1341
+ 15
1342
+ 5
1343
+ 49
1344
+ 1
1345
+ 0
1346
+ 49
1347
+ 2
1348
+ 0
1349
+ 7
1350
+ 3
1351
+ 13
1352
+ 70
1353
+ 9
1354
+ 31
1355
+ 15
1356
+ 44
1357
+ 43
1358
+ 4
1359
+ 7
1360
+ 5
1361
+ 78
1362
+ 49
1363
+ 6
1364
+ 2
1365
+ 6
1366
+ 3
1367
+ 7
1368
+ 7
1369
+ 64
1370
+ 49
1371
+ 8
1372
+ 2
1373
+ 49
1374
+ 9
1375
+ 0
1376
+ 38
1377
+ 0
1378
+ 11
1379
+ I
1380
+ 4
1381
+ I
1382
+ 0
1383
+ I
1384
+ 0
1385
+ I
1386
+ 0
1387
+ n
1388
+ p
1389
+ 10
1390
+ x
1391
+ 16
1392
+ @controller_name
1393
+ x
1394
+ 4
1395
+ name
1396
+ x
1397
+ 10
1398
+ demodulize
1399
+ n
1400
+ x
1401
+ 6
1402
+ Regexp
1403
+ s
1404
+ 11
1405
+ Controller$
1406
+ x
1407
+ 3
1408
+ new
1409
+ s
1410
+ 0
1411
+
1412
+ x
1413
+ 3
1414
+ sub
1415
+ x
1416
+ 10
1417
+ underscore
1418
+ p
1419
+ 5
1420
+ I
1421
+ -1
1422
+ I
1423
+ 3f
1424
+ I
1425
+ 0
1426
+ I
1427
+ 40
1428
+ I
1429
+ 2b
1430
+ x
1431
+ 78
1432
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1433
+ p
1434
+ 0
1435
+ x
1436
+ 13
1437
+ attach_method
1438
+ M
1439
+ 1
1440
+ n
1441
+ n
1442
+ x
1443
+ 15
1444
+ controller_name
1445
+ i
1446
+ 8
1447
+ 5
1448
+ 49
1449
+ 0
1450
+ 0
1451
+ 49
1452
+ 1
1453
+ 0
1454
+ 11
1455
+ I
1456
+ 1
1457
+ I
1458
+ 0
1459
+ I
1460
+ 0
1461
+ I
1462
+ 0
1463
+ n
1464
+ p
1465
+ 2
1466
+ x
1467
+ 5
1468
+ class
1469
+ x
1470
+ 15
1471
+ controller_name
1472
+ p
1473
+ 5
1474
+ I
1475
+ -1
1476
+ I
1477
+ 44
1478
+ I
1479
+ 0
1480
+ I
1481
+ 45
1482
+ I
1483
+ 8
1484
+ x
1485
+ 78
1486
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1487
+ p
1488
+ 0
1489
+ x
1490
+ 17
1491
+ method_visibility
1492
+ x
1493
+ 15
1494
+ add_defn_method
1495
+ x
1496
+ 7
1497
+ headers
1498
+ x
1499
+ 8
1500
+ response
1501
+ x
1502
+ 7
1503
+ request
1504
+ x
1505
+ 7
1506
+ session
1507
+ x
1508
+ 4
1509
+ Hash
1510
+ x
1511
+ 16
1512
+ new_from_literal
1513
+ x
1514
+ 2
1515
+ to
1516
+ s
1517
+ 9
1518
+ @_request
1519
+ x
1520
+ 3
1521
+ []=
1522
+ x
1523
+ 8
1524
+ delegate
1525
+ x
1526
+ 10
1527
+ initialize
1528
+ M
1529
+ 1
1530
+ n
1531
+ n
1532
+ x
1533
+ 10
1534
+ initialize
1535
+ i
1536
+ 30
1537
+ 44
1538
+ 43
1539
+ 0
1540
+ 79
1541
+ 49
1542
+ 1
1543
+ 1
1544
+ 13
1545
+ 7
1546
+ 2
1547
+ 64
1548
+ 7
1549
+ 3
1550
+ 64
1551
+ 49
1552
+ 4
1553
+ 2
1554
+ 15
1555
+ 38
1556
+ 5
1557
+ 15
1558
+ 4
1559
+ 200
1560
+ 38
1561
+ 6
1562
+ 15
1563
+ 54
1564
+ 89
1565
+ 7
1566
+ 11
1567
+ I
1568
+ 5
1569
+ I
1570
+ 1
1571
+ I
1572
+ 0
1573
+ I
1574
+ 0
1575
+ I
1576
+ 0
1577
+ p
1578
+ 8
1579
+ x
1580
+ 4
1581
+ Hash
1582
+ x
1583
+ 16
1584
+ new_from_literal
1585
+ s
1586
+ 12
1587
+ Content-Type
1588
+ s
1589
+ 9
1590
+ text/html
1591
+ x
1592
+ 3
1593
+ []=
1594
+ x
1595
+ 9
1596
+ @_headers
1597
+ x
1598
+ 8
1599
+ @_status
1600
+ x
1601
+ 10
1602
+ initialize
1603
+ p
1604
+ 9
1605
+ I
1606
+ -1
1607
+ I
1608
+ 51
1609
+ I
1610
+ 0
1611
+ I
1612
+ 52
1613
+ I
1614
+ 15
1615
+ I
1616
+ 53
1617
+ I
1618
+ 1a
1619
+ I
1620
+ 54
1621
+ I
1622
+ 1e
1623
+ x
1624
+ 78
1625
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1626
+ p
1627
+ 1
1628
+ x
1629
+ 14
1630
+ @unnamed_splat
1631
+ x
1632
+ 6
1633
+ params
1634
+ M
1635
+ 1
1636
+ n
1637
+ n
1638
+ x
1639
+ 6
1640
+ params
1641
+ i
1642
+ 15
1643
+ 39
1644
+ 0
1645
+ 13
1646
+ 10
1647
+ 14
1648
+ 15
1649
+ 5
1650
+ 48
1651
+ 1
1652
+ 49
1653
+ 2
1654
+ 0
1655
+ 38
1656
+ 0
1657
+ 11
1658
+ I
1659
+ 2
1660
+ I
1661
+ 0
1662
+ I
1663
+ 0
1664
+ I
1665
+ 0
1666
+ n
1667
+ p
1668
+ 3
1669
+ x
1670
+ 8
1671
+ @_params
1672
+ x
1673
+ 7
1674
+ request
1675
+ x
1676
+ 10
1677
+ parameters
1678
+ p
1679
+ 5
1680
+ I
1681
+ -1
1682
+ I
1683
+ 57
1684
+ I
1685
+ 0
1686
+ I
1687
+ 58
1688
+ I
1689
+ f
1690
+ x
1691
+ 78
1692
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1693
+ p
1694
+ 0
1695
+ x
1696
+ 7
1697
+ params=
1698
+ M
1699
+ 1
1700
+ n
1701
+ n
1702
+ x
1703
+ 7
1704
+ params=
1705
+ i
1706
+ 5
1707
+ 20
1708
+ 0
1709
+ 38
1710
+ 0
1711
+ 11
1712
+ I
1713
+ 2
1714
+ I
1715
+ 1
1716
+ I
1717
+ 1
1718
+ I
1719
+ 1
1720
+ n
1721
+ p
1722
+ 1
1723
+ x
1724
+ 8
1725
+ @_params
1726
+ p
1727
+ 5
1728
+ I
1729
+ -1
1730
+ I
1731
+ 5b
1732
+ I
1733
+ 0
1734
+ I
1735
+ 5c
1736
+ I
1737
+ 5
1738
+ x
1739
+ 78
1740
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1741
+ p
1742
+ 1
1743
+ x
1744
+ 3
1745
+ val
1746
+ x
1747
+ 13
1748
+ content_type=
1749
+ M
1750
+ 1
1751
+ n
1752
+ n
1753
+ x
1754
+ 13
1755
+ content_type=
1756
+ i
1757
+ 19
1758
+ 5
1759
+ 48
1760
+ 0
1761
+ 7
1762
+ 1
1763
+ 64
1764
+ 20
1765
+ 0
1766
+ 49
1767
+ 2
1768
+ 0
1769
+ 13
1770
+ 18
1771
+ 3
1772
+ 49
1773
+ 3
1774
+ 2
1775
+ 15
1776
+ 11
1777
+ I
1778
+ 5
1779
+ I
1780
+ 1
1781
+ I
1782
+ 1
1783
+ I
1784
+ 1
1785
+ n
1786
+ p
1787
+ 4
1788
+ x
1789
+ 7
1790
+ headers
1791
+ s
1792
+ 12
1793
+ Content-Type
1794
+ x
1795
+ 4
1796
+ to_s
1797
+ x
1798
+ 3
1799
+ []=
1800
+ p
1801
+ 5
1802
+ I
1803
+ -1
1804
+ I
1805
+ 63
1806
+ I
1807
+ 0
1808
+ I
1809
+ 64
1810
+ I
1811
+ 13
1812
+ x
1813
+ 78
1814
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1815
+ p
1816
+ 1
1817
+ x
1818
+ 4
1819
+ type
1820
+ x
1821
+ 12
1822
+ content_type
1823
+ M
1824
+ 1
1825
+ n
1826
+ n
1827
+ x
1828
+ 12
1829
+ content_type
1830
+ i
1831
+ 10
1832
+ 5
1833
+ 48
1834
+ 0
1835
+ 7
1836
+ 1
1837
+ 64
1838
+ 49
1839
+ 2
1840
+ 1
1841
+ 11
1842
+ I
1843
+ 2
1844
+ I
1845
+ 0
1846
+ I
1847
+ 0
1848
+ I
1849
+ 0
1850
+ n
1851
+ p
1852
+ 3
1853
+ x
1854
+ 7
1855
+ headers
1856
+ s
1857
+ 12
1858
+ Content-Type
1859
+ x
1860
+ 2
1861
+ []
1862
+ p
1863
+ 5
1864
+ I
1865
+ -1
1866
+ I
1867
+ 67
1868
+ I
1869
+ 0
1870
+ I
1871
+ 68
1872
+ I
1873
+ a
1874
+ x
1875
+ 78
1876
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1877
+ p
1878
+ 0
1879
+ x
1880
+ 8
1881
+ location
1882
+ M
1883
+ 1
1884
+ n
1885
+ n
1886
+ x
1887
+ 8
1888
+ location
1889
+ i
1890
+ 10
1891
+ 5
1892
+ 48
1893
+ 0
1894
+ 7
1895
+ 1
1896
+ 64
1897
+ 49
1898
+ 2
1899
+ 1
1900
+ 11
1901
+ I
1902
+ 2
1903
+ I
1904
+ 0
1905
+ I
1906
+ 0
1907
+ I
1908
+ 0
1909
+ n
1910
+ p
1911
+ 3
1912
+ x
1913
+ 7
1914
+ headers
1915
+ s
1916
+ 8
1917
+ Location
1918
+ x
1919
+ 2
1920
+ []
1921
+ p
1922
+ 5
1923
+ I
1924
+ -1
1925
+ I
1926
+ 6b
1927
+ I
1928
+ 0
1929
+ I
1930
+ 6c
1931
+ I
1932
+ a
1933
+ x
1934
+ 78
1935
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
1936
+ p
1937
+ 0
1938
+ x
1939
+ 9
1940
+ location=
1941
+ M
1942
+ 1
1943
+ n
1944
+ n
1945
+ x
1946
+ 9
1947
+ location=
1948
+ i
1949
+ 16
1950
+ 5
1951
+ 48
1952
+ 0
1953
+ 7
1954
+ 1
1955
+ 64
1956
+ 20
1957
+ 0
1958
+ 13
1959
+ 18
1960
+ 3
1961
+ 49
1962
+ 2
1963
+ 2
1964
+ 15
1965
+ 11
1966
+ I
1967
+ 5
1968
+ I
1969
+ 1
1970
+ I
1971
+ 1
1972
+ I
1973
+ 1
1974
+ n
1975
+ p
1976
+ 3
1977
+ x
1978
+ 7
1979
+ headers
1980
+ s
1981
+ 8
1982
+ Location
1983
+ x
1984
+ 3
1985
+ []=
1986
+ p
1987
+ 5
1988
+ I
1989
+ -1
1990
+ I
1991
+ 6f
1992
+ I
1993
+ 0
1994
+ I
1995
+ 70
1996
+ I
1997
+ 10
1998
+ x
1999
+ 78
2000
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2001
+ p
2002
+ 1
2003
+ x
2004
+ 3
2005
+ url
2006
+ x
2007
+ 7
2008
+ url_for
2009
+ M
2010
+ 1
2011
+ n
2012
+ n
2013
+ x
2014
+ 7
2015
+ url_for
2016
+ i
2017
+ 3
2018
+ 20
2019
+ 0
2020
+ 11
2021
+ I
2022
+ 2
2023
+ I
2024
+ 1
2025
+ I
2026
+ 1
2027
+ I
2028
+ 1
2029
+ n
2030
+ p
2031
+ 0
2032
+ p
2033
+ 5
2034
+ I
2035
+ -1
2036
+ I
2037
+ 74
2038
+ I
2039
+ 0
2040
+ I
2041
+ 75
2042
+ I
2043
+ 3
2044
+ x
2045
+ 78
2046
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2047
+ p
2048
+ 1
2049
+ x
2050
+ 6
2051
+ string
2052
+ x
2053
+ 6
2054
+ status
2055
+ M
2056
+ 1
2057
+ n
2058
+ n
2059
+ x
2060
+ 6
2061
+ status
2062
+ i
2063
+ 3
2064
+ 39
2065
+ 0
2066
+ 11
2067
+ I
2068
+ 1
2069
+ I
2070
+ 0
2071
+ I
2072
+ 0
2073
+ I
2074
+ 0
2075
+ n
2076
+ p
2077
+ 1
2078
+ x
2079
+ 8
2080
+ @_status
2081
+ p
2082
+ 5
2083
+ I
2084
+ -1
2085
+ I
2086
+ 78
2087
+ I
2088
+ 0
2089
+ I
2090
+ 79
2091
+ I
2092
+ 3
2093
+ x
2094
+ 78
2095
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2096
+ p
2097
+ 0
2098
+ x
2099
+ 7
2100
+ status=
2101
+ M
2102
+ 1
2103
+ n
2104
+ n
2105
+ x
2106
+ 7
2107
+ status=
2108
+ i
2109
+ 13
2110
+ 45
2111
+ 0
2112
+ 1
2113
+ 43
2114
+ 2
2115
+ 20
2116
+ 0
2117
+ 49
2118
+ 3
2119
+ 1
2120
+ 38
2121
+ 4
2122
+ 11
2123
+ I
2124
+ 3
2125
+ I
2126
+ 1
2127
+ I
2128
+ 1
2129
+ I
2130
+ 1
2131
+ n
2132
+ p
2133
+ 5
2134
+ x
2135
+ 4
2136
+ Rack
2137
+ n
2138
+ x
2139
+ 5
2140
+ Utils
2141
+ x
2142
+ 11
2143
+ status_code
2144
+ x
2145
+ 8
2146
+ @_status
2147
+ p
2148
+ 5
2149
+ I
2150
+ -1
2151
+ I
2152
+ 7c
2153
+ I
2154
+ 0
2155
+ I
2156
+ 7d
2157
+ I
2158
+ d
2159
+ x
2160
+ 78
2161
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2162
+ p
2163
+ 1
2164
+ x
2165
+ 6
2166
+ status
2167
+ x
2168
+ 14
2169
+ response_body=
2170
+ M
2171
+ 1
2172
+ n
2173
+ n
2174
+ x
2175
+ 14
2176
+ response_body=
2177
+ i
2178
+ 27
2179
+ 20
2180
+ 0
2181
+ 7
2182
+ 0
2183
+ 49
2184
+ 1
2185
+ 1
2186
+ 9
2187
+ 13
2188
+ 20
2189
+ 0
2190
+ 8
2191
+ 17
2192
+ 20
2193
+ 0
2194
+ 35
2195
+ 1
2196
+ 19
2197
+ 1
2198
+ 15
2199
+ 20
2200
+ 1
2201
+ 54
2202
+ 52
2203
+ 2
2204
+ 1
2205
+ 11
2206
+ I
2207
+ 4
2208
+ I
2209
+ 2
2210
+ I
2211
+ 1
2212
+ I
2213
+ 1
2214
+ n
2215
+ p
2216
+ 3
2217
+ x
2218
+ 4
2219
+ each
2220
+ x
2221
+ 11
2222
+ respond_to?
2223
+ x
2224
+ 14
2225
+ response_body=
2226
+ p
2227
+ 7
2228
+ I
2229
+ -1
2230
+ I
2231
+ 80
2232
+ I
2233
+ 0
2234
+ I
2235
+ 81
2236
+ I
2237
+ 14
2238
+ I
2239
+ 82
2240
+ I
2241
+ 1b
2242
+ x
2243
+ 78
2244
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2245
+ p
2246
+ 2
2247
+ x
2248
+ 3
2249
+ val
2250
+ x
2251
+ 4
2252
+ body
2253
+ x
2254
+ 8
2255
+ dispatch
2256
+ M
2257
+ 1
2258
+ n
2259
+ n
2260
+ x
2261
+ 8
2262
+ dispatch
2263
+ i
2264
+ 39
2265
+ 20
2266
+ 1
2267
+ 38
2268
+ 0
2269
+ 15
2270
+ 20
2271
+ 1
2272
+ 49
2273
+ 1
2274
+ 0
2275
+ 38
2276
+ 2
2277
+ 15
2278
+ 39
2279
+ 2
2280
+ 7
2281
+ 3
2282
+ 64
2283
+ 5
2284
+ 13
2285
+ 18
2286
+ 3
2287
+ 49
2288
+ 4
2289
+ 2
2290
+ 15
2291
+ 15
2292
+ 5
2293
+ 20
2294
+ 0
2295
+ 47
2296
+ 49
2297
+ 5
2298
+ 1
2299
+ 15
2300
+ 5
2301
+ 48
2302
+ 6
2303
+ 11
2304
+ I
2305
+ 6
2306
+ I
2307
+ 2
2308
+ I
2309
+ 2
2310
+ I
2311
+ 2
2312
+ n
2313
+ p
2314
+ 7
2315
+ x
2316
+ 9
2317
+ @_request
2318
+ x
2319
+ 3
2320
+ env
2321
+ x
2322
+ 5
2323
+ @_env
2324
+ s
2325
+ 26
2326
+ action_controller.instance
2327
+ x
2328
+ 3
2329
+ []=
2330
+ x
2331
+ 7
2332
+ process
2333
+ x
2334
+ 4
2335
+ to_a
2336
+ p
2337
+ 13
2338
+ I
2339
+ -1
2340
+ I
2341
+ 86
2342
+ I
2343
+ 0
2344
+ I
2345
+ 87
2346
+ I
2347
+ 5
2348
+ I
2349
+ 88
2350
+ I
2351
+ d
2352
+ I
2353
+ 89
2354
+ I
2355
+ 1b
2356
+ I
2357
+ 8a
2358
+ I
2359
+ 23
2360
+ I
2361
+ 8b
2362
+ I
2363
+ 27
2364
+ x
2365
+ 78
2366
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2367
+ p
2368
+ 2
2369
+ x
2370
+ 4
2371
+ name
2372
+ x
2373
+ 7
2374
+ request
2375
+ x
2376
+ 4
2377
+ to_a
2378
+ M
2379
+ 1
2380
+ n
2381
+ n
2382
+ x
2383
+ 4
2384
+ to_a
2385
+ i
2386
+ 25
2387
+ 5
2388
+ 48
2389
+ 0
2390
+ 9
2391
+ 13
2392
+ 5
2393
+ 48
2394
+ 0
2395
+ 49
2396
+ 1
2397
+ 0
2398
+ 8
2399
+ 24
2400
+ 5
2401
+ 48
2402
+ 2
2403
+ 5
2404
+ 48
2405
+ 3
2406
+ 5
2407
+ 48
2408
+ 4
2409
+ 35
2410
+ 3
2411
+ 11
2412
+ I
2413
+ 3
2414
+ I
2415
+ 0
2416
+ I
2417
+ 0
2418
+ I
2419
+ 0
2420
+ n
2421
+ p
2422
+ 5
2423
+ x
2424
+ 8
2425
+ response
2426
+ x
2427
+ 4
2428
+ to_a
2429
+ x
2430
+ 6
2431
+ status
2432
+ x
2433
+ 7
2434
+ headers
2435
+ x
2436
+ 13
2437
+ response_body
2438
+ p
2439
+ 5
2440
+ I
2441
+ -1
2442
+ I
2443
+ 8f
2444
+ I
2445
+ 0
2446
+ I
2447
+ 90
2448
+ I
2449
+ 19
2450
+ x
2451
+ 78
2452
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2453
+ p
2454
+ 0
2455
+ x
2456
+ 16
2457
+ middleware_stack
2458
+ x
2459
+ 15
2460
+ class_attribute
2461
+ x
2462
+ 16
2463
+ ActionController
2464
+ n
2465
+ x
2466
+ 15
2467
+ MiddlewareStack
2468
+ x
2469
+ 3
2470
+ new
2471
+ x
2472
+ 8
2473
+ allocate
2474
+ x
2475
+ 17
2476
+ middleware_stack=
2477
+ x
2478
+ 9
2479
+ inherited
2480
+ M
2481
+ 1
2482
+ n
2483
+ n
2484
+ x
2485
+ 9
2486
+ inherited
2487
+ i
2488
+ 21
2489
+ 20
2490
+ 0
2491
+ 5
2492
+ 49
2493
+ 0
2494
+ 0
2495
+ 49
2496
+ 1
2497
+ 0
2498
+ 13
2499
+ 18
2500
+ 2
2501
+ 49
2502
+ 2
2503
+ 1
2504
+ 15
2505
+ 15
2506
+ 54
2507
+ 89
2508
+ 3
2509
+ 11
2510
+ I
2511
+ 4
2512
+ I
2513
+ 1
2514
+ I
2515
+ 1
2516
+ I
2517
+ 1
2518
+ n
2519
+ p
2520
+ 4
2521
+ x
2522
+ 16
2523
+ middleware_stack
2524
+ x
2525
+ 3
2526
+ dup
2527
+ x
2528
+ 17
2529
+ middleware_stack=
2530
+ x
2531
+ 9
2532
+ inherited
2533
+ p
2534
+ 7
2535
+ I
2536
+ -1
2537
+ I
2538
+ 96
2539
+ I
2540
+ 0
2541
+ I
2542
+ 97
2543
+ I
2544
+ 11
2545
+ I
2546
+ 98
2547
+ I
2548
+ 15
2549
+ x
2550
+ 78
2551
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2552
+ p
2553
+ 1
2554
+ x
2555
+ 4
2556
+ base
2557
+ x
2558
+ 3
2559
+ use
2560
+ M
2561
+ 1
2562
+ n
2563
+ n
2564
+ x
2565
+ 3
2566
+ use
2567
+ i
2568
+ 27
2569
+ 95
2570
+ 19
2571
+ 1
2572
+ 15
2573
+ 5
2574
+ 48
2575
+ 0
2576
+ 20
2577
+ 0
2578
+ 36
2579
+ 20
2580
+ 1
2581
+ 13
2582
+ 70
2583
+ 10
2584
+ 23
2585
+ 44
2586
+ 43
2587
+ 1
2588
+ 12
2589
+ 49
2590
+ 2
2591
+ 1
2592
+ 51
2593
+ 3
2594
+ 0
2595
+ 11
2596
+ I
2597
+ 6
2598
+ I
2599
+ 2
2600
+ I
2601
+ 0
2602
+ I
2603
+ 0
2604
+ I
2605
+ 0
2606
+ p
2607
+ 4
2608
+ x
2609
+ 16
2610
+ middleware_stack
2611
+ x
2612
+ 4
2613
+ Proc
2614
+ x
2615
+ 14
2616
+ __from_block__
2617
+ x
2618
+ 3
2619
+ use
2620
+ p
2621
+ 5
2622
+ I
2623
+ -1
2624
+ I
2625
+ 9b
2626
+ I
2627
+ 4
2628
+ I
2629
+ 9c
2630
+ I
2631
+ 1b
2632
+ x
2633
+ 78
2634
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2635
+ p
2636
+ 2
2637
+ x
2638
+ 4
2639
+ args
2640
+ x
2641
+ 5
2642
+ block
2643
+ x
2644
+ 10
2645
+ middleware
2646
+ M
2647
+ 1
2648
+ n
2649
+ n
2650
+ x
2651
+ 10
2652
+ middleware
2653
+ i
2654
+ 4
2655
+ 5
2656
+ 48
2657
+ 0
2658
+ 11
2659
+ I
2660
+ 1
2661
+ I
2662
+ 0
2663
+ I
2664
+ 0
2665
+ I
2666
+ 0
2667
+ n
2668
+ p
2669
+ 1
2670
+ x
2671
+ 16
2672
+ middleware_stack
2673
+ p
2674
+ 5
2675
+ I
2676
+ -1
2677
+ I
2678
+ 9f
2679
+ I
2680
+ 0
2681
+ I
2682
+ a0
2683
+ I
2684
+ 4
2685
+ x
2686
+ 78
2687
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2688
+ p
2689
+ 0
2690
+ x
2691
+ 4
2692
+ call
2693
+ M
2694
+ 1
2695
+ n
2696
+ n
2697
+ x
2698
+ 4
2699
+ call
2700
+ i
2701
+ 24
2702
+ 5
2703
+ 20
2704
+ 0
2705
+ 7
2706
+ 0
2707
+ 64
2708
+ 49
2709
+ 1
2710
+ 1
2711
+ 7
2712
+ 2
2713
+ 49
2714
+ 1
2715
+ 1
2716
+ 47
2717
+ 49
2718
+ 2
2719
+ 1
2720
+ 20
2721
+ 0
2722
+ 49
2723
+ 3
2724
+ 1
2725
+ 11
2726
+ I
2727
+ 4
2728
+ I
2729
+ 1
2730
+ I
2731
+ 1
2732
+ I
2733
+ 1
2734
+ n
2735
+ p
2736
+ 4
2737
+ s
2738
+ 39
2739
+ action_dispatch.request.path_parameters
2740
+ x
2741
+ 2
2742
+ []
2743
+ x
2744
+ 6
2745
+ action
2746
+ x
2747
+ 4
2748
+ call
2749
+ p
2750
+ 5
2751
+ I
2752
+ -1
2753
+ I
2754
+ a3
2755
+ I
2756
+ 0
2757
+ I
2758
+ a4
2759
+ I
2760
+ 18
2761
+ x
2762
+ 78
2763
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2764
+ p
2765
+ 1
2766
+ x
2767
+ 3
2768
+ env
2769
+ x
2770
+ 6
2771
+ action
2772
+ M
2773
+ 1
2774
+ n
2775
+ n
2776
+ x
2777
+ 6
2778
+ action
2779
+ i
2780
+ 26
2781
+ 23
2782
+ 1
2783
+ 10
2784
+ 12
2785
+ 45
2786
+ 0
2787
+ 1
2788
+ 43
2789
+ 2
2790
+ 19
2791
+ 1
2792
+ 15
2793
+ 5
2794
+ 48
2795
+ 3
2796
+ 20
2797
+ 0
2798
+ 49
2799
+ 4
2800
+ 0
2801
+ 56
2802
+ 5
2803
+ 50
2804
+ 6
2805
+ 1
2806
+ 11
2807
+ I
2808
+ 5
2809
+ I
2810
+ 2
2811
+ I
2812
+ 1
2813
+ I
2814
+ 2
2815
+ n
2816
+ p
2817
+ 7
2818
+ x
2819
+ 14
2820
+ ActionDispatch
2821
+ n
2822
+ x
2823
+ 7
2824
+ Request
2825
+ x
2826
+ 16
2827
+ middleware_stack
2828
+ x
2829
+ 4
2830
+ to_s
2831
+ M
2832
+ 1
2833
+ p
2834
+ 2
2835
+ x
2836
+ 9
2837
+ for_block
2838
+ t
2839
+ n
2840
+ x
2841
+ 6
2842
+ action
2843
+ i
2844
+ 62
2845
+ 57
2846
+ 19
2847
+ 0
2848
+ 15
2849
+ 5
2850
+ 13
2851
+ 72
2852
+ 0
2853
+ 47
2854
+ 9
2855
+ 23
2856
+ 47
2857
+ 49
2858
+ 1
2859
+ 0
2860
+ 13
2861
+ 47
2862
+ 49
2863
+ 2
2864
+ 0
2865
+ 15
2866
+ 8
2867
+ 27
2868
+ 47
2869
+ 49
2870
+ 0
2871
+ 0
2872
+ 21
2873
+ 1
2874
+ 0
2875
+ 21
2876
+ 1
2877
+ 1
2878
+ 13
2879
+ 71
2880
+ 0
2881
+ 47
2882
+ 9
2883
+ 53
2884
+ 47
2885
+ 49
2886
+ 1
2887
+ 0
2888
+ 13
2889
+ 20
2890
+ 0
2891
+ 47
2892
+ 49
2893
+ 2
2894
+ 1
2895
+ 15
2896
+ 8
2897
+ 58
2898
+ 20
2899
+ 0
2900
+ 49
2901
+ 0
2902
+ 1
2903
+ 49
2904
+ 3
2905
+ 2
2906
+ 11
2907
+ I
2908
+ 7
2909
+ I
2910
+ 1
2911
+ I
2912
+ 1
2913
+ I
2914
+ 1
2915
+ n
2916
+ p
2917
+ 4
2918
+ x
2919
+ 3
2920
+ new
2921
+ x
2922
+ 8
2923
+ allocate
2924
+ x
2925
+ 10
2926
+ initialize
2927
+ x
2928
+ 8
2929
+ dispatch
2930
+ p
2931
+ 5
2932
+ I
2933
+ 0
2934
+ I
2935
+ b1
2936
+ I
2937
+ 4
2938
+ I
2939
+ b2
2940
+ I
2941
+ 3e
2942
+ x
2943
+ 78
2944
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2945
+ p
2946
+ 1
2947
+ x
2948
+ 3
2949
+ env
2950
+ x
2951
+ 5
2952
+ build
2953
+ p
2954
+ 5
2955
+ I
2956
+ -1
2957
+ I
2958
+ b0
2959
+ I
2960
+ c
2961
+ I
2962
+ b1
2963
+ I
2964
+ 1a
2965
+ x
2966
+ 78
2967
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
2968
+ p
2969
+ 2
2970
+ x
2971
+ 4
2972
+ name
2973
+ x
2974
+ 5
2975
+ klass
2976
+ p
2977
+ 55
2978
+ I
2979
+ 2
2980
+ I
2981
+ 35
2982
+ I
2983
+ 8
2984
+ I
2985
+ 37
2986
+ I
2987
+ 10
2988
+ I
2989
+ 3f
2990
+ I
2991
+ 1b
2992
+ I
2993
+ 44
2994
+ I
2995
+ 29
2996
+ I
2997
+ 4e
2998
+ I
2999
+ 35
3000
+ I
3001
+ 4f
3002
+ I
3003
+ 4e
3004
+ I
3005
+ 51
3006
+ I
3007
+ 5c
3008
+ I
3009
+ 57
3010
+ I
3011
+ 6a
3012
+ I
3013
+ 5b
3014
+ I
3015
+ 78
3016
+ I
3017
+ 63
3018
+ I
3019
+ 86
3020
+ I
3021
+ 67
3022
+ I
3023
+ 94
3024
+ I
3025
+ 6b
3026
+ I
3027
+ a2
3028
+ I
3029
+ 6f
3030
+ I
3031
+ b0
3032
+ I
3033
+ 74
3034
+ I
3035
+ be
3036
+ I
3037
+ 78
3038
+ I
3039
+ cc
3040
+ I
3041
+ 7c
3042
+ I
3043
+ da
3044
+ I
3045
+ 80
3046
+ I
3047
+ e8
3048
+ I
3049
+ 86
3050
+ I
3051
+ f6
3052
+ I
3053
+ 8f
3054
+ I
3055
+ 104
3056
+ I
3057
+ 93
3058
+ I
3059
+ 10c
3060
+ I
3061
+ b6
3062
+ I
3063
+ 10d
3064
+ I
3065
+ 94
3066
+ I
3067
+ 130
3068
+ I
3069
+ 96
3070
+ I
3071
+ 13b
3072
+ I
3073
+ 9b
3074
+ I
3075
+ 146
3076
+ I
3077
+ 9f
3078
+ I
3079
+ 151
3080
+ I
3081
+ a3
3082
+ I
3083
+ 15c
3084
+ I
3085
+ b0
3086
+ I
3087
+ 167
3088
+ x
3089
+ 78
3090
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
3091
+ p
3092
+ 0
3093
+ p
3094
+ 5
3095
+ I
3096
+ 2
3097
+ I
3098
+ d
3099
+ I
3100
+ 21
3101
+ I
3102
+ 34
3103
+ I
3104
+ 40
3105
+ x
3106
+ 78
3107
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
3108
+ p
3109
+ 0
3110
+ x
3111
+ 13
3112
+ attach_method
3113
+ p
3114
+ 9
3115
+ I
3116
+ 0
3117
+ I
3118
+ 1
3119
+ I
3120
+ 9
3121
+ I
3122
+ 2
3123
+ I
3124
+ 12
3125
+ I
3126
+ 3
3127
+ I
3128
+ 1b
3129
+ I
3130
+ 5
3131
+ I
3132
+ 37
3133
+ x
3134
+ 78
3135
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_controller/metal.rb
3136
+ p
3137
+ 0