actionpack 3.0.6 → 3.0.7.rc1

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