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,4350 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 36
63
+ active_support/core_ext/object/blank
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 14
69
+ ActionDispatch
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 14
82
+ ActionDispatch
83
+ i
84
+ 56
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 1
91
+ 65
92
+ 49
93
+ 1
94
+ 3
95
+ 13
96
+ 99
97
+ 12
98
+ 7
99
+ 2
100
+ 12
101
+ 7
102
+ 3
103
+ 12
104
+ 65
105
+ 12
106
+ 49
107
+ 4
108
+ 4
109
+ 15
110
+ 49
111
+ 2
112
+ 0
113
+ 15
114
+ 99
115
+ 7
116
+ 5
117
+ 1
118
+ 65
119
+ 49
120
+ 1
121
+ 3
122
+ 13
123
+ 99
124
+ 12
125
+ 7
126
+ 2
127
+ 12
128
+ 7
129
+ 6
130
+ 12
131
+ 65
132
+ 12
133
+ 49
134
+ 4
135
+ 4
136
+ 15
137
+ 49
138
+ 2
139
+ 0
140
+ 11
141
+ I
142
+ 6
143
+ I
144
+ 0
145
+ I
146
+ 0
147
+ I
148
+ 0
149
+ n
150
+ p
151
+ 7
152
+ x
153
+ 7
154
+ Request
155
+ x
156
+ 10
157
+ open_class
158
+ x
159
+ 14
160
+ __class_init__
161
+ M
162
+ 1
163
+ n
164
+ n
165
+ x
166
+ 7
167
+ Request
168
+ i
169
+ 16
170
+ 5
171
+ 66
172
+ 99
173
+ 7
174
+ 0
175
+ 7
176
+ 1
177
+ 65
178
+ 67
179
+ 49
180
+ 2
181
+ 0
182
+ 49
183
+ 3
184
+ 4
185
+ 11
186
+ I
187
+ 5
188
+ I
189
+ 0
190
+ I
191
+ 0
192
+ I
193
+ 0
194
+ n
195
+ p
196
+ 4
197
+ x
198
+ 10
199
+ cookie_jar
200
+ M
201
+ 1
202
+ n
203
+ n
204
+ x
205
+ 10
206
+ cookie_jar
207
+ i
208
+ 38
209
+ 5
210
+ 48
211
+ 0
212
+ 7
213
+ 1
214
+ 64
215
+ 14
216
+ 2
217
+ 49
218
+ 2
219
+ 1
220
+ 13
221
+ 10
222
+ 33
223
+ 15
224
+ 45
225
+ 3
226
+ 4
227
+ 43
228
+ 5
229
+ 5
230
+ 49
231
+ 6
232
+ 1
233
+ 13
234
+ 18
235
+ 3
236
+ 49
237
+ 7
238
+ 2
239
+ 15
240
+ 8
241
+ 37
242
+ 18
243
+ 2
244
+ 16
245
+ 2
246
+ 11
247
+ I
248
+ 4
249
+ I
250
+ 0
251
+ I
252
+ 0
253
+ I
254
+ 0
255
+ n
256
+ p
257
+ 8
258
+ x
259
+ 3
260
+ env
261
+ s
262
+ 23
263
+ action_dispatch.cookies
264
+ x
265
+ 2
266
+ []
267
+ x
268
+ 7
269
+ Cookies
270
+ n
271
+ x
272
+ 9
273
+ CookieJar
274
+ x
275
+ 5
276
+ build
277
+ x
278
+ 3
279
+ []=
280
+ p
281
+ 5
282
+ I
283
+ -1
284
+ I
285
+ 5
286
+ I
287
+ 0
288
+ I
289
+ 6
290
+ I
291
+ 26
292
+ x
293
+ 89
294
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
295
+ p
296
+ 0
297
+ x
298
+ 17
299
+ method_visibility
300
+ x
301
+ 15
302
+ add_defn_method
303
+ p
304
+ 3
305
+ I
306
+ 2
307
+ I
308
+ 5
309
+ I
310
+ 10
311
+ x
312
+ 89
313
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
314
+ p
315
+ 0
316
+ x
317
+ 13
318
+ attach_method
319
+ x
320
+ 7
321
+ Cookies
322
+ M
323
+ 1
324
+ n
325
+ n
326
+ x
327
+ 7
328
+ Cookies
329
+ i
330
+ 156
331
+ 5
332
+ 66
333
+ 65
334
+ 7
335
+ 0
336
+ 7
337
+ 1
338
+ 64
339
+ 49
340
+ 2
341
+ 0
342
+ 49
343
+ 3
344
+ 2
345
+ 15
346
+ 65
347
+ 7
348
+ 4
349
+ 7
350
+ 5
351
+ 64
352
+ 49
353
+ 2
354
+ 0
355
+ 49
356
+ 3
357
+ 2
358
+ 15
359
+ 99
360
+ 7
361
+ 6
362
+ 45
363
+ 7
364
+ 8
365
+ 65
366
+ 49
367
+ 9
368
+ 3
369
+ 15
370
+ 1
371
+ 15
372
+ 99
373
+ 7
374
+ 10
375
+ 45
376
+ 11
377
+ 12
378
+ 65
379
+ 49
380
+ 9
381
+ 3
382
+ 13
383
+ 99
384
+ 12
385
+ 7
386
+ 13
387
+ 12
388
+ 7
389
+ 14
390
+ 12
391
+ 65
392
+ 12
393
+ 49
394
+ 15
395
+ 4
396
+ 15
397
+ 49
398
+ 13
399
+ 0
400
+ 15
401
+ 99
402
+ 7
403
+ 16
404
+ 45
405
+ 10
406
+ 17
407
+ 65
408
+ 49
409
+ 9
410
+ 3
411
+ 13
412
+ 99
413
+ 12
414
+ 7
415
+ 13
416
+ 12
417
+ 7
418
+ 18
419
+ 12
420
+ 65
421
+ 12
422
+ 49
423
+ 15
424
+ 4
425
+ 15
426
+ 49
427
+ 13
428
+ 0
429
+ 15
430
+ 99
431
+ 7
432
+ 19
433
+ 45
434
+ 10
435
+ 20
436
+ 65
437
+ 49
438
+ 9
439
+ 3
440
+ 13
441
+ 99
442
+ 12
443
+ 7
444
+ 13
445
+ 12
446
+ 7
447
+ 21
448
+ 12
449
+ 65
450
+ 12
451
+ 49
452
+ 15
453
+ 4
454
+ 15
455
+ 49
456
+ 13
457
+ 0
458
+ 15
459
+ 99
460
+ 7
461
+ 22
462
+ 7
463
+ 23
464
+ 65
465
+ 67
466
+ 49
467
+ 24
468
+ 0
469
+ 49
470
+ 25
471
+ 4
472
+ 15
473
+ 99
474
+ 7
475
+ 26
476
+ 7
477
+ 27
478
+ 65
479
+ 67
480
+ 49
481
+ 24
482
+ 0
483
+ 49
484
+ 25
485
+ 4
486
+ 11
487
+ I
488
+ 6
489
+ I
490
+ 0
491
+ I
492
+ 0
493
+ I
494
+ 0
495
+ n
496
+ p
497
+ 28
498
+ x
499
+ 11
500
+ HTTP_HEADER
501
+ s
502
+ 10
503
+ Set-Cookie
504
+ x
505
+ 6
506
+ freeze
507
+ x
508
+ 9
509
+ const_set
510
+ x
511
+ 9
512
+ TOKEN_KEY
513
+ s
514
+ 28
515
+ action_dispatch.secret_token
516
+ x
517
+ 14
518
+ CookieOverflow
519
+ x
520
+ 13
521
+ StandardError
522
+ n
523
+ x
524
+ 10
525
+ open_class
526
+ x
527
+ 9
528
+ CookieJar
529
+ x
530
+ 4
531
+ Hash
532
+ n
533
+ x
534
+ 14
535
+ __class_init__
536
+ M
537
+ 1
538
+ n
539
+ n
540
+ x
541
+ 9
542
+ CookieJar
543
+ i
544
+ 168
545
+ 5
546
+ 66
547
+ 65
548
+ 7
549
+ 0
550
+ 7
551
+ 1
552
+ 13
553
+ 70
554
+ 9
555
+ 23
556
+ 15
557
+ 44
558
+ 43
559
+ 2
560
+ 7
561
+ 3
562
+ 78
563
+ 49
564
+ 4
565
+ 2
566
+ 6
567
+ 1
568
+ 49
569
+ 5
570
+ 2
571
+ 15
572
+ 99
573
+ 7
574
+ 6
575
+ 7
576
+ 7
577
+ 65
578
+ 5
579
+ 49
580
+ 8
581
+ 4
582
+ 15
583
+ 99
584
+ 7
585
+ 9
586
+ 7
587
+ 10
588
+ 65
589
+ 67
590
+ 49
591
+ 11
592
+ 0
593
+ 49
594
+ 12
595
+ 4
596
+ 15
597
+ 99
598
+ 7
599
+ 13
600
+ 7
601
+ 14
602
+ 65
603
+ 67
604
+ 49
605
+ 11
606
+ 0
607
+ 49
608
+ 12
609
+ 4
610
+ 15
611
+ 99
612
+ 7
613
+ 15
614
+ 7
615
+ 16
616
+ 65
617
+ 67
618
+ 49
619
+ 11
620
+ 0
621
+ 49
622
+ 12
623
+ 4
624
+ 15
625
+ 99
626
+ 7
627
+ 17
628
+ 7
629
+ 18
630
+ 65
631
+ 67
632
+ 49
633
+ 11
634
+ 0
635
+ 49
636
+ 12
637
+ 4
638
+ 15
639
+ 99
640
+ 7
641
+ 19
642
+ 7
643
+ 20
644
+ 65
645
+ 67
646
+ 49
647
+ 11
648
+ 0
649
+ 49
650
+ 12
651
+ 4
652
+ 15
653
+ 99
654
+ 7
655
+ 21
656
+ 7
657
+ 22
658
+ 65
659
+ 67
660
+ 49
661
+ 11
662
+ 0
663
+ 49
664
+ 12
665
+ 4
666
+ 15
667
+ 99
668
+ 7
669
+ 23
670
+ 7
671
+ 24
672
+ 65
673
+ 67
674
+ 49
675
+ 11
676
+ 0
677
+ 49
678
+ 12
679
+ 4
680
+ 15
681
+ 99
682
+ 7
683
+ 25
684
+ 7
685
+ 26
686
+ 65
687
+ 67
688
+ 49
689
+ 11
690
+ 0
691
+ 49
692
+ 12
693
+ 4
694
+ 15
695
+ 5
696
+ 48
697
+ 27
698
+ 15
699
+ 99
700
+ 7
701
+ 28
702
+ 7
703
+ 29
704
+ 65
705
+ 67
706
+ 49
707
+ 11
708
+ 0
709
+ 49
710
+ 12
711
+ 4
712
+ 11
713
+ I
714
+ 5
715
+ I
716
+ 0
717
+ I
718
+ 0
719
+ I
720
+ 0
721
+ n
722
+ p
723
+ 30
724
+ x
725
+ 13
726
+ DOMAIN_REGEXP
727
+ n
728
+ x
729
+ 6
730
+ Regexp
731
+ s
732
+ 32
733
+ ([^.]*)\.([^.]*|..\...|...\...)$
734
+ x
735
+ 3
736
+ new
737
+ x
738
+ 9
739
+ const_set
740
+ x
741
+ 5
742
+ build
743
+ M
744
+ 1
745
+ n
746
+ n
747
+ x
748
+ 5
749
+ build
750
+ i
751
+ 71
752
+ 20
753
+ 0
754
+ 49
755
+ 0
756
+ 0
757
+ 45
758
+ 1
759
+ 2
760
+ 49
761
+ 3
762
+ 1
763
+ 19
764
+ 1
765
+ 15
766
+ 20
767
+ 0
768
+ 49
769
+ 4
770
+ 0
771
+ 19
772
+ 2
773
+ 15
774
+ 20
775
+ 0
776
+ 49
777
+ 5
778
+ 0
779
+ 19
780
+ 3
781
+ 15
782
+ 5
783
+ 13
784
+ 72
785
+ 6
786
+ 47
787
+ 9
788
+ 55
789
+ 47
790
+ 49
791
+ 7
792
+ 0
793
+ 13
794
+ 20
795
+ 1
796
+ 20
797
+ 2
798
+ 20
799
+ 3
800
+ 47
801
+ 49
802
+ 8
803
+ 3
804
+ 15
805
+ 8
806
+ 65
807
+ 20
808
+ 1
809
+ 20
810
+ 2
811
+ 20
812
+ 3
813
+ 47
814
+ 49
815
+ 6
816
+ 3
817
+ 56
818
+ 9
819
+ 50
820
+ 10
821
+ 0
822
+ 11
823
+ I
824
+ 9
825
+ I
826
+ 4
827
+ I
828
+ 1
829
+ I
830
+ 1
831
+ n
832
+ p
833
+ 11
834
+ x
835
+ 3
836
+ env
837
+ x
838
+ 9
839
+ TOKEN_KEY
840
+ n
841
+ x
842
+ 2
843
+ []
844
+ x
845
+ 4
846
+ host
847
+ x
848
+ 4
849
+ ssl?
850
+ x
851
+ 3
852
+ new
853
+ x
854
+ 8
855
+ allocate
856
+ x
857
+ 10
858
+ initialize
859
+ M
860
+ 1
861
+ p
862
+ 2
863
+ x
864
+ 9
865
+ for_block
866
+ t
867
+ n
868
+ x
869
+ 5
870
+ build
871
+ i
872
+ 16
873
+ 57
874
+ 19
875
+ 0
876
+ 15
877
+ 20
878
+ 0
879
+ 21
880
+ 1
881
+ 0
882
+ 49
883
+ 0
884
+ 0
885
+ 49
886
+ 1
887
+ 1
888
+ 11
889
+ I
890
+ 4
891
+ I
892
+ 1
893
+ I
894
+ 1
895
+ I
896
+ 1
897
+ n
898
+ p
899
+ 2
900
+ x
901
+ 7
902
+ cookies
903
+ x
904
+ 6
905
+ update
906
+ p
907
+ 5
908
+ I
909
+ 0
910
+ I
911
+ 6e
912
+ I
913
+ 4
914
+ I
915
+ 6f
916
+ I
917
+ 10
918
+ x
919
+ 89
920
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
921
+ p
922
+ 1
923
+ x
924
+ 4
925
+ hash
926
+ x
927
+ 3
928
+ tap
929
+ p
930
+ 11
931
+ I
932
+ -1
933
+ I
934
+ 69
935
+ I
936
+ 0
937
+ I
938
+ 6a
939
+ I
940
+ e
941
+ I
942
+ 6b
943
+ I
944
+ 16
945
+ I
946
+ 6c
947
+ I
948
+ 1e
949
+ I
950
+ 6e
951
+ I
952
+ 47
953
+ x
954
+ 89
955
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
956
+ p
957
+ 4
958
+ x
959
+ 7
960
+ request
961
+ x
962
+ 6
963
+ secret
964
+ x
965
+ 4
966
+ host
967
+ x
968
+ 6
969
+ secure
970
+ x
971
+ 13
972
+ attach_method
973
+ x
974
+ 10
975
+ initialize
976
+ M
977
+ 1
978
+ n
979
+ n
980
+ x
981
+ 10
982
+ initialize
983
+ i
984
+ 64
985
+ 23
986
+ 0
987
+ 10
988
+ 8
989
+ 1
990
+ 19
991
+ 0
992
+ 15
993
+ 23
994
+ 1
995
+ 10
996
+ 16
997
+ 1
998
+ 19
999
+ 1
1000
+ 15
1001
+ 23
1002
+ 2
1003
+ 10
1004
+ 24
1005
+ 3
1006
+ 19
1007
+ 2
1008
+ 15
1009
+ 20
1010
+ 0
1011
+ 38
1012
+ 0
1013
+ 15
1014
+ 44
1015
+ 43
1016
+ 1
1017
+ 78
1018
+ 49
1019
+ 2
1020
+ 1
1021
+ 38
1022
+ 3
1023
+ 15
1024
+ 44
1025
+ 43
1026
+ 1
1027
+ 78
1028
+ 49
1029
+ 2
1030
+ 1
1031
+ 38
1032
+ 4
1033
+ 15
1034
+ 20
1035
+ 1
1036
+ 38
1037
+ 5
1038
+ 15
1039
+ 20
1040
+ 2
1041
+ 38
1042
+ 6
1043
+ 15
1044
+ 54
1045
+ 52
1046
+ 7
1047
+ 0
1048
+ 11
1049
+ I
1050
+ 5
1051
+ I
1052
+ 3
1053
+ I
1054
+ 0
1055
+ I
1056
+ 3
1057
+ n
1058
+ p
1059
+ 8
1060
+ x
1061
+ 7
1062
+ @secret
1063
+ x
1064
+ 4
1065
+ Hash
1066
+ x
1067
+ 16
1068
+ new_from_literal
1069
+ x
1070
+ 12
1071
+ @set_cookies
1072
+ x
1073
+ 15
1074
+ @delete_cookies
1075
+ x
1076
+ 5
1077
+ @host
1078
+ x
1079
+ 7
1080
+ @secure
1081
+ x
1082
+ 10
1083
+ initialize
1084
+ p
1085
+ 15
1086
+ I
1087
+ -1
1088
+ I
1089
+ 73
1090
+ I
1091
+ 18
1092
+ I
1093
+ 74
1094
+ I
1095
+ 1d
1096
+ I
1097
+ 75
1098
+ I
1099
+ 27
1100
+ I
1101
+ 76
1102
+ I
1103
+ 31
1104
+ I
1105
+ 77
1106
+ I
1107
+ 36
1108
+ I
1109
+ 78
1110
+ I
1111
+ 3b
1112
+ I
1113
+ 7a
1114
+ I
1115
+ 40
1116
+ x
1117
+ 89
1118
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1119
+ p
1120
+ 3
1121
+ x
1122
+ 6
1123
+ secret
1124
+ x
1125
+ 4
1126
+ host
1127
+ x
1128
+ 6
1129
+ secure
1130
+ x
1131
+ 17
1132
+ method_visibility
1133
+ x
1134
+ 15
1135
+ add_defn_method
1136
+ x
1137
+ 2
1138
+ []
1139
+ M
1140
+ 1
1141
+ n
1142
+ n
1143
+ x
1144
+ 2
1145
+ []
1146
+ i
1147
+ 10
1148
+ 20
1149
+ 0
1150
+ 49
1151
+ 0
1152
+ 0
1153
+ 54
1154
+ 52
1155
+ 1
1156
+ 1
1157
+ 11
1158
+ I
1159
+ 3
1160
+ I
1161
+ 1
1162
+ I
1163
+ 1
1164
+ I
1165
+ 1
1166
+ n
1167
+ p
1168
+ 2
1169
+ x
1170
+ 4
1171
+ to_s
1172
+ x
1173
+ 2
1174
+ []
1175
+ p
1176
+ 5
1177
+ I
1178
+ -1
1179
+ I
1180
+ 7e
1181
+ I
1182
+ 0
1183
+ I
1184
+ 7f
1185
+ I
1186
+ a
1187
+ x
1188
+ 89
1189
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1190
+ p
1191
+ 1
1192
+ x
1193
+ 4
1194
+ name
1195
+ x
1196
+ 14
1197
+ handle_options
1198
+ M
1199
+ 1
1200
+ n
1201
+ n
1202
+ x
1203
+ 14
1204
+ handle_options
1205
+ i
1206
+ 91
1207
+ 20
1208
+ 0
1209
+ 7
1210
+ 0
1211
+ 14
1212
+ 2
1213
+ 49
1214
+ 1
1215
+ 1
1216
+ 13
1217
+ 10
1218
+ 25
1219
+ 15
1220
+ 7
1221
+ 2
1222
+ 64
1223
+ 13
1224
+ 18
1225
+ 3
1226
+ 49
1227
+ 3
1228
+ 2
1229
+ 15
1230
+ 8
1231
+ 29
1232
+ 18
1233
+ 2
1234
+ 16
1235
+ 2
1236
+ 15
1237
+ 20
1238
+ 0
1239
+ 7
1240
+ 4
1241
+ 49
1242
+ 1
1243
+ 1
1244
+ 7
1245
+ 5
1246
+ 83
1247
+ 6
1248
+ 9
1249
+ 89
1250
+ 39
1251
+ 7
1252
+ 45
1253
+ 8
1254
+ 9
1255
+ 49
1256
+ 10
1257
+ 1
1258
+ 15
1259
+ 20
1260
+ 0
1261
+ 7
1262
+ 4
1263
+ 7
1264
+ 11
1265
+ 4
1266
+ 5
1267
+ 78
1268
+ 98
1269
+ 12
1270
+ 2
1271
+ 47
1272
+ 101
1273
+ 13
1274
+ 7
1275
+ 11
1276
+ 4
1277
+ 5
1278
+ 79
1279
+ 98
1280
+ 12
1281
+ 2
1282
+ 47
1283
+ 101
1284
+ 13
1285
+ 63
1286
+ 4
1287
+ 13
1288
+ 18
1289
+ 3
1290
+ 49
1291
+ 3
1292
+ 2
1293
+ 15
1294
+ 8
1295
+ 90
1296
+ 1
1297
+ 11
1298
+ I
1299
+ 8
1300
+ I
1301
+ 1
1302
+ I
1303
+ 1
1304
+ I
1305
+ 1
1306
+ n
1307
+ p
1308
+ 14
1309
+ x
1310
+ 4
1311
+ path
1312
+ x
1313
+ 2
1314
+ []
1315
+ s
1316
+ 1
1317
+ /
1318
+ x
1319
+ 3
1320
+ []=
1321
+ x
1322
+ 6
1323
+ domain
1324
+ x
1325
+ 3
1326
+ all
1327
+ x
1328
+ 2
1329
+ ==
1330
+ x
1331
+ 5
1332
+ @host
1333
+ x
1334
+ 13
1335
+ DOMAIN_REGEXP
1336
+ n
1337
+ x
1338
+ 2
1339
+ =~
1340
+ s
1341
+ 1
1342
+ .
1343
+ x
1344
+ 24
1345
+ regexp_last_match_result
1346
+ x
1347
+ 4
1348
+ to_s
1349
+ p
1350
+ 13
1351
+ I
1352
+ -1
1353
+ I
1354
+ 82
1355
+ I
1356
+ 0
1357
+ I
1358
+ 83
1359
+ I
1360
+ 1e
1361
+ I
1362
+ 85
1363
+ I
1364
+ 2b
1365
+ I
1366
+ 86
1367
+ I
1368
+ 34
1369
+ I
1370
+ 87
1371
+ I
1372
+ 59
1373
+ I
1374
+ 85
1375
+ I
1376
+ 5b
1377
+ x
1378
+ 89
1379
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1380
+ p
1381
+ 1
1382
+ x
1383
+ 7
1384
+ options
1385
+ x
1386
+ 3
1387
+ []=
1388
+ M
1389
+ 1
1390
+ n
1391
+ n
1392
+ x
1393
+ 3
1394
+ []=
1395
+ i
1396
+ 98
1397
+ 20
1398
+ 1
1399
+ 45
1400
+ 0
1401
+ 1
1402
+ 49
1403
+ 2
1404
+ 1
1405
+ 9
1406
+ 27
1407
+ 20
1408
+ 1
1409
+ 49
1410
+ 3
1411
+ 0
1412
+ 15
1413
+ 20
1414
+ 1
1415
+ 7
1416
+ 4
1417
+ 49
1418
+ 5
1419
+ 1
1420
+ 19
1421
+ 2
1422
+ 8
1423
+ 50
1424
+ 20
1425
+ 1
1426
+ 19
1427
+ 2
1428
+ 15
1429
+ 44
1430
+ 43
1431
+ 0
1432
+ 79
1433
+ 49
1434
+ 6
1435
+ 1
1436
+ 13
1437
+ 7
1438
+ 4
1439
+ 20
1440
+ 2
1441
+ 49
1442
+ 7
1443
+ 2
1444
+ 15
1445
+ 19
1446
+ 1
1447
+ 15
1448
+ 20
1449
+ 0
1450
+ 49
1451
+ 8
1452
+ 0
1453
+ 20
1454
+ 2
1455
+ 54
1456
+ 52
1457
+ 7
1458
+ 2
1459
+ 19
1460
+ 2
1461
+ 15
1462
+ 5
1463
+ 20
1464
+ 1
1465
+ 47
1466
+ 49
1467
+ 9
1468
+ 1
1469
+ 15
1470
+ 39
1471
+ 10
1472
+ 20
1473
+ 0
1474
+ 20
1475
+ 1
1476
+ 13
1477
+ 18
1478
+ 3
1479
+ 49
1480
+ 7
1481
+ 2
1482
+ 15
1483
+ 15
1484
+ 39
1485
+ 11
1486
+ 20
1487
+ 0
1488
+ 49
1489
+ 12
1490
+ 1
1491
+ 15
1492
+ 20
1493
+ 2
1494
+ 11
1495
+ I
1496
+ 7
1497
+ I
1498
+ 3
1499
+ I
1500
+ 2
1501
+ I
1502
+ 2
1503
+ n
1504
+ p
1505
+ 13
1506
+ x
1507
+ 4
1508
+ Hash
1509
+ n
1510
+ x
1511
+ 5
1512
+ is_a?
1513
+ x
1514
+ 15
1515
+ symbolize_keys!
1516
+ x
1517
+ 5
1518
+ value
1519
+ x
1520
+ 2
1521
+ []
1522
+ x
1523
+ 16
1524
+ new_from_literal
1525
+ x
1526
+ 3
1527
+ []=
1528
+ x
1529
+ 4
1530
+ to_s
1531
+ x
1532
+ 14
1533
+ handle_options
1534
+ x
1535
+ 12
1536
+ @set_cookies
1537
+ x
1538
+ 15
1539
+ @delete_cookies
1540
+ x
1541
+ 6
1542
+ delete
1543
+ p
1544
+ 23
1545
+ I
1546
+ -1
1547
+ I
1548
+ 8d
1549
+ I
1550
+ 0
1551
+ I
1552
+ 8e
1553
+ I
1554
+ a
1555
+ I
1556
+ 8f
1557
+ I
1558
+ 10
1559
+ I
1560
+ 90
1561
+ I
1562
+ 1b
1563
+ I
1564
+ 92
1565
+ I
1566
+ 20
1567
+ I
1568
+ 93
1569
+ I
1570
+ 33
1571
+ I
1572
+ 96
1573
+ I
1574
+ 41
1575
+ I
1576
+ 98
1577
+ I
1578
+ 49
1579
+ I
1580
+ 9a
1581
+ I
1582
+ 57
1583
+ I
1584
+ 9b
1585
+ I
1586
+ 5f
1587
+ I
1588
+ 9c
1589
+ I
1590
+ 62
1591
+ x
1592
+ 89
1593
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1594
+ p
1595
+ 3
1596
+ x
1597
+ 3
1598
+ key
1599
+ x
1600
+ 7
1601
+ options
1602
+ x
1603
+ 5
1604
+ value
1605
+ x
1606
+ 6
1607
+ delete
1608
+ M
1609
+ 1
1610
+ n
1611
+ n
1612
+ x
1613
+ 6
1614
+ delete
1615
+ i
1616
+ 57
1617
+ 23
1618
+ 1
1619
+ 10
1620
+ 14
1621
+ 44
1622
+ 43
1623
+ 0
1624
+ 78
1625
+ 49
1626
+ 1
1627
+ 1
1628
+ 19
1629
+ 1
1630
+ 15
1631
+ 20
1632
+ 1
1633
+ 49
1634
+ 2
1635
+ 0
1636
+ 15
1637
+ 5
1638
+ 20
1639
+ 1
1640
+ 47
1641
+ 49
1642
+ 3
1643
+ 1
1644
+ 15
1645
+ 20
1646
+ 0
1647
+ 49
1648
+ 4
1649
+ 0
1650
+ 54
1651
+ 52
1652
+ 5
1653
+ 1
1654
+ 19
1655
+ 2
1656
+ 15
1657
+ 39
1658
+ 6
1659
+ 20
1660
+ 0
1661
+ 20
1662
+ 1
1663
+ 13
1664
+ 18
1665
+ 3
1666
+ 49
1667
+ 7
1668
+ 2
1669
+ 15
1670
+ 15
1671
+ 20
1672
+ 2
1673
+ 11
1674
+ I
1675
+ 7
1676
+ I
1677
+ 3
1678
+ I
1679
+ 1
1680
+ I
1681
+ 2
1682
+ n
1683
+ p
1684
+ 8
1685
+ x
1686
+ 4
1687
+ Hash
1688
+ x
1689
+ 16
1690
+ new_from_literal
1691
+ x
1692
+ 15
1693
+ symbolize_keys!
1694
+ x
1695
+ 14
1696
+ handle_options
1697
+ x
1698
+ 4
1699
+ to_s
1700
+ x
1701
+ 6
1702
+ delete
1703
+ x
1704
+ 15
1705
+ @delete_cookies
1706
+ x
1707
+ 3
1708
+ []=
1709
+ p
1710
+ 13
1711
+ I
1712
+ -1
1713
+ I
1714
+ a2
1715
+ I
1716
+ e
1717
+ I
1718
+ a3
1719
+ I
1720
+ 14
1721
+ I
1722
+ a5
1723
+ I
1724
+ 1c
1725
+ I
1726
+ a7
1727
+ I
1728
+ 28
1729
+ I
1730
+ a8
1731
+ I
1732
+ 36
1733
+ I
1734
+ a9
1735
+ I
1736
+ 39
1737
+ x
1738
+ 89
1739
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1740
+ p
1741
+ 3
1742
+ x
1743
+ 3
1744
+ key
1745
+ x
1746
+ 7
1747
+ options
1748
+ x
1749
+ 5
1750
+ value
1751
+ x
1752
+ 9
1753
+ permanent
1754
+ M
1755
+ 1
1756
+ n
1757
+ n
1758
+ x
1759
+ 9
1760
+ permanent
1761
+ i
1762
+ 39
1763
+ 39
1764
+ 0
1765
+ 13
1766
+ 10
1767
+ 38
1768
+ 15
1769
+ 45
1770
+ 1
1771
+ 2
1772
+ 13
1773
+ 71
1774
+ 3
1775
+ 47
1776
+ 9
1777
+ 30
1778
+ 47
1779
+ 49
1780
+ 4
1781
+ 0
1782
+ 13
1783
+ 5
1784
+ 39
1785
+ 5
1786
+ 47
1787
+ 49
1788
+ 6
1789
+ 2
1790
+ 15
1791
+ 8
1792
+ 36
1793
+ 5
1794
+ 39
1795
+ 5
1796
+ 49
1797
+ 3
1798
+ 2
1799
+ 38
1800
+ 0
1801
+ 11
1802
+ I
1803
+ 4
1804
+ I
1805
+ 0
1806
+ I
1807
+ 0
1808
+ I
1809
+ 0
1810
+ n
1811
+ p
1812
+ 7
1813
+ x
1814
+ 10
1815
+ @permanent
1816
+ x
1817
+ 18
1818
+ PermanentCookieJar
1819
+ n
1820
+ x
1821
+ 3
1822
+ new
1823
+ x
1824
+ 8
1825
+ allocate
1826
+ x
1827
+ 7
1828
+ @secret
1829
+ x
1830
+ 10
1831
+ initialize
1832
+ p
1833
+ 5
1834
+ I
1835
+ -1
1836
+ I
1837
+ b7
1838
+ I
1839
+ 0
1840
+ I
1841
+ b8
1842
+ I
1843
+ 27
1844
+ x
1845
+ 89
1846
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1847
+ p
1848
+ 0
1849
+ x
1850
+ 6
1851
+ signed
1852
+ M
1853
+ 1
1854
+ n
1855
+ n
1856
+ x
1857
+ 6
1858
+ signed
1859
+ i
1860
+ 39
1861
+ 39
1862
+ 0
1863
+ 13
1864
+ 10
1865
+ 38
1866
+ 15
1867
+ 45
1868
+ 1
1869
+ 2
1870
+ 13
1871
+ 71
1872
+ 3
1873
+ 47
1874
+ 9
1875
+ 30
1876
+ 47
1877
+ 49
1878
+ 4
1879
+ 0
1880
+ 13
1881
+ 5
1882
+ 39
1883
+ 5
1884
+ 47
1885
+ 49
1886
+ 6
1887
+ 2
1888
+ 15
1889
+ 8
1890
+ 36
1891
+ 5
1892
+ 39
1893
+ 5
1894
+ 49
1895
+ 3
1896
+ 2
1897
+ 38
1898
+ 0
1899
+ 11
1900
+ I
1901
+ 4
1902
+ I
1903
+ 0
1904
+ I
1905
+ 0
1906
+ I
1907
+ 0
1908
+ n
1909
+ p
1910
+ 7
1911
+ x
1912
+ 7
1913
+ @signed
1914
+ x
1915
+ 15
1916
+ SignedCookieJar
1917
+ n
1918
+ x
1919
+ 3
1920
+ new
1921
+ x
1922
+ 8
1923
+ allocate
1924
+ x
1925
+ 7
1926
+ @secret
1927
+ x
1928
+ 10
1929
+ initialize
1930
+ p
1931
+ 5
1932
+ I
1933
+ -1
1934
+ I
1935
+ c8
1936
+ I
1937
+ 0
1938
+ I
1939
+ c9
1940
+ I
1941
+ 27
1942
+ x
1943
+ 89
1944
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
1945
+ p
1946
+ 0
1947
+ x
1948
+ 5
1949
+ write
1950
+ M
1951
+ 1
1952
+ n
1953
+ n
1954
+ x
1955
+ 5
1956
+ write
1957
+ i
1958
+ 16
1959
+ 39
1960
+ 0
1961
+ 56
1962
+ 1
1963
+ 50
1964
+ 2
1965
+ 0
1966
+ 15
1967
+ 39
1968
+ 3
1969
+ 56
1970
+ 4
1971
+ 50
1972
+ 2
1973
+ 0
1974
+ 11
1975
+ I
1976
+ 3
1977
+ I
1978
+ 1
1979
+ I
1980
+ 1
1981
+ I
1982
+ 1
1983
+ n
1984
+ p
1985
+ 5
1986
+ x
1987
+ 12
1988
+ @set_cookies
1989
+ M
1990
+ 1
1991
+ p
1992
+ 2
1993
+ x
1994
+ 9
1995
+ for_block
1996
+ t
1997
+ n
1998
+ x
1999
+ 5
2000
+ write
2001
+ i
2002
+ 38
2003
+ 58
2004
+ 37
2005
+ 19
2006
+ 0
2007
+ 15
2008
+ 37
2009
+ 19
2010
+ 1
2011
+ 15
2012
+ 15
2013
+ 5
2014
+ 20
2015
+ 1
2016
+ 47
2017
+ 49
2018
+ 0
2019
+ 1
2020
+ 9
2021
+ 36
2022
+ 44
2023
+ 43
2024
+ 1
2025
+ 43
2026
+ 2
2027
+ 21
2028
+ 1
2029
+ 0
2030
+ 20
2031
+ 0
2032
+ 20
2033
+ 1
2034
+ 49
2035
+ 3
2036
+ 3
2037
+ 8
2038
+ 37
2039
+ 1
2040
+ 11
2041
+ I
2042
+ 7
2043
+ I
2044
+ 2
2045
+ I
2046
+ 2
2047
+ I
2048
+ 2
2049
+ n
2050
+ p
2051
+ 4
2052
+ x
2053
+ 13
2054
+ write_cookie?
2055
+ x
2056
+ 4
2057
+ Rack
2058
+ x
2059
+ 5
2060
+ Utils
2061
+ x
2062
+ 18
2063
+ set_cookie_header!
2064
+ p
2065
+ 3
2066
+ I
2067
+ 0
2068
+ I
2069
+ cd
2070
+ I
2071
+ 26
2072
+ x
2073
+ 89
2074
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2075
+ p
2076
+ 2
2077
+ x
2078
+ 1
2079
+ k
2080
+ x
2081
+ 1
2082
+ v
2083
+ x
2084
+ 4
2085
+ each
2086
+ x
2087
+ 15
2088
+ @delete_cookies
2089
+ M
2090
+ 1
2091
+ p
2092
+ 2
2093
+ x
2094
+ 9
2095
+ for_block
2096
+ t
2097
+ n
2098
+ x
2099
+ 5
2100
+ write
2101
+ i
2102
+ 26
2103
+ 58
2104
+ 37
2105
+ 19
2106
+ 0
2107
+ 15
2108
+ 37
2109
+ 19
2110
+ 1
2111
+ 15
2112
+ 15
2113
+ 44
2114
+ 43
2115
+ 0
2116
+ 43
2117
+ 1
2118
+ 21
2119
+ 1
2120
+ 0
2121
+ 20
2122
+ 0
2123
+ 20
2124
+ 1
2125
+ 49
2126
+ 2
2127
+ 3
2128
+ 11
2129
+ I
2130
+ 7
2131
+ I
2132
+ 2
2133
+ I
2134
+ 2
2135
+ I
2136
+ 2
2137
+ n
2138
+ p
2139
+ 3
2140
+ x
2141
+ 4
2142
+ Rack
2143
+ x
2144
+ 5
2145
+ Utils
2146
+ x
2147
+ 21
2148
+ delete_cookie_header!
2149
+ p
2150
+ 3
2151
+ I
2152
+ 0
2153
+ I
2154
+ ce
2155
+ I
2156
+ 1a
2157
+ x
2158
+ 89
2159
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2160
+ p
2161
+ 2
2162
+ x
2163
+ 1
2164
+ k
2165
+ x
2166
+ 1
2167
+ v
2168
+ p
2169
+ 7
2170
+ I
2171
+ -1
2172
+ I
2173
+ cc
2174
+ I
2175
+ 0
2176
+ I
2177
+ cd
2178
+ I
2179
+ 8
2180
+ I
2181
+ ce
2182
+ I
2183
+ 10
2184
+ x
2185
+ 89
2186
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2187
+ p
2188
+ 1
2189
+ x
2190
+ 7
2191
+ headers
2192
+ x
2193
+ 7
2194
+ private
2195
+ x
2196
+ 13
2197
+ write_cookie?
2198
+ M
2199
+ 1
2200
+ n
2201
+ n
2202
+ x
2203
+ 13
2204
+ write_cookie?
2205
+ i
2206
+ 71
2207
+ 39
2208
+ 0
2209
+ 13
2210
+ 10
2211
+ 70
2212
+ 15
2213
+ 20
2214
+ 0
2215
+ 7
2216
+ 1
2217
+ 49
2218
+ 2
2219
+ 1
2220
+ 10
2221
+ 18
2222
+ 2
2223
+ 8
2224
+ 19
2225
+ 3
2226
+ 13
2227
+ 10
2228
+ 70
2229
+ 15
2230
+ 26
2231
+ 93
2232
+ 0
2233
+ 15
2234
+ 29
2235
+ 38
2236
+ 0
2237
+ 7
2238
+ 3
2239
+ 98
2240
+ 4
2241
+ 1
2242
+ 30
2243
+ 8
2244
+ 44
2245
+ 25
2246
+ 92
2247
+ 0
2248
+ 27
2249
+ 8
2250
+ 56
2251
+ 7
2252
+ 5
2253
+ 5
2254
+ 98
2255
+ 6
2256
+ 3
2257
+ 9
2258
+ 56
2259
+ 7
2260
+ 7
2261
+ 8
2262
+ 57
2263
+ 1
2264
+ 13
2265
+ 9
2266
+ 70
2267
+ 15
2268
+ 45
2269
+ 3
2270
+ 8
2271
+ 49
2272
+ 5
2273
+ 0
2274
+ 49
2275
+ 9
2276
+ 0
2277
+ 11
2278
+ I
2279
+ 5
2280
+ I
2281
+ 1
2282
+ I
2283
+ 1
2284
+ I
2285
+ 1
2286
+ n
2287
+ p
2288
+ 10
2289
+ x
2290
+ 7
2291
+ @secure
2292
+ x
2293
+ 6
2294
+ secure
2295
+ x
2296
+ 2
2297
+ []
2298
+ x
2299
+ 5
2300
+ Rails
2301
+ x
2302
+ 16
2303
+ vm_const_defined
2304
+ x
2305
+ 3
2306
+ env
2307
+ x
2308
+ 17
2309
+ vm_check_callable
2310
+ s
2311
+ 6
2312
+ method
2313
+ n
2314
+ x
2315
+ 12
2316
+ development?
2317
+ p
2318
+ 5
2319
+ I
2320
+ -1
2321
+ I
2322
+ d3
2323
+ I
2324
+ 0
2325
+ I
2326
+ d4
2327
+ I
2328
+ 47
2329
+ x
2330
+ 89
2331
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2332
+ p
2333
+ 1
2334
+ x
2335
+ 6
2336
+ cookie
2337
+ p
2338
+ 25
2339
+ I
2340
+ 2
2341
+ I
2342
+ 67
2343
+ I
2344
+ 1b
2345
+ I
2346
+ 69
2347
+ I
2348
+ 26
2349
+ I
2350
+ 73
2351
+ I
2352
+ 34
2353
+ I
2354
+ 7e
2355
+ I
2356
+ 42
2357
+ I
2358
+ 82
2359
+ I
2360
+ 50
2361
+ I
2362
+ 8d
2363
+ I
2364
+ 5e
2365
+ I
2366
+ a2
2367
+ I
2368
+ 6c
2369
+ I
2370
+ b7
2371
+ I
2372
+ 7a
2373
+ I
2374
+ c8
2375
+ I
2376
+ 88
2377
+ I
2378
+ cc
2379
+ I
2380
+ 96
2381
+ I
2382
+ d1
2383
+ I
2384
+ 9a
2385
+ I
2386
+ d3
2387
+ I
2388
+ a8
2389
+ x
2390
+ 89
2391
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2392
+ p
2393
+ 0
2394
+ x
2395
+ 13
2396
+ attach_method
2397
+ x
2398
+ 18
2399
+ PermanentCookieJar
2400
+ n
2401
+ M
2402
+ 1
2403
+ n
2404
+ n
2405
+ x
2406
+ 18
2407
+ PermanentCookieJar
2408
+ i
2409
+ 58
2410
+ 5
2411
+ 66
2412
+ 99
2413
+ 7
2414
+ 0
2415
+ 7
2416
+ 1
2417
+ 65
2418
+ 67
2419
+ 49
2420
+ 2
2421
+ 0
2422
+ 49
2423
+ 3
2424
+ 4
2425
+ 15
2426
+ 99
2427
+ 7
2428
+ 4
2429
+ 7
2430
+ 5
2431
+ 65
2432
+ 67
2433
+ 49
2434
+ 2
2435
+ 0
2436
+ 49
2437
+ 3
2438
+ 4
2439
+ 15
2440
+ 99
2441
+ 7
2442
+ 6
2443
+ 7
2444
+ 7
2445
+ 65
2446
+ 67
2447
+ 49
2448
+ 2
2449
+ 0
2450
+ 49
2451
+ 3
2452
+ 4
2453
+ 15
2454
+ 99
2455
+ 7
2456
+ 8
2457
+ 7
2458
+ 9
2459
+ 65
2460
+ 67
2461
+ 49
2462
+ 2
2463
+ 0
2464
+ 49
2465
+ 3
2466
+ 4
2467
+ 11
2468
+ I
2469
+ 5
2470
+ I
2471
+ 0
2472
+ I
2473
+ 0
2474
+ I
2475
+ 0
2476
+ n
2477
+ p
2478
+ 10
2479
+ x
2480
+ 10
2481
+ initialize
2482
+ M
2483
+ 1
2484
+ n
2485
+ n
2486
+ x
2487
+ 10
2488
+ initialize
2489
+ i
2490
+ 14
2491
+ 20
2492
+ 0
2493
+ 20
2494
+ 1
2495
+ 17
2496
+ 2
2497
+ 38
2498
+ 0
2499
+ 15
2500
+ 38
2501
+ 1
2502
+ 15
2503
+ 2
2504
+ 11
2505
+ I
2506
+ 4
2507
+ I
2508
+ 2
2509
+ I
2510
+ 2
2511
+ I
2512
+ 2
2513
+ n
2514
+ p
2515
+ 2
2516
+ x
2517
+ 11
2518
+ @parent_jar
2519
+ x
2520
+ 7
2521
+ @secret
2522
+ p
2523
+ 5
2524
+ I
2525
+ -1
2526
+ I
2527
+ d9
2528
+ I
2529
+ 0
2530
+ I
2531
+ da
2532
+ I
2533
+ e
2534
+ x
2535
+ 89
2536
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2537
+ p
2538
+ 2
2539
+ x
2540
+ 10
2541
+ parent_jar
2542
+ x
2543
+ 6
2544
+ secret
2545
+ x
2546
+ 17
2547
+ method_visibility
2548
+ x
2549
+ 15
2550
+ add_defn_method
2551
+ x
2552
+ 3
2553
+ []=
2554
+ M
2555
+ 1
2556
+ n
2557
+ n
2558
+ x
2559
+ 3
2560
+ []=
2561
+ i
2562
+ 70
2563
+ 20
2564
+ 1
2565
+ 45
2566
+ 0
2567
+ 1
2568
+ 49
2569
+ 2
2570
+ 1
2571
+ 9
2572
+ 17
2573
+ 20
2574
+ 1
2575
+ 49
2576
+ 3
2577
+ 0
2578
+ 8
2579
+ 35
2580
+ 44
2581
+ 43
2582
+ 0
2583
+ 79
2584
+ 49
2585
+ 4
2586
+ 1
2587
+ 13
2588
+ 7
2589
+ 5
2590
+ 20
2591
+ 1
2592
+ 49
2593
+ 6
2594
+ 2
2595
+ 15
2596
+ 19
2597
+ 1
2598
+ 15
2599
+ 20
2600
+ 1
2601
+ 7
2602
+ 7
2603
+ 4
2604
+ 20
2605
+ 49
2606
+ 8
2607
+ 0
2608
+ 49
2609
+ 9
2610
+ 0
2611
+ 13
2612
+ 18
2613
+ 3
2614
+ 49
2615
+ 6
2616
+ 2
2617
+ 15
2618
+ 15
2619
+ 39
2620
+ 10
2621
+ 20
2622
+ 0
2623
+ 20
2624
+ 1
2625
+ 13
2626
+ 18
2627
+ 3
2628
+ 49
2629
+ 6
2630
+ 2
2631
+ 15
2632
+ 11
2633
+ I
2634
+ 6
2635
+ I
2636
+ 2
2637
+ I
2638
+ 2
2639
+ I
2640
+ 2
2641
+ n
2642
+ p
2643
+ 11
2644
+ x
2645
+ 4
2646
+ Hash
2647
+ n
2648
+ x
2649
+ 5
2650
+ is_a?
2651
+ x
2652
+ 15
2653
+ symbolize_keys!
2654
+ x
2655
+ 16
2656
+ new_from_literal
2657
+ x
2658
+ 5
2659
+ value
2660
+ x
2661
+ 3
2662
+ []=
2663
+ x
2664
+ 7
2665
+ expires
2666
+ x
2667
+ 5
2668
+ years
2669
+ x
2670
+ 8
2671
+ from_now
2672
+ x
2673
+ 11
2674
+ @parent_jar
2675
+ p
2676
+ 13
2677
+ I
2678
+ -1
2679
+ I
2680
+ dd
2681
+ I
2682
+ 0
2683
+ I
2684
+ de
2685
+ I
2686
+ a
2687
+ I
2688
+ df
2689
+ I
2690
+ 11
2691
+ I
2692
+ e1
2693
+ I
2694
+ 24
2695
+ I
2696
+ e4
2697
+ I
2698
+ 38
2699
+ I
2700
+ e5
2701
+ I
2702
+ 46
2703
+ x
2704
+ 89
2705
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2706
+ p
2707
+ 2
2708
+ x
2709
+ 3
2710
+ key
2711
+ x
2712
+ 7
2713
+ options
2714
+ x
2715
+ 6
2716
+ signed
2717
+ M
2718
+ 1
2719
+ n
2720
+ n
2721
+ x
2722
+ 6
2723
+ signed
2724
+ i
2725
+ 39
2726
+ 39
2727
+ 0
2728
+ 13
2729
+ 10
2730
+ 38
2731
+ 15
2732
+ 45
2733
+ 1
2734
+ 2
2735
+ 13
2736
+ 71
2737
+ 3
2738
+ 47
2739
+ 9
2740
+ 30
2741
+ 47
2742
+ 49
2743
+ 4
2744
+ 0
2745
+ 13
2746
+ 5
2747
+ 39
2748
+ 5
2749
+ 47
2750
+ 49
2751
+ 6
2752
+ 2
2753
+ 15
2754
+ 8
2755
+ 36
2756
+ 5
2757
+ 39
2758
+ 5
2759
+ 49
2760
+ 3
2761
+ 2
2762
+ 38
2763
+ 0
2764
+ 11
2765
+ I
2766
+ 4
2767
+ I
2768
+ 0
2769
+ I
2770
+ 0
2771
+ I
2772
+ 0
2773
+ n
2774
+ p
2775
+ 7
2776
+ x
2777
+ 7
2778
+ @signed
2779
+ x
2780
+ 15
2781
+ SignedCookieJar
2782
+ n
2783
+ x
2784
+ 3
2785
+ new
2786
+ x
2787
+ 8
2788
+ allocate
2789
+ x
2790
+ 7
2791
+ @secret
2792
+ x
2793
+ 10
2794
+ initialize
2795
+ p
2796
+ 5
2797
+ I
2798
+ -1
2799
+ I
2800
+ e8
2801
+ I
2802
+ 0
2803
+ I
2804
+ e9
2805
+ I
2806
+ 27
2807
+ x
2808
+ 89
2809
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2810
+ p
2811
+ 0
2812
+ x
2813
+ 14
2814
+ method_missing
2815
+ M
2816
+ 1
2817
+ n
2818
+ n
2819
+ x
2820
+ 14
2821
+ method_missing
2822
+ i
2823
+ 28
2824
+ 95
2825
+ 19
2826
+ 2
2827
+ 15
2828
+ 39
2829
+ 0
2830
+ 20
2831
+ 0
2832
+ 20
2833
+ 1
2834
+ 36
2835
+ 20
2836
+ 2
2837
+ 13
2838
+ 70
2839
+ 10
2840
+ 24
2841
+ 44
2842
+ 43
2843
+ 1
2844
+ 12
2845
+ 49
2846
+ 2
2847
+ 1
2848
+ 51
2849
+ 3
2850
+ 1
2851
+ 11
2852
+ I
2853
+ 8
2854
+ I
2855
+ 3
2856
+ I
2857
+ 1
2858
+ I
2859
+ 1
2860
+ I
2861
+ 1
2862
+ p
2863
+ 4
2864
+ x
2865
+ 11
2866
+ @parent_jar
2867
+ x
2868
+ 4
2869
+ Proc
2870
+ x
2871
+ 14
2872
+ __from_block__
2873
+ x
2874
+ 4
2875
+ send
2876
+ p
2877
+ 5
2878
+ I
2879
+ -1
2880
+ I
2881
+ ec
2882
+ I
2883
+ 4
2884
+ I
2885
+ ed
2886
+ I
2887
+ 1c
2888
+ x
2889
+ 89
2890
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2891
+ p
2892
+ 3
2893
+ x
2894
+ 6
2895
+ method
2896
+ x
2897
+ 9
2898
+ arguments
2899
+ x
2900
+ 5
2901
+ block
2902
+ p
2903
+ 9
2904
+ I
2905
+ 2
2906
+ I
2907
+ d9
2908
+ I
2909
+ 10
2910
+ I
2911
+ dd
2912
+ I
2913
+ 1e
2914
+ I
2915
+ e8
2916
+ I
2917
+ 2c
2918
+ I
2919
+ ec
2920
+ I
2921
+ 3a
2922
+ x
2923
+ 89
2924
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
2925
+ p
2926
+ 0
2927
+ x
2928
+ 15
2929
+ SignedCookieJar
2930
+ n
2931
+ M
2932
+ 1
2933
+ n
2934
+ n
2935
+ x
2936
+ 15
2937
+ SignedCookieJar
2938
+ i
2939
+ 94
2940
+ 5
2941
+ 66
2942
+ 65
2943
+ 7
2944
+ 0
2945
+ 7
2946
+ 1
2947
+ 49
2948
+ 2
2949
+ 2
2950
+ 15
2951
+ 65
2952
+ 7
2953
+ 3
2954
+ 4
2955
+ 30
2956
+ 49
2957
+ 2
2958
+ 2
2959
+ 15
2960
+ 99
2961
+ 7
2962
+ 4
2963
+ 7
2964
+ 5
2965
+ 65
2966
+ 67
2967
+ 49
2968
+ 6
2969
+ 0
2970
+ 49
2971
+ 7
2972
+ 4
2973
+ 15
2974
+ 99
2975
+ 7
2976
+ 8
2977
+ 7
2978
+ 9
2979
+ 65
2980
+ 67
2981
+ 49
2982
+ 6
2983
+ 0
2984
+ 49
2985
+ 7
2986
+ 4
2987
+ 15
2988
+ 99
2989
+ 7
2990
+ 10
2991
+ 7
2992
+ 11
2993
+ 65
2994
+ 67
2995
+ 49
2996
+ 6
2997
+ 0
2998
+ 49
2999
+ 7
3000
+ 4
3001
+ 15
3002
+ 99
3003
+ 7
3004
+ 12
3005
+ 7
3006
+ 13
3007
+ 65
3008
+ 67
3009
+ 49
3010
+ 6
3011
+ 0
3012
+ 49
3013
+ 7
3014
+ 4
3015
+ 15
3016
+ 5
3017
+ 48
3018
+ 14
3019
+ 15
3020
+ 99
3021
+ 7
3022
+ 15
3023
+ 7
3024
+ 16
3025
+ 65
3026
+ 67
3027
+ 49
3028
+ 6
3029
+ 0
3030
+ 49
3031
+ 7
3032
+ 4
3033
+ 11
3034
+ I
3035
+ 5
3036
+ I
3037
+ 0
3038
+ I
3039
+ 0
3040
+ I
3041
+ 0
3042
+ n
3043
+ p
3044
+ 17
3045
+ x
3046
+ 15
3047
+ MAX_COOKIE_SIZE
3048
+ I
3049
+ 1000
3050
+ x
3051
+ 9
3052
+ const_set
3053
+ x
3054
+ 17
3055
+ SECRET_MIN_LENGTH
3056
+ x
3057
+ 10
3058
+ initialize
3059
+ M
3060
+ 1
3061
+ n
3062
+ n
3063
+ x
3064
+ 10
3065
+ initialize
3066
+ i
3067
+ 46
3068
+ 5
3069
+ 20
3070
+ 1
3071
+ 47
3072
+ 49
3073
+ 0
3074
+ 1
3075
+ 15
3076
+ 20
3077
+ 0
3078
+ 38
3079
+ 1
3080
+ 15
3081
+ 45
3082
+ 2
3083
+ 3
3084
+ 43
3085
+ 4
3086
+ 13
3087
+ 71
3088
+ 5
3089
+ 47
3090
+ 9
3091
+ 38
3092
+ 47
3093
+ 49
3094
+ 6
3095
+ 0
3096
+ 13
3097
+ 20
3098
+ 1
3099
+ 47
3100
+ 49
3101
+ 7
3102
+ 1
3103
+ 15
3104
+ 8
3105
+ 43
3106
+ 20
3107
+ 1
3108
+ 49
3109
+ 5
3110
+ 1
3111
+ 38
3112
+ 8
3113
+ 11
3114
+ I
3115
+ 5
3116
+ I
3117
+ 2
3118
+ I
3119
+ 2
3120
+ I
3121
+ 2
3122
+ n
3123
+ p
3124
+ 9
3125
+ x
3126
+ 20
3127
+ ensure_secret_secure
3128
+ x
3129
+ 11
3130
+ @parent_jar
3131
+ x
3132
+ 13
3133
+ ActiveSupport
3134
+ n
3135
+ x
3136
+ 15
3137
+ MessageVerifier
3138
+ x
3139
+ 3
3140
+ new
3141
+ x
3142
+ 8
3143
+ allocate
3144
+ x
3145
+ 10
3146
+ initialize
3147
+ x
3148
+ 9
3149
+ @verifier
3150
+ p
3151
+ 9
3152
+ I
3153
+ -1
3154
+ I
3155
+ f5
3156
+ I
3157
+ 0
3158
+ I
3159
+ f6
3160
+ I
3161
+ 8
3162
+ I
3163
+ f7
3164
+ I
3165
+ d
3166
+ I
3167
+ f8
3168
+ I
3169
+ 2e
3170
+ x
3171
+ 89
3172
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
3173
+ p
3174
+ 2
3175
+ x
3176
+ 10
3177
+ parent_jar
3178
+ x
3179
+ 6
3180
+ secret
3181
+ x
3182
+ 17
3183
+ method_visibility
3184
+ x
3185
+ 15
3186
+ add_defn_method
3187
+ x
3188
+ 2
3189
+ []
3190
+ M
3191
+ 1
3192
+ n
3193
+ n
3194
+ x
3195
+ 2
3196
+ []
3197
+ i
3198
+ 66
3199
+ 26
3200
+ 93
3201
+ 0
3202
+ 15
3203
+ 29
3204
+ 31
3205
+ 0
3206
+ 39
3207
+ 0
3208
+ 20
3209
+ 0
3210
+ 49
3211
+ 1
3212
+ 1
3213
+ 19
3214
+ 1
3215
+ 9
3216
+ 27
3217
+ 39
3218
+ 2
3219
+ 20
3220
+ 1
3221
+ 49
3222
+ 3
3223
+ 1
3224
+ 8
3225
+ 28
3226
+ 1
3227
+ 30
3228
+ 8
3229
+ 62
3230
+ 26
3231
+ 93
3232
+ 1
3233
+ 15
3234
+ 24
3235
+ 13
3236
+ 45
3237
+ 4
3238
+ 5
3239
+ 43
3240
+ 6
3241
+ 43
3242
+ 7
3243
+ 12
3244
+ 49
3245
+ 8
3246
+ 1
3247
+ 10
3248
+ 52
3249
+ 8
3250
+ 57
3251
+ 15
3252
+ 1
3253
+ 25
3254
+ 8
3255
+ 62
3256
+ 15
3257
+ 92
3258
+ 1
3259
+ 27
3260
+ 34
3261
+ 92
3262
+ 0
3263
+ 27
3264
+ 11
3265
+ I
3266
+ 7
3267
+ I
3268
+ 2
3269
+ I
3270
+ 1
3271
+ I
3272
+ 1
3273
+ n
3274
+ p
3275
+ 9
3276
+ x
3277
+ 11
3278
+ @parent_jar
3279
+ x
3280
+ 2
3281
+ []
3282
+ x
3283
+ 9
3284
+ @verifier
3285
+ x
3286
+ 6
3287
+ verify
3288
+ x
3289
+ 13
3290
+ ActiveSupport
3291
+ n
3292
+ x
3293
+ 15
3294
+ MessageVerifier
3295
+ x
3296
+ 16
3297
+ InvalidSignature
3298
+ x
3299
+ 3
3300
+ ===
3301
+ p
3302
+ 13
3303
+ I
3304
+ -1
3305
+ I
3306
+ fb
3307
+ I
3308
+ 0
3309
+ I
3310
+ fc
3311
+ I
3312
+ 12
3313
+ I
3314
+ fd
3315
+ I
3316
+ 1b
3317
+ I
3318
+ fc
3319
+ I
3320
+ 24
3321
+ I
3322
+ ff
3323
+ I
3324
+ 35
3325
+ I
3326
+ 100
3327
+ I
3328
+ 42
3329
+ x
3330
+ 89
3331
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
3332
+ p
3333
+ 2
3334
+ x
3335
+ 4
3336
+ name
3337
+ x
3338
+ 14
3339
+ signed_message
3340
+ x
3341
+ 3
3342
+ []=
3343
+ M
3344
+ 1
3345
+ n
3346
+ n
3347
+ x
3348
+ 3
3349
+ []=
3350
+ i
3351
+ 108
3352
+ 20
3353
+ 1
3354
+ 45
3355
+ 0
3356
+ 1
3357
+ 49
3358
+ 2
3359
+ 1
3360
+ 9
3361
+ 41
3362
+ 20
3363
+ 1
3364
+ 49
3365
+ 3
3366
+ 0
3367
+ 15
3368
+ 20
3369
+ 1
3370
+ 7
3371
+ 4
3372
+ 39
3373
+ 5
3374
+ 20
3375
+ 1
3376
+ 7
3377
+ 4
3378
+ 49
3379
+ 6
3380
+ 1
3381
+ 49
3382
+ 7
3383
+ 1
3384
+ 13
3385
+ 18
3386
+ 3
3387
+ 49
3388
+ 8
3389
+ 2
3390
+ 15
3391
+ 8
3392
+ 64
3393
+ 44
3394
+ 43
3395
+ 0
3396
+ 79
3397
+ 49
3398
+ 9
3399
+ 1
3400
+ 13
3401
+ 7
3402
+ 4
3403
+ 39
3404
+ 5
3405
+ 20
3406
+ 1
3407
+ 49
3408
+ 7
3409
+ 1
3410
+ 49
3411
+ 8
3412
+ 2
3413
+ 15
3414
+ 19
3415
+ 1
3416
+ 15
3417
+ 20
3418
+ 1
3419
+ 7
3420
+ 4
3421
+ 49
3422
+ 6
3423
+ 1
3424
+ 49
3425
+ 10
3426
+ 0
3427
+ 45
3428
+ 11
3429
+ 12
3430
+ 85
3431
+ 13
3432
+ 9
3433
+ 92
3434
+ 5
3435
+ 45
3436
+ 14
3437
+ 15
3438
+ 47
3439
+ 49
3440
+ 16
3441
+ 1
3442
+ 8
3443
+ 93
3444
+ 1
3445
+ 15
3446
+ 39
3447
+ 17
3448
+ 20
3449
+ 0
3450
+ 20
3451
+ 1
3452
+ 13
3453
+ 18
3454
+ 3
3455
+ 49
3456
+ 8
3457
+ 2
3458
+ 15
3459
+ 11
3460
+ I
3461
+ 7
3462
+ I
3463
+ 2
3464
+ I
3465
+ 2
3466
+ I
3467
+ 2
3468
+ n
3469
+ p
3470
+ 18
3471
+ x
3472
+ 4
3473
+ Hash
3474
+ n
3475
+ x
3476
+ 5
3477
+ is_a?
3478
+ x
3479
+ 15
3480
+ symbolize_keys!
3481
+ x
3482
+ 5
3483
+ value
3484
+ x
3485
+ 9
3486
+ @verifier
3487
+ x
3488
+ 2
3489
+ []
3490
+ x
3491
+ 8
3492
+ generate
3493
+ x
3494
+ 3
3495
+ []=
3496
+ x
3497
+ 16
3498
+ new_from_literal
3499
+ x
3500
+ 4
3501
+ size
3502
+ x
3503
+ 15
3504
+ MAX_COOKIE_SIZE
3505
+ n
3506
+ x
3507
+ 1
3508
+ >
3509
+ x
3510
+ 14
3511
+ CookieOverflow
3512
+ n
3513
+ x
3514
+ 5
3515
+ raise
3516
+ x
3517
+ 11
3518
+ @parent_jar
3519
+ p
3520
+ 15
3521
+ I
3522
+ -1
3523
+ I
3524
+ 103
3525
+ I
3526
+ 0
3527
+ I
3528
+ 104
3529
+ I
3530
+ a
3531
+ I
3532
+ 105
3533
+ I
3534
+ 10
3535
+ I
3536
+ 106
3537
+ I
3538
+ 29
3539
+ I
3540
+ 108
3541
+ I
3542
+ 41
3543
+ I
3544
+ 10b
3545
+ I
3546
+ 5e
3547
+ I
3548
+ 10c
3549
+ I
3550
+ 6c
3551
+ x
3552
+ 89
3553
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
3554
+ p
3555
+ 2
3556
+ x
3557
+ 3
3558
+ key
3559
+ x
3560
+ 7
3561
+ options
3562
+ x
3563
+ 14
3564
+ method_missing
3565
+ M
3566
+ 1
3567
+ n
3568
+ n
3569
+ x
3570
+ 14
3571
+ method_missing
3572
+ i
3573
+ 28
3574
+ 95
3575
+ 19
3576
+ 2
3577
+ 15
3578
+ 39
3579
+ 0
3580
+ 20
3581
+ 0
3582
+ 20
3583
+ 1
3584
+ 36
3585
+ 20
3586
+ 2
3587
+ 13
3588
+ 70
3589
+ 10
3590
+ 24
3591
+ 44
3592
+ 43
3593
+ 1
3594
+ 12
3595
+ 49
3596
+ 2
3597
+ 1
3598
+ 51
3599
+ 3
3600
+ 1
3601
+ 11
3602
+ I
3603
+ 8
3604
+ I
3605
+ 3
3606
+ I
3607
+ 1
3608
+ I
3609
+ 1
3610
+ I
3611
+ 1
3612
+ p
3613
+ 4
3614
+ x
3615
+ 11
3616
+ @parent_jar
3617
+ x
3618
+ 4
3619
+ Proc
3620
+ x
3621
+ 14
3622
+ __from_block__
3623
+ x
3624
+ 4
3625
+ send
3626
+ p
3627
+ 5
3628
+ I
3629
+ -1
3630
+ I
3631
+ 10f
3632
+ I
3633
+ 4
3634
+ I
3635
+ 110
3636
+ I
3637
+ 1c
3638
+ x
3639
+ 89
3640
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
3641
+ p
3642
+ 3
3643
+ x
3644
+ 6
3645
+ method
3646
+ x
3647
+ 9
3648
+ arguments
3649
+ x
3650
+ 5
3651
+ block
3652
+ x
3653
+ 9
3654
+ protected
3655
+ x
3656
+ 20
3657
+ ensure_secret_secure
3658
+ M
3659
+ 1
3660
+ n
3661
+ n
3662
+ x
3663
+ 20
3664
+ ensure_secret_secure
3665
+ i
3666
+ 126
3667
+ 20
3668
+ 0
3669
+ 49
3670
+ 0
3671
+ 0
3672
+ 9
3673
+ 49
3674
+ 5
3675
+ 45
3676
+ 1
3677
+ 2
3678
+ 7
3679
+ 3
3680
+ 64
3681
+ 7
3682
+ 4
3683
+ 64
3684
+ 81
3685
+ 5
3686
+ 7
3687
+ 6
3688
+ 64
3689
+ 81
3690
+ 5
3691
+ 7
3692
+ 7
3693
+ 45
3694
+ 8
3695
+ 9
3696
+ 47
3697
+ 101
3698
+ 10
3699
+ 7
3700
+ 11
3701
+ 63
3702
+ 3
3703
+ 81
3704
+ 5
3705
+ 7
3706
+ 12
3707
+ 64
3708
+ 81
3709
+ 5
3710
+ 47
3711
+ 49
3712
+ 13
3713
+ 2
3714
+ 8
3715
+ 50
3716
+ 1
3717
+ 15
3718
+ 20
3719
+ 0
3720
+ 49
3721
+ 14
3722
+ 0
3723
+ 45
3724
+ 8
3725
+ 15
3726
+ 84
3727
+ 16
3728
+ 9
3729
+ 124
3730
+ 5
3731
+ 45
3732
+ 1
3733
+ 17
3734
+ 7
3735
+ 18
3736
+ 64
3737
+ 7
3738
+ 19
3739
+ 45
3740
+ 20
3741
+ 21
3742
+ 43
3743
+ 22
3744
+ 4
3745
+ 16
3746
+ 49
3747
+ 23
3748
+ 1
3749
+ 47
3750
+ 101
3751
+ 10
3752
+ 7
3753
+ 24
3754
+ 63
3755
+ 3
3756
+ 81
3757
+ 5
3758
+ 7
3759
+ 25
3760
+ 20
3761
+ 0
3762
+ 47
3763
+ 101
3764
+ 10
3765
+ 7
3766
+ 26
3767
+ 63
3768
+ 3
3769
+ 81
3770
+ 5
3771
+ 7
3772
+ 27
3773
+ 45
3774
+ 8
3775
+ 28
3776
+ 47
3777
+ 101
3778
+ 10
3779
+ 7
3780
+ 29
3781
+ 63
3782
+ 3
3783
+ 81
3784
+ 5
3785
+ 47
3786
+ 49
3787
+ 13
3788
+ 2
3789
+ 8
3790
+ 125
3791
+ 1
3792
+ 11
3793
+ I
3794
+ 7
3795
+ I
3796
+ 1
3797
+ I
3798
+ 1
3799
+ I
3800
+ 1
3801
+ n
3802
+ p
3803
+ 30
3804
+ x
3805
+ 6
3806
+ blank?
3807
+ x
3808
+ 13
3809
+ ArgumentError
3810
+ n
3811
+ s
3812
+ 36
3813
+ A secret is required to generate an
3814
+ s
3815
+ 44
3816
+ integrity hash for cookie session data. Use
3817
+ x
3818
+ 1
3819
+ +
3820
+ s
3821
+ 48
3822
+ config.secret_token = "some secret phrase of at
3823
+ s
3824
+ 6
3825
+ least
3826
+ x
3827
+ 17
3828
+ SECRET_MIN_LENGTH
3829
+ n
3830
+ x
3831
+ 4
3832
+ to_s
3833
+ s
3834
+ 12
3835
+ characters"
3836
+ s
3837
+ 38
3838
+ in config/initializers/secret_token.rb
3839
+ x
3840
+ 5
3841
+ raise
3842
+ x
3843
+ 6
3844
+ length
3845
+ n
3846
+ x
3847
+ 1
3848
+ <
3849
+ n
3850
+ s
3851
+ 35
3852
+ Secret should be something secure,
3853
+ s
3854
+ 6
3855
+ like "
3856
+ x
3857
+ 13
3858
+ ActiveSupport
3859
+ n
3860
+ x
3861
+ 12
3862
+ SecureRandom
3863
+ x
3864
+ 3
3865
+ hex
3866
+ s
3867
+ 18
3868
+ ". The value you
3869
+ s
3870
+ 11
3871
+ provided, "
3872
+ s
3873
+ 38
3874
+ ", is shorter than the minimum length
3875
+ s
3876
+ 3
3877
+ of
3878
+ n
3879
+ s
3880
+ 11
3881
+ characters
3882
+ p
3883
+ 33
3884
+ I
3885
+ -1
3886
+ I
3887
+ 117
3888
+ I
3889
+ 0
3890
+ I
3891
+ 118
3892
+ I
3893
+ 7
3894
+ I
3895
+ 119
3896
+ I
3897
+ e
3898
+ I
3899
+ 11a
3900
+ I
3901
+ 13
3902
+ I
3903
+ 11b
3904
+ I
3905
+ 18
3906
+ I
3907
+ 11c
3908
+ I
3909
+ 26
3910
+ I
3911
+ 11d
3912
+ I
3913
+ 2b
3914
+ I
3915
+ 119
3916
+ I
3917
+ 31
3918
+ I
3919
+ 118
3920
+ I
3921
+ 33
3922
+ I
3923
+ 120
3924
+ I
3925
+ 3f
3926
+ I
3927
+ 121
3928
+ I
3929
+ 46
3930
+ I
3931
+ 122
3932
+ I
3933
+ 5b
3934
+ I
3935
+ 123
3936
+ I
3937
+ 68
3938
+ I
3939
+ 124
3940
+ I
3941
+ 76
3942
+ I
3943
+ 121
3944
+ I
3945
+ 7c
3946
+ I
3947
+ 120
3948
+ I
3949
+ 7e
3950
+ x
3951
+ 89
3952
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
3953
+ p
3954
+ 1
3955
+ x
3956
+ 6
3957
+ secret
3958
+ p
3959
+ 17
3960
+ I
3961
+ 2
3962
+ I
3963
+ f2
3964
+ I
3965
+ b
3966
+ I
3967
+ f3
3968
+ I
3969
+ 14
3970
+ I
3971
+ f5
3972
+ I
3973
+ 22
3974
+ I
3975
+ fb
3976
+ I
3977
+ 30
3978
+ I
3979
+ 103
3980
+ I
3981
+ 3e
3982
+ I
3983
+ 10f
3984
+ I
3985
+ 4c
3986
+ I
3987
+ 113
3988
+ I
3989
+ 50
3990
+ I
3991
+ 117
3992
+ I
3993
+ 5e
3994
+ x
3995
+ 89
3996
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
3997
+ p
3998
+ 0
3999
+ x
4000
+ 10
4001
+ initialize
4002
+ M
4003
+ 1
4004
+ n
4005
+ n
4006
+ x
4007
+ 10
4008
+ initialize
4009
+ i
4010
+ 5
4011
+ 20
4012
+ 0
4013
+ 38
4014
+ 0
4015
+ 11
4016
+ I
4017
+ 2
4018
+ I
4019
+ 1
4020
+ I
4021
+ 1
4022
+ I
4023
+ 1
4024
+ n
4025
+ p
4026
+ 1
4027
+ x
4028
+ 4
4029
+ @app
4030
+ p
4031
+ 5
4032
+ I
4033
+ -1
4034
+ I
4035
+ 129
4036
+ I
4037
+ 0
4038
+ I
4039
+ 12a
4040
+ I
4041
+ 5
4042
+ x
4043
+ 89
4044
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
4045
+ p
4046
+ 1
4047
+ x
4048
+ 3
4049
+ app
4050
+ x
4051
+ 17
4052
+ method_visibility
4053
+ x
4054
+ 15
4055
+ add_defn_method
4056
+ x
4057
+ 4
4058
+ call
4059
+ M
4060
+ 1
4061
+ n
4062
+ n
4063
+ x
4064
+ 4
4065
+ call
4066
+ i
4067
+ 100
4068
+ 39
4069
+ 0
4070
+ 20
4071
+ 0
4072
+ 49
4073
+ 1
4074
+ 1
4075
+ 97
4076
+ 37
4077
+ 19
4078
+ 1
4079
+ 15
4080
+ 37
4081
+ 19
4082
+ 2
4083
+ 15
4084
+ 37
4085
+ 19
4086
+ 3
4087
+ 15
4088
+ 15
4089
+ 2
4090
+ 15
4091
+ 20
4092
+ 0
4093
+ 7
4094
+ 2
4095
+ 64
4096
+ 49
4097
+ 3
4098
+ 1
4099
+ 19
4100
+ 4
4101
+ 9
4102
+ 89
4103
+ 20
4104
+ 4
4105
+ 20
4106
+ 2
4107
+ 49
4108
+ 4
4109
+ 1
4110
+ 15
4111
+ 20
4112
+ 2
4113
+ 45
4114
+ 5
4115
+ 6
4116
+ 49
4117
+ 3
4118
+ 1
4119
+ 7
4120
+ 7
4121
+ 49
4122
+ 8
4123
+ 1
4124
+ 9
4125
+ 86
4126
+ 20
4127
+ 2
4128
+ 45
4129
+ 5
4130
+ 9
4131
+ 20
4132
+ 2
4133
+ 45
4134
+ 5
4135
+ 10
4136
+ 49
4137
+ 3
4138
+ 1
4139
+ 7
4140
+ 11
4141
+ 64
4142
+ 49
4143
+ 7
4144
+ 1
4145
+ 13
4146
+ 18
4147
+ 3
4148
+ 49
4149
+ 12
4150
+ 2
4151
+ 15
4152
+ 8
4153
+ 87
4154
+ 1
4155
+ 8
4156
+ 90
4157
+ 1
4158
+ 15
4159
+ 20
4160
+ 1
4161
+ 20
4162
+ 2
4163
+ 20
4164
+ 3
4165
+ 35
4166
+ 3
4167
+ 11
4168
+ I
4169
+ 9
4170
+ I
4171
+ 5
4172
+ I
4173
+ 1
4174
+ I
4175
+ 1
4176
+ n
4177
+ p
4178
+ 13
4179
+ x
4180
+ 4
4181
+ @app
4182
+ x
4183
+ 4
4184
+ call
4185
+ s
4186
+ 23
4187
+ action_dispatch.cookies
4188
+ x
4189
+ 2
4190
+ []
4191
+ x
4192
+ 5
4193
+ write
4194
+ x
4195
+ 11
4196
+ HTTP_HEADER
4197
+ n
4198
+ x
4199
+ 4
4200
+ join
4201
+ x
4202
+ 11
4203
+ respond_to?
4204
+ n
4205
+ n
4206
+ s
4207
+ 1
4208
+
4209
+
4210
+ x
4211
+ 3
4212
+ []=
4213
+ p
4214
+ 19
4215
+ I
4216
+ -1
4217
+ I
4218
+ 12d
4219
+ I
4220
+ 0
4221
+ I
4222
+ 12e
4223
+ I
4224
+ 17
4225
+ I
4226
+ 130
4227
+ I
4228
+ 23
4229
+ I
4230
+ 131
4231
+ I
4232
+ 2b
4233
+ I
4234
+ 132
4235
+ I
4236
+ 3a
4237
+ I
4238
+ 133
4239
+ I
4240
+ 56
4241
+ I
4242
+ 132
4243
+ I
4244
+ 59
4245
+ I
4246
+ 130
4247
+ I
4248
+ 5b
4249
+ I
4250
+ 137
4251
+ I
4252
+ 64
4253
+ x
4254
+ 89
4255
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
4256
+ p
4257
+ 5
4258
+ x
4259
+ 3
4260
+ env
4261
+ x
4262
+ 6
4263
+ status
4264
+ x
4265
+ 7
4266
+ headers
4267
+ x
4268
+ 4
4269
+ body
4270
+ x
4271
+ 10
4272
+ cookie_jar
4273
+ p
4274
+ 17
4275
+ I
4276
+ 2
4277
+ I
4278
+ 50
4279
+ I
4280
+ f
4281
+ I
4282
+ 51
4283
+ I
4284
+ 1c
4285
+ I
4286
+ 54
4287
+ I
4288
+ 29
4289
+ I
4290
+ 56
4291
+ I
4292
+ 46
4293
+ I
4294
+ d8
4295
+ I
4296
+ 63
4297
+ I
4298
+ f1
4299
+ I
4300
+ 80
4301
+ I
4302
+ 129
4303
+ I
4304
+ 8e
4305
+ I
4306
+ 12d
4307
+ I
4308
+ 9c
4309
+ x
4310
+ 89
4311
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
4312
+ p
4313
+ 0
4314
+ p
4315
+ 5
4316
+ I
4317
+ 2
4318
+ I
4319
+ 4
4320
+ I
4321
+ 1d
4322
+ I
4323
+ 4f
4324
+ I
4325
+ 38
4326
+ x
4327
+ 89
4328
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
4329
+ p
4330
+ 0
4331
+ x
4332
+ 13
4333
+ attach_method
4334
+ p
4335
+ 5
4336
+ I
4337
+ 0
4338
+ I
4339
+ 1
4340
+ I
4341
+ 9
4342
+ I
4343
+ 3
4344
+ I
4345
+ 25
4346
+ x
4347
+ 89
4348
+ /Users/santiago/WyeWorks/Projs/rails/actionpack/lib/action_dispatch/middleware/cookies.rb
4349
+ p
4350
+ 0