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