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