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,1856 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
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
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 36
72
+ active_support/core_ext/object/blank
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 3
78
+ set
79
+ x
80
+ 10
81
+ ActionView
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 10
94
+ ActionView
95
+ i
96
+ 28
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 65
103
+ 49
104
+ 1
105
+ 2
106
+ 13
107
+ 99
108
+ 12
109
+ 7
110
+ 2
111
+ 12
112
+ 7
113
+ 3
114
+ 12
115
+ 65
116
+ 12
117
+ 49
118
+ 4
119
+ 4
120
+ 15
121
+ 49
122
+ 2
123
+ 0
124
+ 11
125
+ I
126
+ 6
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 5
136
+ x
137
+ 7
138
+ Helpers
139
+ x
140
+ 11
141
+ open_module
142
+ x
143
+ 15
144
+ __module_init__
145
+ M
146
+ 1
147
+ n
148
+ n
149
+ x
150
+ 7
151
+ Helpers
152
+ i
153
+ 28
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 65
160
+ 49
161
+ 1
162
+ 2
163
+ 13
164
+ 99
165
+ 12
166
+ 7
167
+ 2
168
+ 12
169
+ 7
170
+ 3
171
+ 12
172
+ 65
173
+ 12
174
+ 49
175
+ 4
176
+ 4
177
+ 15
178
+ 49
179
+ 2
180
+ 0
181
+ 11
182
+ I
183
+ 6
184
+ I
185
+ 0
186
+ I
187
+ 0
188
+ I
189
+ 0
190
+ n
191
+ p
192
+ 5
193
+ x
194
+ 9
195
+ TagHelper
196
+ x
197
+ 11
198
+ open_module
199
+ x
200
+ 15
201
+ __module_init__
202
+ M
203
+ 1
204
+ n
205
+ n
206
+ x
207
+ 9
208
+ TagHelper
209
+ i
210
+ 214
211
+ 5
212
+ 66
213
+ 5
214
+ 45
215
+ 0
216
+ 1
217
+ 43
218
+ 2
219
+ 47
220
+ 49
221
+ 3
222
+ 1
223
+ 15
224
+ 5
225
+ 45
226
+ 4
227
+ 5
228
+ 43
229
+ 6
230
+ 47
231
+ 49
232
+ 7
233
+ 1
234
+ 15
235
+ 5
236
+ 45
237
+ 8
238
+ 9
239
+ 47
240
+ 49
241
+ 3
242
+ 1
243
+ 15
244
+ 65
245
+ 7
246
+ 10
247
+ 7
248
+ 11
249
+ 64
250
+ 7
251
+ 12
252
+ 64
253
+ 7
254
+ 13
255
+ 64
256
+ 7
257
+ 14
258
+ 64
259
+ 7
260
+ 15
261
+ 64
262
+ 7
263
+ 16
264
+ 64
265
+ 7
266
+ 17
267
+ 64
268
+ 7
269
+ 18
270
+ 64
271
+ 7
272
+ 19
273
+ 64
274
+ 7
275
+ 20
276
+ 64
277
+ 7
278
+ 21
279
+ 64
280
+ 7
281
+ 22
282
+ 64
283
+ 7
284
+ 23
285
+ 64
286
+ 7
287
+ 24
288
+ 64
289
+ 7
290
+ 25
291
+ 64
292
+ 7
293
+ 26
294
+ 64
295
+ 7
296
+ 27
297
+ 64
298
+ 7
299
+ 28
300
+ 64
301
+ 7
302
+ 29
303
+ 64
304
+ 7
305
+ 30
306
+ 64
307
+ 7
308
+ 31
309
+ 64
310
+ 7
311
+ 32
312
+ 64
313
+ 35
314
+ 22
315
+ 49
316
+ 33
317
+ 0
318
+ 49
319
+ 34
320
+ 2
321
+ 15
322
+ 45
323
+ 10
324
+ 35
325
+ 45
326
+ 10
327
+ 36
328
+ 56
329
+ 37
330
+ 50
331
+ 38
332
+ 0
333
+ 49
334
+ 39
335
+ 1
336
+ 15
337
+ 99
338
+ 7
339
+ 40
340
+ 7
341
+ 41
342
+ 65
343
+ 67
344
+ 49
345
+ 42
346
+ 0
347
+ 49
348
+ 43
349
+ 4
350
+ 15
351
+ 99
352
+ 7
353
+ 44
354
+ 7
355
+ 45
356
+ 65
357
+ 67
358
+ 49
359
+ 42
360
+ 0
361
+ 49
362
+ 43
363
+ 4
364
+ 15
365
+ 99
366
+ 7
367
+ 46
368
+ 7
369
+ 47
370
+ 65
371
+ 67
372
+ 49
373
+ 42
374
+ 0
375
+ 49
376
+ 43
377
+ 4
378
+ 15
379
+ 99
380
+ 7
381
+ 48
382
+ 7
383
+ 49
384
+ 65
385
+ 67
386
+ 49
387
+ 42
388
+ 0
389
+ 49
390
+ 43
391
+ 4
392
+ 15
393
+ 5
394
+ 48
395
+ 50
396
+ 15
397
+ 99
398
+ 7
399
+ 51
400
+ 7
401
+ 52
402
+ 65
403
+ 67
404
+ 49
405
+ 42
406
+ 0
407
+ 49
408
+ 43
409
+ 4
410
+ 15
411
+ 99
412
+ 7
413
+ 53
414
+ 7
415
+ 54
416
+ 65
417
+ 67
418
+ 49
419
+ 42
420
+ 0
421
+ 49
422
+ 43
423
+ 4
424
+ 11
425
+ I
426
+ 18
427
+ I
428
+ 0
429
+ I
430
+ 0
431
+ I
432
+ 0
433
+ n
434
+ p
435
+ 55
436
+ x
437
+ 3
438
+ ERB
439
+ n
440
+ x
441
+ 4
442
+ Util
443
+ x
444
+ 7
445
+ include
446
+ x
447
+ 13
448
+ ActiveSupport
449
+ n
450
+ x
451
+ 7
452
+ Concern
453
+ x
454
+ 6
455
+ extend
456
+ x
457
+ 13
458
+ CaptureHelper
459
+ n
460
+ x
461
+ 18
462
+ BOOLEAN_ATTRIBUTES
463
+ s
464
+ 8
465
+ disabled
466
+ s
467
+ 8
468
+ readonly
469
+ s
470
+ 8
471
+ multiple
472
+ s
473
+ 7
474
+ checked
475
+ s
476
+ 10
477
+ autobuffer
478
+ s
479
+ 8
480
+ autoplay
481
+ s
482
+ 8
483
+ controls
484
+ s
485
+ 4
486
+ loop
487
+ s
488
+ 8
489
+ selected
490
+ s
491
+ 6
492
+ hidden
493
+ s
494
+ 6
495
+ scoped
496
+ s
497
+ 5
498
+ async
499
+ s
500
+ 5
501
+ defer
502
+ s
503
+ 8
504
+ reversed
505
+ s
506
+ 5
507
+ ismap
508
+ s
509
+ 8
510
+ seemless
511
+ s
512
+ 5
513
+ muted
514
+ s
515
+ 8
516
+ required
517
+ s
518
+ 9
519
+ autofocus
520
+ s
521
+ 10
522
+ novalidate
523
+ s
524
+ 14
525
+ formnovalidate
526
+ s
527
+ 4
528
+ open
529
+ x
530
+ 6
531
+ to_set
532
+ x
533
+ 9
534
+ const_set
535
+ n
536
+ n
537
+ M
538
+ 1
539
+ p
540
+ 2
541
+ x
542
+ 9
543
+ for_block
544
+ t
545
+ n
546
+ x
547
+ 9
548
+ TagHelper
549
+ i
550
+ 10
551
+ 57
552
+ 19
553
+ 0
554
+ 15
555
+ 20
556
+ 0
557
+ 49
558
+ 0
559
+ 0
560
+ 11
561
+ I
562
+ 3
563
+ I
564
+ 1
565
+ I
566
+ 1
567
+ I
568
+ 1
569
+ n
570
+ p
571
+ 1
572
+ x
573
+ 6
574
+ to_sym
575
+ p
576
+ 3
577
+ I
578
+ 0
579
+ I
580
+ 13
581
+ I
582
+ a
583
+ x
584
+ 85
585
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
586
+ p
587
+ 1
588
+ x
589
+ 4
590
+ attr
591
+ x
592
+ 3
593
+ map
594
+ x
595
+ 5
596
+ merge
597
+ x
598
+ 3
599
+ tag
600
+ M
601
+ 1
602
+ n
603
+ n
604
+ x
605
+ 3
606
+ tag
607
+ i
608
+ 71
609
+ 23
610
+ 1
611
+ 10
612
+ 8
613
+ 1
614
+ 19
615
+ 1
616
+ 15
617
+ 23
618
+ 2
619
+ 10
620
+ 16
621
+ 3
622
+ 19
623
+ 2
624
+ 15
625
+ 23
626
+ 3
627
+ 10
628
+ 24
629
+ 2
630
+ 19
631
+ 3
632
+ 15
633
+ 7
634
+ 0
635
+ 20
636
+ 0
637
+ 47
638
+ 101
639
+ 1
640
+ 20
641
+ 1
642
+ 9
643
+ 46
644
+ 5
645
+ 20
646
+ 1
647
+ 20
648
+ 3
649
+ 47
650
+ 49
651
+ 2
652
+ 2
653
+ 8
654
+ 47
655
+ 1
656
+ 47
657
+ 101
658
+ 1
659
+ 20
660
+ 2
661
+ 9
662
+ 59
663
+ 7
664
+ 3
665
+ 64
666
+ 8
667
+ 62
668
+ 7
669
+ 4
670
+ 64
671
+ 47
672
+ 101
673
+ 1
674
+ 63
675
+ 4
676
+ 49
677
+ 5
678
+ 0
679
+ 11
680
+ I
681
+ 9
682
+ I
683
+ 4
684
+ I
685
+ 1
686
+ I
687
+ 4
688
+ n
689
+ p
690
+ 6
691
+ s
692
+ 1
693
+ <
694
+ x
695
+ 4
696
+ to_s
697
+ x
698
+ 11
699
+ tag_options
700
+ s
701
+ 1
702
+ >
703
+ s
704
+ 3
705
+ />
706
+ x
707
+ 9
708
+ html_safe
709
+ p
710
+ 5
711
+ I
712
+ -1
713
+ I
714
+ 2f
715
+ I
716
+ 18
717
+ I
718
+ 30
719
+ I
720
+ 47
721
+ x
722
+ 85
723
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
724
+ p
725
+ 4
726
+ x
727
+ 4
728
+ name
729
+ x
730
+ 7
731
+ options
732
+ x
733
+ 4
734
+ open
735
+ x
736
+ 6
737
+ escape
738
+ x
739
+ 17
740
+ method_visibility
741
+ x
742
+ 15
743
+ add_defn_method
744
+ x
745
+ 11
746
+ content_tag
747
+ M
748
+ 1
749
+ n
750
+ n
751
+ x
752
+ 11
753
+ content_tag
754
+ i
755
+ 94
756
+ 23
757
+ 1
758
+ 10
759
+ 8
760
+ 1
761
+ 19
762
+ 1
763
+ 15
764
+ 23
765
+ 2
766
+ 10
767
+ 16
768
+ 1
769
+ 19
770
+ 2
771
+ 15
772
+ 23
773
+ 3
774
+ 10
775
+ 24
776
+ 2
777
+ 19
778
+ 3
779
+ 15
780
+ 95
781
+ 19
782
+ 4
783
+ 15
784
+ 94
785
+ 9
786
+ 80
787
+ 20
788
+ 1
789
+ 45
790
+ 0
791
+ 1
792
+ 49
793
+ 2
794
+ 1
795
+ 9
796
+ 47
797
+ 20
798
+ 1
799
+ 19
800
+ 2
801
+ 8
802
+ 48
803
+ 1
804
+ 15
805
+ 5
806
+ 20
807
+ 0
808
+ 5
809
+ 20
810
+ 4
811
+ 13
812
+ 70
813
+ 10
814
+ 66
815
+ 44
816
+ 43
817
+ 3
818
+ 12
819
+ 49
820
+ 4
821
+ 1
822
+ 47
823
+ 50
824
+ 5
825
+ 0
826
+ 20
827
+ 2
828
+ 20
829
+ 3
830
+ 47
831
+ 49
832
+ 6
833
+ 4
834
+ 8
835
+ 93
836
+ 5
837
+ 20
838
+ 0
839
+ 20
840
+ 1
841
+ 20
842
+ 2
843
+ 20
844
+ 3
845
+ 47
846
+ 49
847
+ 6
848
+ 4
849
+ 11
850
+ I
851
+ a
852
+ I
853
+ 5
854
+ I
855
+ 1
856
+ I
857
+ 4
858
+ n
859
+ p
860
+ 7
861
+ x
862
+ 4
863
+ Hash
864
+ n
865
+ x
866
+ 5
867
+ is_a?
868
+ x
869
+ 4
870
+ Proc
871
+ x
872
+ 14
873
+ __from_block__
874
+ x
875
+ 7
876
+ capture
877
+ x
878
+ 18
879
+ content_tag_string
880
+ p
881
+ 11
882
+ I
883
+ -1
884
+ I
885
+ 4a
886
+ I
887
+ 1c
888
+ I
889
+ 4b
890
+ I
891
+ 1f
892
+ I
893
+ 4c
894
+ I
895
+ 31
896
+ I
897
+ 4d
898
+ I
899
+ 50
900
+ I
901
+ 4f
902
+ I
903
+ 5e
904
+ x
905
+ 85
906
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
907
+ p
908
+ 5
909
+ x
910
+ 4
911
+ name
912
+ x
913
+ 29
914
+ content_or_options_with_block
915
+ x
916
+ 7
917
+ options
918
+ x
919
+ 6
920
+ escape
921
+ x
922
+ 5
923
+ block
924
+ x
925
+ 13
926
+ cdata_section
927
+ M
928
+ 1
929
+ n
930
+ n
931
+ x
932
+ 13
933
+ cdata_section
934
+ i
935
+ 15
936
+ 7
937
+ 0
938
+ 20
939
+ 0
940
+ 47
941
+ 101
942
+ 1
943
+ 7
944
+ 2
945
+ 63
946
+ 3
947
+ 49
948
+ 3
949
+ 0
950
+ 11
951
+ I
952
+ 4
953
+ I
954
+ 1
955
+ I
956
+ 1
957
+ I
958
+ 1
959
+ n
960
+ p
961
+ 4
962
+ s
963
+ 9
964
+ <![CDATA[
965
+ x
966
+ 4
967
+ to_s
968
+ s
969
+ 3
970
+ ]]>
971
+ x
972
+ 9
973
+ html_safe
974
+ p
975
+ 5
976
+ I
977
+ -1
978
+ I
979
+ 5e
980
+ I
981
+ 0
982
+ I
983
+ 5f
984
+ I
985
+ f
986
+ x
987
+ 85
988
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
989
+ p
990
+ 1
991
+ x
992
+ 7
993
+ content
994
+ x
995
+ 11
996
+ escape_once
997
+ M
998
+ 1
999
+ n
1000
+ n
1001
+ x
1002
+ 11
1003
+ escape_once
1004
+ i
1005
+ 37
1006
+ 45
1007
+ 0
1008
+ 1
1009
+ 43
1010
+ 2
1011
+ 20
1012
+ 0
1013
+ 49
1014
+ 3
1015
+ 0
1016
+ 49
1017
+ 4
1018
+ 1
1019
+ 7
1020
+ 5
1021
+ 13
1022
+ 70
1023
+ 9
1024
+ 31
1025
+ 15
1026
+ 44
1027
+ 43
1028
+ 6
1029
+ 7
1030
+ 7
1031
+ 78
1032
+ 49
1033
+ 8
1034
+ 2
1035
+ 6
1036
+ 5
1037
+ 56
1038
+ 9
1039
+ 50
1040
+ 10
1041
+ 1
1042
+ 11
1043
+ I
1044
+ 5
1045
+ I
1046
+ 1
1047
+ I
1048
+ 1
1049
+ I
1050
+ 1
1051
+ n
1052
+ p
1053
+ 11
1054
+ x
1055
+ 13
1056
+ ActiveSupport
1057
+ n
1058
+ x
1059
+ 9
1060
+ Multibyte
1061
+ x
1062
+ 4
1063
+ to_s
1064
+ x
1065
+ 5
1066
+ clean
1067
+ n
1068
+ x
1069
+ 6
1070
+ Regexp
1071
+ s
1072
+ 31
1073
+ [\"><]|&(?!([a-zA-Z]+|(#\d+));)
1074
+ x
1075
+ 3
1076
+ new
1077
+ M
1078
+ 1
1079
+ p
1080
+ 2
1081
+ x
1082
+ 9
1083
+ for_block
1084
+ t
1085
+ n
1086
+ x
1087
+ 11
1088
+ escape_once
1089
+ i
1090
+ 17
1091
+ 57
1092
+ 19
1093
+ 0
1094
+ 15
1095
+ 45
1096
+ 0
1097
+ 1
1098
+ 43
1099
+ 2
1100
+ 43
1101
+ 3
1102
+ 20
1103
+ 0
1104
+ 49
1105
+ 4
1106
+ 1
1107
+ 11
1108
+ I
1109
+ 4
1110
+ I
1111
+ 1
1112
+ I
1113
+ 1
1114
+ I
1115
+ 1
1116
+ n
1117
+ p
1118
+ 5
1119
+ x
1120
+ 3
1121
+ ERB
1122
+ n
1123
+ x
1124
+ 4
1125
+ Util
1126
+ x
1127
+ 11
1128
+ HTML_ESCAPE
1129
+ x
1130
+ 2
1131
+ []
1132
+ p
1133
+ 3
1134
+ I
1135
+ 0
1136
+ I
1137
+ 6b
1138
+ I
1139
+ 11
1140
+ x
1141
+ 85
1142
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1143
+ p
1144
+ 1
1145
+ x
1146
+ 7
1147
+ special
1148
+ x
1149
+ 4
1150
+ gsub
1151
+ p
1152
+ 5
1153
+ I
1154
+ -1
1155
+ I
1156
+ 6a
1157
+ I
1158
+ 0
1159
+ I
1160
+ 6b
1161
+ I
1162
+ 25
1163
+ x
1164
+ 85
1165
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1166
+ p
1167
+ 1
1168
+ x
1169
+ 4
1170
+ html
1171
+ x
1172
+ 7
1173
+ private
1174
+ x
1175
+ 18
1176
+ content_tag_string
1177
+ M
1178
+ 1
1179
+ n
1180
+ n
1181
+ x
1182
+ 18
1183
+ content_tag_string
1184
+ i
1185
+ 77
1186
+ 23
1187
+ 3
1188
+ 10
1189
+ 8
1190
+ 2
1191
+ 19
1192
+ 3
1193
+ 15
1194
+ 20
1195
+ 2
1196
+ 9
1197
+ 25
1198
+ 5
1199
+ 20
1200
+ 2
1201
+ 20
1202
+ 3
1203
+ 47
1204
+ 49
1205
+ 0
1206
+ 2
1207
+ 19
1208
+ 4
1209
+ 8
1210
+ 26
1211
+ 1
1212
+ 15
1213
+ 7
1214
+ 1
1215
+ 20
1216
+ 0
1217
+ 47
1218
+ 101
1219
+ 2
1220
+ 20
1221
+ 4
1222
+ 47
1223
+ 101
1224
+ 2
1225
+ 7
1226
+ 3
1227
+ 20
1228
+ 3
1229
+ 9
1230
+ 57
1231
+ 45
1232
+ 4
1233
+ 5
1234
+ 43
1235
+ 6
1236
+ 20
1237
+ 1
1238
+ 49
1239
+ 7
1240
+ 1
1241
+ 8
1242
+ 59
1243
+ 20
1244
+ 1
1245
+ 47
1246
+ 101
1247
+ 2
1248
+ 7
1249
+ 8
1250
+ 20
1251
+ 0
1252
+ 47
1253
+ 101
1254
+ 2
1255
+ 7
1256
+ 3
1257
+ 63
1258
+ 8
1259
+ 49
1260
+ 9
1261
+ 0
1262
+ 11
1263
+ I
1264
+ d
1265
+ I
1266
+ 5
1267
+ I
1268
+ 3
1269
+ I
1270
+ 4
1271
+ n
1272
+ p
1273
+ 10
1274
+ x
1275
+ 11
1276
+ tag_options
1277
+ s
1278
+ 1
1279
+ <
1280
+ x
1281
+ 4
1282
+ to_s
1283
+ s
1284
+ 1
1285
+ >
1286
+ x
1287
+ 3
1288
+ ERB
1289
+ n
1290
+ x
1291
+ 4
1292
+ Util
1293
+ x
1294
+ 1
1295
+ h
1296
+ s
1297
+ 2
1298
+ </
1299
+ x
1300
+ 9
1301
+ html_safe
1302
+ p
1303
+ 7
1304
+ I
1305
+ -1
1306
+ I
1307
+ 70
1308
+ I
1309
+ 8
1310
+ I
1311
+ 71
1312
+ I
1313
+ 1b
1314
+ I
1315
+ 72
1316
+ I
1317
+ 4d
1318
+ x
1319
+ 85
1320
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1321
+ p
1322
+ 5
1323
+ x
1324
+ 4
1325
+ name
1326
+ x
1327
+ 7
1328
+ content
1329
+ x
1330
+ 7
1331
+ options
1332
+ x
1333
+ 6
1334
+ escape
1335
+ x
1336
+ 11
1337
+ tag_options
1338
+ x
1339
+ 11
1340
+ tag_options
1341
+ M
1342
+ 1
1343
+ n
1344
+ n
1345
+ x
1346
+ 11
1347
+ tag_options
1348
+ i
1349
+ 63
1350
+ 23
1351
+ 1
1352
+ 10
1353
+ 8
1354
+ 2
1355
+ 19
1356
+ 1
1357
+ 15
1358
+ 20
1359
+ 0
1360
+ 49
1361
+ 0
1362
+ 0
1363
+ 9
1364
+ 18
1365
+ 1
1366
+ 8
1367
+ 62
1368
+ 35
1369
+ 0
1370
+ 19
1371
+ 2
1372
+ 15
1373
+ 20
1374
+ 0
1375
+ 56
1376
+ 1
1377
+ 50
1378
+ 2
1379
+ 0
1380
+ 15
1381
+ 20
1382
+ 2
1383
+ 49
1384
+ 3
1385
+ 0
1386
+ 9
1387
+ 41
1388
+ 1
1389
+ 8
1390
+ 62
1391
+ 7
1392
+ 4
1393
+ 20
1394
+ 2
1395
+ 49
1396
+ 5
1397
+ 0
1398
+ 7
1399
+ 4
1400
+ 64
1401
+ 49
1402
+ 6
1403
+ 1
1404
+ 47
1405
+ 101
1406
+ 7
1407
+ 63
1408
+ 2
1409
+ 49
1410
+ 8
1411
+ 0
1412
+ 11
1413
+ I
1414
+ 6
1415
+ I
1416
+ 3
1417
+ I
1418
+ 1
1419
+ I
1420
+ 2
1421
+ n
1422
+ p
1423
+ 9
1424
+ x
1425
+ 6
1426
+ blank?
1427
+ M
1428
+ 1
1429
+ p
1430
+ 2
1431
+ x
1432
+ 9
1433
+ for_block
1434
+ t
1435
+ n
1436
+ x
1437
+ 11
1438
+ tag_options
1439
+ i
1440
+ 133
1441
+ 58
1442
+ 37
1443
+ 19
1444
+ 0
1445
+ 15
1446
+ 37
1447
+ 19
1448
+ 1
1449
+ 15
1450
+ 15
1451
+ 45
1452
+ 0
1453
+ 1
1454
+ 20
1455
+ 0
1456
+ 49
1457
+ 2
1458
+ 1
1459
+ 9
1460
+ 51
1461
+ 20
1462
+ 1
1463
+ 9
1464
+ 48
1465
+ 21
1466
+ 1
1467
+ 2
1468
+ 20
1469
+ 0
1470
+ 47
1471
+ 101
1472
+ 3
1473
+ 7
1474
+ 4
1475
+ 20
1476
+ 0
1477
+ 47
1478
+ 101
1479
+ 3
1480
+ 7
1481
+ 5
1482
+ 63
1483
+ 4
1484
+ 49
1485
+ 6
1486
+ 1
1487
+ 8
1488
+ 49
1489
+ 1
1490
+ 8
1491
+ 132
1492
+ 20
1493
+ 1
1494
+ 49
1495
+ 7
1496
+ 0
1497
+ 10
1498
+ 61
1499
+ 2
1500
+ 8
1501
+ 62
1502
+ 3
1503
+ 9
1504
+ 131
1505
+ 20
1506
+ 1
1507
+ 45
1508
+ 8
1509
+ 9
1510
+ 49
1511
+ 10
1512
+ 1
1513
+ 9
1514
+ 84
1515
+ 20
1516
+ 1
1517
+ 7
1518
+ 11
1519
+ 64
1520
+ 49
1521
+ 12
1522
+ 1
1523
+ 8
1524
+ 86
1525
+ 20
1526
+ 1
1527
+ 19
1528
+ 2
1529
+ 15
1530
+ 21
1531
+ 1
1532
+ 1
1533
+ 9
1534
+ 105
1535
+ 5
1536
+ 20
1537
+ 2
1538
+ 47
1539
+ 49
1540
+ 13
1541
+ 1
1542
+ 19
1543
+ 2
1544
+ 8
1545
+ 106
1546
+ 1
1547
+ 15
1548
+ 21
1549
+ 1
1550
+ 2
1551
+ 20
1552
+ 0
1553
+ 47
1554
+ 101
1555
+ 3
1556
+ 7
1557
+ 4
1558
+ 20
1559
+ 2
1560
+ 47
1561
+ 101
1562
+ 3
1563
+ 7
1564
+ 5
1565
+ 63
1566
+ 4
1567
+ 49
1568
+ 6
1569
+ 1
1570
+ 8
1571
+ 132
1572
+ 1
1573
+ 11
1574
+ I
1575
+ 9
1576
+ I
1577
+ 3
1578
+ I
1579
+ 2
1580
+ I
1581
+ 2
1582
+ n
1583
+ p
1584
+ 14
1585
+ x
1586
+ 18
1587
+ BOOLEAN_ATTRIBUTES
1588
+ n
1589
+ x
1590
+ 8
1591
+ include?
1592
+ x
1593
+ 4
1594
+ to_s
1595
+ s
1596
+ 2
1597
+ ="
1598
+ s
1599
+ 1
1600
+ "
1601
+ x
1602
+ 2
1603
+ <<
1604
+ x
1605
+ 4
1606
+ nil?
1607
+ x
1608
+ 5
1609
+ Array
1610
+ n
1611
+ x
1612
+ 5
1613
+ is_a?
1614
+ s
1615
+ 1
1616
+
1617
+ x
1618
+ 4
1619
+ join
1620
+ x
1621
+ 11
1622
+ html_escape
1623
+ p
1624
+ 17
1625
+ I
1626
+ 0
1627
+ I
1628
+ 78
1629
+ I
1630
+ a
1631
+ I
1632
+ 79
1633
+ I
1634
+ 14
1635
+ I
1636
+ 7a
1637
+ I
1638
+ 33
1639
+ I
1640
+ 7b
1641
+ I
1642
+ 40
1643
+ I
1644
+ 7c
1645
+ I
1646
+ 59
1647
+ I
1648
+ 7d
1649
+ I
1650
+ 6b
1651
+ I
1652
+ 7e
1653
+ I
1654
+ 83
1655
+ I
1656
+ 7b
1657
+ I
1658
+ 85
1659
+ x
1660
+ 85
1661
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1662
+ p
1663
+ 3
1664
+ x
1665
+ 3
1666
+ key
1667
+ x
1668
+ 5
1669
+ value
1670
+ x
1671
+ 11
1672
+ final_value
1673
+ x
1674
+ 9
1675
+ each_pair
1676
+ x
1677
+ 6
1678
+ empty?
1679
+ s
1680
+ 1
1681
+
1682
+ x
1683
+ 4
1684
+ sort
1685
+ x
1686
+ 1
1687
+ *
1688
+ x
1689
+ 4
1690
+ to_s
1691
+ x
1692
+ 9
1693
+ html_safe
1694
+ p
1695
+ 11
1696
+ I
1697
+ -1
1698
+ I
1699
+ 75
1700
+ I
1701
+ 8
1702
+ I
1703
+ 76
1704
+ I
1705
+ 12
1706
+ I
1707
+ 77
1708
+ I
1709
+ 17
1710
+ I
1711
+ 78
1712
+ I
1713
+ 1f
1714
+ I
1715
+ 81
1716
+ I
1717
+ 3f
1718
+ x
1719
+ 85
1720
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1721
+ p
1722
+ 3
1723
+ x
1724
+ 7
1725
+ options
1726
+ x
1727
+ 6
1728
+ escape
1729
+ x
1730
+ 5
1731
+ attrs
1732
+ p
1733
+ 31
1734
+ I
1735
+ 2
1736
+ I
1737
+ a
1738
+ I
1739
+ d
1740
+ I
1741
+ c
1742
+ I
1743
+ 18
1744
+ I
1745
+ d
1746
+ I
1747
+ 21
1748
+ I
1749
+ f
1750
+ I
1751
+ 33
1752
+ I
1753
+ 10
1754
+ I
1755
+ 48
1756
+ I
1757
+ 11
1758
+ I
1759
+ 5a
1760
+ I
1761
+ 12
1762
+ I
1763
+ 6f
1764
+ I
1765
+ 13
1766
+ I
1767
+ 7e
1768
+ I
1769
+ 2f
1770
+ I
1771
+ 8c
1772
+ I
1773
+ 4a
1774
+ I
1775
+ 9a
1776
+ I
1777
+ 5e
1778
+ I
1779
+ a8
1780
+ I
1781
+ 6a
1782
+ I
1783
+ b6
1784
+ I
1785
+ 6e
1786
+ I
1787
+ ba
1788
+ I
1789
+ 70
1790
+ I
1791
+ c8
1792
+ I
1793
+ 75
1794
+ I
1795
+ d6
1796
+ x
1797
+ 85
1798
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1799
+ p
1800
+ 0
1801
+ x
1802
+ 13
1803
+ attach_method
1804
+ p
1805
+ 3
1806
+ I
1807
+ 2
1808
+ I
1809
+ 9
1810
+ I
1811
+ 1c
1812
+ x
1813
+ 85
1814
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1815
+ p
1816
+ 0
1817
+ x
1818
+ 13
1819
+ attach_method
1820
+ p
1821
+ 3
1822
+ I
1823
+ 2
1824
+ I
1825
+ 6
1826
+ I
1827
+ 1c
1828
+ x
1829
+ 85
1830
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1831
+ p
1832
+ 0
1833
+ x
1834
+ 13
1835
+ attach_method
1836
+ p
1837
+ 7
1838
+ I
1839
+ 0
1840
+ I
1841
+ 1
1842
+ I
1843
+ 9
1844
+ I
1845
+ 2
1846
+ I
1847
+ 12
1848
+ I
1849
+ 4
1850
+ I
1851
+ 2e
1852
+ x
1853
+ 85
1854
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_view/helpers/tag_helper.rb
1855
+ p
1856
+ 0