activerecord 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 activerecord might be problematic. Click here for more details.

Files changed (74) hide show
  1. data/CHANGELOG +7 -1
  2. data/lib/active_record.rbc +1825 -0
  3. data/lib/active_record/aggregations.rbc +2173 -0
  4. data/lib/active_record/association_preload.rbc +8379 -0
  5. data/lib/active_record/associations.rbc +25180 -0
  6. data/lib/active_record/associations/association_collection.rbc +11174 -0
  7. data/lib/active_record/associations/association_proxy.rbc +4435 -0
  8. data/lib/active_record/associations/belongs_to_association.rbc +1867 -0
  9. data/lib/active_record/associations/belongs_to_polymorphic_association.rbc +1718 -0
  10. data/lib/active_record/associations/has_many_association.rbc +2553 -0
  11. data/lib/active_record/associations/has_many_through_association.rbc +2381 -0
  12. data/lib/active_record/associations/has_one_association.rbc +2919 -0
  13. data/lib/active_record/associations/through_association_scope.rbc +3411 -0
  14. data/lib/active_record/attribute_methods.rbc +1473 -0
  15. data/lib/active_record/attribute_methods/before_type_cast.rbc +700 -0
  16. data/lib/active_record/attribute_methods/dirty.rbc +1627 -0
  17. data/lib/active_record/attribute_methods/primary_key.rb +6 -0
  18. data/lib/active_record/attribute_methods/primary_key.rbc +1017 -0
  19. data/lib/active_record/attribute_methods/query.rbc +786 -0
  20. data/lib/active_record/attribute_methods/read.rb +5 -3
  21. data/lib/active_record/attribute_methods/read.rbc +2614 -0
  22. data/lib/active_record/attribute_methods/time_zone_conversion.rbc +1148 -0
  23. data/lib/active_record/attribute_methods/write.rbc +998 -0
  24. data/lib/active_record/autosave_association.rbc +4143 -0
  25. data/lib/active_record/base.rb +2 -1
  26. data/lib/active_record/base.rbc +23583 -0
  27. data/lib/active_record/callbacks.rbc +1562 -0
  28. data/lib/active_record/connection_adapters/abstract/connection_pool.rbc +5041 -0
  29. data/lib/active_record/connection_adapters/abstract/connection_specification.rbc +1752 -0
  30. data/lib/active_record/connection_adapters/abstract/database_limits.rbc +877 -0
  31. data/lib/active_record/connection_adapters/abstract/database_statements.rbc +4704 -0
  32. data/lib/active_record/connection_adapters/abstract/query_cache.rbc +1519 -0
  33. data/lib/active_record/connection_adapters/abstract/quoting.rbc +1566 -0
  34. data/lib/active_record/connection_adapters/abstract/schema_definitions.rbc +10452 -0
  35. data/lib/active_record/connection_adapters/abstract/schema_statements.rbc +6987 -0
  36. data/lib/active_record/connection_adapters/abstract_adapter.rbc +2890 -0
  37. data/lib/active_record/connection_adapters/postgresql_adapter.rbc +16913 -0
  38. data/lib/active_record/connection_adapters/sqlite3_adapter.rbc +1265 -0
  39. data/lib/active_record/connection_adapters/sqlite_adapter.rbc +0 -0
  40. data/lib/active_record/counter_cache.rbc +1191 -0
  41. data/lib/active_record/dynamic_finder_match.rbc +1091 -0
  42. data/lib/active_record/dynamic_scope_match.rbc +514 -0
  43. data/lib/active_record/errors.rbc +1077 -0
  44. data/lib/active_record/locking/optimistic.rbc +2281 -0
  45. data/lib/active_record/locking/pessimistic.rbc +384 -0
  46. data/lib/active_record/log_subscriber.rbc +1055 -0
  47. data/lib/active_record/migration.rbc +8513 -0
  48. data/lib/active_record/named_scope.rbc +1347 -0
  49. data/lib/active_record/nested_attributes.rb +1 -0
  50. data/lib/active_record/nested_attributes.rbc +3599 -0
  51. data/lib/active_record/observer.rbc +941 -0
  52. data/lib/active_record/persistence.rbc +3631 -0
  53. data/lib/active_record/query_cache.rbc +760 -0
  54. data/lib/active_record/railtie.rbc +2109 -0
  55. data/lib/active_record/railties/controller_runtime.rbc +838 -0
  56. data/lib/active_record/reflection.rbc +6897 -0
  57. data/lib/active_record/relation.rbc +6006 -0
  58. data/lib/active_record/relation/batches.rb +1 -1
  59. data/lib/active_record/relation/batches.rbc +1078 -0
  60. data/lib/active_record/relation/calculations.rbc +4012 -0
  61. data/lib/active_record/relation/finder_methods.rb +14 -6
  62. data/lib/active_record/relation/finder_methods.rbc +5264 -0
  63. data/lib/active_record/relation/query_methods.rbc +6458 -0
  64. data/lib/active_record/relation/spawn_methods.rbc +3034 -0
  65. data/lib/active_record/serialization.rbc +1302 -0
  66. data/lib/active_record/serializers/xml_serializer.rbc +1866 -0
  67. data/lib/active_record/timestamp.rbc +1354 -0
  68. data/lib/active_record/transactions.rbc +3348 -0
  69. data/lib/active_record/validations.rbc +1597 -0
  70. data/lib/active_record/validations/associated.rbc +681 -0
  71. data/lib/active_record/validations/uniqueness.rbc +1803 -0
  72. data/lib/active_record/version.rb +2 -2
  73. data/lib/active_record/version.rbc +295 -0
  74. metadata +89 -16
@@ -77,9 +77,11 @@ module ActiveRecord
77
77
  # Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example,
78
78
  # "2004-12-12" in a data column is cast to a date object, like Date.new(2004, 12, 12)).
79
79
  def read_attribute(attr_name)
80
- send "_#{attr_name}"
81
- rescue NoMethodError
82
- _read_attribute attr_name
80
+ if respond_to? "_#{attr_name}"
81
+ send "_#{attr_name}"
82
+ else
83
+ _read_attribute attr_name
84
+ end
83
85
  end
84
86
 
85
87
  def _read_attribute(attr_name)
@@ -0,0 +1,2614 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 12
54
+ ActiveRecord
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 12
67
+ ActiveRecord
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 16
111
+ AttributeMethods
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 16
124
+ AttributeMethods
125
+ i
126
+ 28
127
+ 5
128
+ 66
129
+ 99
130
+ 7
131
+ 0
132
+ 65
133
+ 49
134
+ 1
135
+ 2
136
+ 13
137
+ 99
138
+ 12
139
+ 7
140
+ 2
141
+ 12
142
+ 7
143
+ 3
144
+ 12
145
+ 65
146
+ 12
147
+ 49
148
+ 4
149
+ 4
150
+ 15
151
+ 49
152
+ 2
153
+ 0
154
+ 11
155
+ I
156
+ 6
157
+ I
158
+ 0
159
+ I
160
+ 0
161
+ I
162
+ 0
163
+ n
164
+ p
165
+ 5
166
+ x
167
+ 4
168
+ Read
169
+ x
170
+ 11
171
+ open_module
172
+ x
173
+ 15
174
+ __module_init__
175
+ M
176
+ 1
177
+ n
178
+ n
179
+ x
180
+ 4
181
+ Read
182
+ i
183
+ 138
184
+ 5
185
+ 66
186
+ 5
187
+ 45
188
+ 0
189
+ 1
190
+ 43
191
+ 2
192
+ 47
193
+ 49
194
+ 3
195
+ 1
196
+ 15
197
+ 65
198
+ 7
199
+ 4
200
+ 7
201
+ 5
202
+ 7
203
+ 6
204
+ 7
205
+ 7
206
+ 7
207
+ 8
208
+ 35
209
+ 4
210
+ 49
211
+ 9
212
+ 2
213
+ 15
214
+ 5
215
+ 56
216
+ 10
217
+ 47
218
+ 50
219
+ 11
220
+ 0
221
+ 15
222
+ 99
223
+ 7
224
+ 12
225
+ 65
226
+ 49
227
+ 13
228
+ 2
229
+ 13
230
+ 99
231
+ 12
232
+ 7
233
+ 14
234
+ 12
235
+ 7
236
+ 15
237
+ 12
238
+ 65
239
+ 12
240
+ 49
241
+ 16
242
+ 4
243
+ 15
244
+ 49
245
+ 14
246
+ 0
247
+ 15
248
+ 99
249
+ 7
250
+ 17
251
+ 7
252
+ 18
253
+ 65
254
+ 67
255
+ 49
256
+ 19
257
+ 0
258
+ 49
259
+ 20
260
+ 4
261
+ 15
262
+ 99
263
+ 7
264
+ 21
265
+ 7
266
+ 22
267
+ 65
268
+ 67
269
+ 49
270
+ 19
271
+ 0
272
+ 49
273
+ 20
274
+ 4
275
+ 15
276
+ 99
277
+ 7
278
+ 23
279
+ 7
280
+ 24
281
+ 65
282
+ 67
283
+ 49
284
+ 19
285
+ 0
286
+ 49
287
+ 20
288
+ 4
289
+ 15
290
+ 99
291
+ 7
292
+ 25
293
+ 7
294
+ 26
295
+ 65
296
+ 67
297
+ 49
298
+ 19
299
+ 0
300
+ 49
301
+ 20
302
+ 4
303
+ 15
304
+ 5
305
+ 48
306
+ 27
307
+ 15
308
+ 99
309
+ 7
310
+ 28
311
+ 7
312
+ 29
313
+ 65
314
+ 67
315
+ 49
316
+ 19
317
+ 0
318
+ 49
319
+ 20
320
+ 4
321
+ 11
322
+ I
323
+ 6
324
+ I
325
+ 0
326
+ I
327
+ 0
328
+ I
329
+ 0
330
+ n
331
+ p
332
+ 30
333
+ x
334
+ 13
335
+ ActiveSupport
336
+ n
337
+ x
338
+ 7
339
+ Concern
340
+ x
341
+ 6
342
+ extend
343
+ x
344
+ 33
345
+ ATTRIBUTE_TYPES_CACHED_BY_DEFAULT
346
+ x
347
+ 8
348
+ datetime
349
+ x
350
+ 9
351
+ timestamp
352
+ x
353
+ 4
354
+ time
355
+ x
356
+ 4
357
+ date
358
+ x
359
+ 9
360
+ const_set
361
+ M
362
+ 1
363
+ p
364
+ 2
365
+ x
366
+ 9
367
+ for_block
368
+ t
369
+ n
370
+ x
371
+ 4
372
+ Read
373
+ i
374
+ 65
375
+ 5
376
+ 7
377
+ 0
378
+ 64
379
+ 47
380
+ 49
381
+ 1
382
+ 1
383
+ 15
384
+ 5
385
+ 7
386
+ 2
387
+ 44
388
+ 43
389
+ 3
390
+ 79
391
+ 49
392
+ 4
393
+ 1
394
+ 13
395
+ 7
396
+ 5
397
+ 3
398
+ 49
399
+ 6
400
+ 2
401
+ 15
402
+ 47
403
+ 49
404
+ 7
405
+ 2
406
+ 15
407
+ 5
408
+ 45
409
+ 8
410
+ 9
411
+ 13
412
+ 18
413
+ 2
414
+ 47
415
+ 49
416
+ 10
417
+ 1
418
+ 15
419
+ 15
420
+ 5
421
+ 7
422
+ 11
423
+ 47
424
+ 49
425
+ 12
426
+ 1
427
+ 9
428
+ 63
429
+ 5
430
+ 7
431
+ 11
432
+ 47
433
+ 49
434
+ 13
435
+ 1
436
+ 8
437
+ 64
438
+ 1
439
+ 11
440
+ I
441
+ 7
442
+ I
443
+ 0
444
+ I
445
+ 0
446
+ I
447
+ 0
448
+ I
449
+ -2
450
+ p
451
+ 14
452
+ s
453
+ 0
454
+
455
+ x
456
+ 23
457
+ attribute_method_suffix
458
+ x
459
+ 33
460
+ attribute_types_cached_by_default
461
+ x
462
+ 4
463
+ Hash
464
+ x
465
+ 16
466
+ new_from_literal
467
+ x
468
+ 15
469
+ instance_writer
470
+ x
471
+ 3
472
+ []=
473
+ x
474
+ 14
475
+ cattr_accessor
476
+ x
477
+ 33
478
+ ATTRIBUTE_TYPES_CACHED_BY_DEFAULT
479
+ n
480
+ x
481
+ 34
482
+ attribute_types_cached_by_default=
483
+ x
484
+ 2
485
+ id
486
+ x
487
+ 15
488
+ method_defined?
489
+ x
490
+ 12
491
+ undef_method
492
+ p
493
+ 11
494
+ I
495
+ 0
496
+ I
497
+ 9
498
+ I
499
+ 9
500
+ I
501
+ b
502
+ I
503
+ 20
504
+ I
505
+ 7d
506
+ I
507
+ 21
508
+ I
509
+ c
510
+ I
511
+ 2d
512
+ I
513
+ f
514
+ I
515
+ 41
516
+ x
517
+ 93
518
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
519
+ p
520
+ 0
521
+ x
522
+ 8
523
+ included
524
+ x
525
+ 12
526
+ ClassMethods
527
+ x
528
+ 11
529
+ open_module
530
+ x
531
+ 15
532
+ __module_init__
533
+ M
534
+ 1
535
+ n
536
+ n
537
+ x
538
+ 12
539
+ ClassMethods
540
+ i
541
+ 94
542
+ 5
543
+ 66
544
+ 99
545
+ 7
546
+ 0
547
+ 7
548
+ 1
549
+ 65
550
+ 67
551
+ 49
552
+ 2
553
+ 0
554
+ 49
555
+ 3
556
+ 4
557
+ 15
558
+ 99
559
+ 7
560
+ 4
561
+ 7
562
+ 5
563
+ 65
564
+ 67
565
+ 49
566
+ 2
567
+ 0
568
+ 49
569
+ 3
570
+ 4
571
+ 15
572
+ 99
573
+ 7
574
+ 6
575
+ 7
576
+ 7
577
+ 65
578
+ 67
579
+ 49
580
+ 2
581
+ 0
582
+ 49
583
+ 3
584
+ 4
585
+ 15
586
+ 5
587
+ 48
588
+ 8
589
+ 15
590
+ 99
591
+ 7
592
+ 9
593
+ 7
594
+ 10
595
+ 65
596
+ 67
597
+ 49
598
+ 2
599
+ 0
600
+ 49
601
+ 3
602
+ 4
603
+ 15
604
+ 5
605
+ 48
606
+ 11
607
+ 15
608
+ 99
609
+ 7
610
+ 12
611
+ 7
612
+ 13
613
+ 65
614
+ 67
615
+ 49
616
+ 2
617
+ 0
618
+ 49
619
+ 3
620
+ 4
621
+ 15
622
+ 99
623
+ 7
624
+ 14
625
+ 7
626
+ 15
627
+ 65
628
+ 67
629
+ 49
630
+ 2
631
+ 0
632
+ 49
633
+ 3
634
+ 4
635
+ 11
636
+ I
637
+ 5
638
+ I
639
+ 0
640
+ I
641
+ 0
642
+ I
643
+ 0
644
+ n
645
+ p
646
+ 16
647
+ x
648
+ 16
649
+ cache_attributes
650
+ M
651
+ 1
652
+ n
653
+ n
654
+ x
655
+ 16
656
+ cache_attributes
657
+ i
658
+ 8
659
+ 20
660
+ 0
661
+ 56
662
+ 0
663
+ 50
664
+ 1
665
+ 0
666
+ 11
667
+ I
668
+ 3
669
+ I
670
+ 1
671
+ I
672
+ 0
673
+ I
674
+ 0
675
+ I
676
+ 0
677
+ p
678
+ 2
679
+ M
680
+ 1
681
+ p
682
+ 2
683
+ x
684
+ 9
685
+ for_block
686
+ t
687
+ n
688
+ x
689
+ 16
690
+ cache_attributes
691
+ i
692
+ 16
693
+ 57
694
+ 19
695
+ 0
696
+ 15
697
+ 5
698
+ 48
699
+ 0
700
+ 20
701
+ 0
702
+ 49
703
+ 1
704
+ 0
705
+ 49
706
+ 2
707
+ 1
708
+ 11
709
+ I
710
+ 4
711
+ I
712
+ 1
713
+ I
714
+ 1
715
+ I
716
+ 1
717
+ n
718
+ p
719
+ 3
720
+ x
721
+ 17
722
+ cached_attributes
723
+ x
724
+ 4
725
+ to_s
726
+ x
727
+ 2
728
+ <<
729
+ p
730
+ 3
731
+ I
732
+ 0
733
+ I
734
+ 17
735
+ I
736
+ 10
737
+ x
738
+ 93
739
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
740
+ p
741
+ 1
742
+ x
743
+ 4
744
+ attr
745
+ x
746
+ 4
747
+ each
748
+ p
749
+ 5
750
+ I
751
+ -1
752
+ I
753
+ 16
754
+ I
755
+ 0
756
+ I
757
+ 17
758
+ I
759
+ 8
760
+ x
761
+ 93
762
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
763
+ p
764
+ 1
765
+ x
766
+ 15
767
+ attribute_names
768
+ x
769
+ 17
770
+ method_visibility
771
+ x
772
+ 15
773
+ add_defn_method
774
+ x
775
+ 17
776
+ cached_attributes
777
+ M
778
+ 1
779
+ n
780
+ n
781
+ x
782
+ 17
783
+ cached_attributes
784
+ i
785
+ 25
786
+ 39
787
+ 0
788
+ 13
789
+ 10
790
+ 24
791
+ 15
792
+ 5
793
+ 48
794
+ 1
795
+ 56
796
+ 2
797
+ 50
798
+ 3
799
+ 0
800
+ 56
801
+ 4
802
+ 50
803
+ 5
804
+ 0
805
+ 49
806
+ 6
807
+ 0
808
+ 38
809
+ 0
810
+ 11
811
+ I
812
+ 2
813
+ I
814
+ 0
815
+ I
816
+ 0
817
+ I
818
+ 0
819
+ n
820
+ p
821
+ 7
822
+ x
823
+ 18
824
+ @cached_attributes
825
+ x
826
+ 7
827
+ columns
828
+ M
829
+ 1
830
+ p
831
+ 2
832
+ x
833
+ 9
834
+ for_block
835
+ t
836
+ n
837
+ x
838
+ 17
839
+ cached_attributes
840
+ i
841
+ 16
842
+ 57
843
+ 19
844
+ 0
845
+ 15
846
+ 5
847
+ 48
848
+ 0
849
+ 20
850
+ 0
851
+ 49
852
+ 1
853
+ 0
854
+ 49
855
+ 2
856
+ 1
857
+ 11
858
+ I
859
+ 4
860
+ I
861
+ 1
862
+ I
863
+ 1
864
+ I
865
+ 1
866
+ n
867
+ p
868
+ 3
869
+ x
870
+ 33
871
+ attribute_types_cached_by_default
872
+ x
873
+ 4
874
+ type
875
+ x
876
+ 8
877
+ include?
878
+ p
879
+ 3
880
+ I
881
+ 0
882
+ I
883
+ 1e
884
+ I
885
+ 10
886
+ x
887
+ 93
888
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
889
+ p
890
+ 1
891
+ x
892
+ 1
893
+ c
894
+ x
895
+ 6
896
+ select
897
+ M
898
+ 1
899
+ p
900
+ 2
901
+ x
902
+ 9
903
+ for_block
904
+ t
905
+ n
906
+ x
907
+ 17
908
+ cached_attributes
909
+ i
910
+ 10
911
+ 57
912
+ 19
913
+ 0
914
+ 15
915
+ 20
916
+ 0
917
+ 49
918
+ 0
919
+ 0
920
+ 11
921
+ I
922
+ 3
923
+ I
924
+ 1
925
+ I
926
+ 1
927
+ I
928
+ 1
929
+ n
930
+ p
931
+ 1
932
+ x
933
+ 4
934
+ name
935
+ p
936
+ 3
937
+ I
938
+ 0
939
+ I
940
+ 1e
941
+ I
942
+ a
943
+ x
944
+ 93
945
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
946
+ p
947
+ 1
948
+ x
949
+ 3
950
+ col
951
+ x
952
+ 3
953
+ map
954
+ x
955
+ 6
956
+ to_set
957
+ p
958
+ 7
959
+ I
960
+ -1
961
+ I
962
+ 1c
963
+ I
964
+ 0
965
+ I
966
+ 1e
967
+ I
968
+ 16
969
+ I
970
+ 1d
971
+ I
972
+ 19
973
+ x
974
+ 93
975
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
976
+ p
977
+ 0
978
+ x
979
+ 16
980
+ cache_attribute?
981
+ M
982
+ 1
983
+ n
984
+ n
985
+ x
986
+ 16
987
+ cache_attribute?
988
+ i
989
+ 9
990
+ 5
991
+ 48
992
+ 0
993
+ 20
994
+ 0
995
+ 49
996
+ 1
997
+ 1
998
+ 11
999
+ I
1000
+ 3
1001
+ I
1002
+ 1
1003
+ I
1004
+ 1
1005
+ I
1006
+ 1
1007
+ n
1008
+ p
1009
+ 2
1010
+ x
1011
+ 17
1012
+ cached_attributes
1013
+ x
1014
+ 8
1015
+ include?
1016
+ p
1017
+ 5
1018
+ I
1019
+ -1
1020
+ I
1021
+ 22
1022
+ I
1023
+ 0
1024
+ I
1025
+ 23
1026
+ I
1027
+ 9
1028
+ x
1029
+ 93
1030
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1031
+ p
1032
+ 1
1033
+ x
1034
+ 9
1035
+ attr_name
1036
+ x
1037
+ 9
1038
+ protected
1039
+ x
1040
+ 23
1041
+ define_method_attribute
1042
+ M
1043
+ 1
1044
+ n
1045
+ n
1046
+ x
1047
+ 23
1048
+ define_method_attribute
1049
+ i
1050
+ 88
1051
+ 5
1052
+ 49
1053
+ 0
1054
+ 0
1055
+ 20
1056
+ 0
1057
+ 49
1058
+ 1
1059
+ 1
1060
+ 9
1061
+ 20
1062
+ 5
1063
+ 20
1064
+ 0
1065
+ 47
1066
+ 49
1067
+ 2
1068
+ 1
1069
+ 8
1070
+ 40
1071
+ 5
1072
+ 20
1073
+ 0
1074
+ 49
1075
+ 3
1076
+ 0
1077
+ 20
1078
+ 0
1079
+ 5
1080
+ 48
1081
+ 4
1082
+ 20
1083
+ 0
1084
+ 49
1085
+ 1
1086
+ 1
1087
+ 47
1088
+ 49
1089
+ 5
1090
+ 3
1091
+ 15
1092
+ 20
1093
+ 0
1094
+ 5
1095
+ 48
1096
+ 6
1097
+ 83
1098
+ 7
1099
+ 13
1100
+ 9
1101
+ 65
1102
+ 15
1103
+ 20
1104
+ 0
1105
+ 7
1106
+ 8
1107
+ 64
1108
+ 83
1109
+ 7
1110
+ 10
1111
+ 64
1112
+ 2
1113
+ 8
1114
+ 65
1115
+ 3
1116
+ 9
1117
+ 86
1118
+ 5
1119
+ 7
1120
+ 9
1121
+ 20
1122
+ 0
1123
+ 5
1124
+ 48
1125
+ 4
1126
+ 20
1127
+ 0
1128
+ 49
1129
+ 1
1130
+ 1
1131
+ 47
1132
+ 49
1133
+ 5
1134
+ 3
1135
+ 8
1136
+ 87
1137
+ 1
1138
+ 11
1139
+ I
1140
+ 6
1141
+ I
1142
+ 1
1143
+ I
1144
+ 1
1145
+ I
1146
+ 1
1147
+ n
1148
+ p
1149
+ 10
1150
+ x
1151
+ 21
1152
+ serialized_attributes
1153
+ x
1154
+ 2
1155
+ []
1156
+ x
1157
+ 43
1158
+ define_read_method_for_serialized_attribute
1159
+ x
1160
+ 6
1161
+ to_sym
1162
+ x
1163
+ 12
1164
+ columns_hash
1165
+ x
1166
+ 18
1167
+ define_read_method
1168
+ x
1169
+ 11
1170
+ primary_key
1171
+ x
1172
+ 2
1173
+ ==
1174
+ s
1175
+ 2
1176
+ id
1177
+ x
1178
+ 2
1179
+ id
1180
+ p
1181
+ 15
1182
+ I
1183
+ -1
1184
+ I
1185
+ 27
1186
+ I
1187
+ 0
1188
+ I
1189
+ 28
1190
+ I
1191
+ b
1192
+ I
1193
+ 29
1194
+ I
1195
+ 14
1196
+ I
1197
+ 2b
1198
+ I
1199
+ 29
1200
+ I
1201
+ 2e
1202
+ I
1203
+ 43
1204
+ I
1205
+ 2f
1206
+ I
1207
+ 56
1208
+ I
1209
+ 2e
1210
+ I
1211
+ 58
1212
+ x
1213
+ 93
1214
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1215
+ p
1216
+ 1
1217
+ x
1218
+ 9
1219
+ attr_name
1220
+ x
1221
+ 7
1222
+ private
1223
+ x
1224
+ 43
1225
+ define_read_method_for_serialized_attribute
1226
+ M
1227
+ 1
1228
+ n
1229
+ n
1230
+ x
1231
+ 43
1232
+ define_read_method_for_serialized_attribute
1233
+ i
1234
+ 31
1235
+ 5
1236
+ 48
1237
+ 0
1238
+ 7
1239
+ 1
1240
+ 20
1241
+ 0
1242
+ 47
1243
+ 101
1244
+ 2
1245
+ 7
1246
+ 3
1247
+ 20
1248
+ 0
1249
+ 47
1250
+ 101
1251
+ 2
1252
+ 7
1253
+ 4
1254
+ 63
1255
+ 5
1256
+ 65
1257
+ 49
1258
+ 5
1259
+ 0
1260
+ 4
1261
+ 54
1262
+ 49
1263
+ 6
1264
+ 3
1265
+ 11
1266
+ I
1267
+ 7
1268
+ I
1269
+ 1
1270
+ I
1271
+ 1
1272
+ I
1273
+ 1
1274
+ n
1275
+ p
1276
+ 7
1277
+ x
1278
+ 27
1279
+ generated_attribute_methods
1280
+ s
1281
+ 4
1282
+ def
1283
+ x
1284
+ 4
1285
+ to_s
1286
+ s
1287
+ 25
1288
+ ; unserialize_attribute('
1289
+ s
1290
+ 7
1291
+ '); end
1292
+ x
1293
+ 11
1294
+ active_path
1295
+ x
1296
+ 11
1297
+ module_eval
1298
+ p
1299
+ 5
1300
+ I
1301
+ -1
1302
+ I
1303
+ 35
1304
+ I
1305
+ 0
1306
+ I
1307
+ 36
1308
+ I
1309
+ 1f
1310
+ x
1311
+ 93
1312
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1313
+ p
1314
+ 1
1315
+ x
1316
+ 9
1317
+ attr_name
1318
+ x
1319
+ 18
1320
+ define_read_method
1321
+ M
1322
+ 1
1323
+ n
1324
+ n
1325
+ x
1326
+ 18
1327
+ define_read_method
1328
+ i
1329
+ 215
1330
+ 20
1331
+ 2
1332
+ 9
1333
+ 16
1334
+ 20
1335
+ 2
1336
+ 7
1337
+ 0
1338
+ 64
1339
+ 49
1340
+ 1
1341
+ 1
1342
+ 19
1343
+ 3
1344
+ 8
1345
+ 17
1346
+ 1
1347
+ 15
1348
+ 20
1349
+ 3
1350
+ 9
1351
+ 40
1352
+ 7
1353
+ 2
1354
+ 20
1355
+ 1
1356
+ 47
1357
+ 101
1358
+ 3
1359
+ 7
1360
+ 4
1361
+ 20
1362
+ 3
1363
+ 47
1364
+ 101
1365
+ 3
1366
+ 63
1367
+ 4
1368
+ 8
1369
+ 51
1370
+ 7
1371
+ 5
1372
+ 20
1373
+ 1
1374
+ 47
1375
+ 101
1376
+ 3
1377
+ 7
1378
+ 6
1379
+ 63
1380
+ 3
1381
+ 19
1382
+ 4
1383
+ 15
1384
+ 20
1385
+ 1
1386
+ 49
1387
+ 3
1388
+ 0
1389
+ 5
1390
+ 49
1391
+ 7
1392
+ 0
1393
+ 49
1394
+ 3
1395
+ 0
1396
+ 83
1397
+ 8
1398
+ 9
1399
+ 73
1400
+ 1
1401
+ 8
1402
+ 99
1403
+ 20
1404
+ 4
1405
+ 78
1406
+ 7
1407
+ 9
1408
+ 20
1409
+ 1
1410
+ 47
1411
+ 101
1412
+ 3
1413
+ 7
1414
+ 10
1415
+ 20
1416
+ 1
1417
+ 47
1418
+ 101
1419
+ 3
1420
+ 7
1421
+ 11
1422
+ 63
1423
+ 5
1424
+ 49
1425
+ 12
1426
+ 2
1427
+ 19
1428
+ 4
1429
+ 15
1430
+ 5
1431
+ 20
1432
+ 1
1433
+ 47
1434
+ 49
1435
+ 13
1436
+ 1
1437
+ 9
1438
+ 131
1439
+ 7
1440
+ 14
1441
+ 20
1442
+ 1
1443
+ 47
1444
+ 101
1445
+ 3
1446
+ 7
1447
+ 15
1448
+ 20
1449
+ 4
1450
+ 47
1451
+ 101
1452
+ 3
1453
+ 7
1454
+ 16
1455
+ 63
1456
+ 5
1457
+ 19
1458
+ 4
1459
+ 8
1460
+ 132
1461
+ 1
1462
+ 15
1463
+ 20
1464
+ 0
1465
+ 7
1466
+ 17
1467
+ 13
1468
+ 70
1469
+ 9
1470
+ 153
1471
+ 15
1472
+ 44
1473
+ 43
1474
+ 18
1475
+ 7
1476
+ 19
1477
+ 78
1478
+ 49
1479
+ 20
1480
+ 2
1481
+ 6
1482
+ 17
1483
+ 49
1484
+ 21
1485
+ 1
1486
+ 9
1487
+ 202
1488
+ 5
1489
+ 48
1490
+ 22
1491
+ 7
1492
+ 23
1493
+ 20
1494
+ 0
1495
+ 47
1496
+ 101
1497
+ 3
1498
+ 7
1499
+ 24
1500
+ 20
1501
+ 4
1502
+ 47
1503
+ 101
1504
+ 3
1505
+ 7
1506
+ 25
1507
+ 20
1508
+ 0
1509
+ 47
1510
+ 101
1511
+ 3
1512
+ 7
1513
+ 26
1514
+ 20
1515
+ 0
1516
+ 47
1517
+ 101
1518
+ 3
1519
+ 63
1520
+ 8
1521
+ 65
1522
+ 49
1523
+ 27
1524
+ 0
1525
+ 4
1526
+ 70
1527
+ 49
1528
+ 28
1529
+ 3
1530
+ 8
1531
+ 214
1532
+ 5
1533
+ 48
1534
+ 22
1535
+ 7
1536
+ 29
1537
+ 20
1538
+ 0
1539
+ 56
1540
+ 30
1541
+ 50
1542
+ 31
1543
+ 2
1544
+ 11
1545
+ I
1546
+ e
1547
+ I
1548
+ 5
1549
+ I
1550
+ 3
1551
+ I
1552
+ 3
1553
+ n
1554
+ p
1555
+ 32
1556
+ s
1557
+ 1
1558
+ v
1559
+ x
1560
+ 14
1561
+ type_cast_code
1562
+ s
1563
+ 16
1564
+ (v=@attributes['
1565
+ x
1566
+ 4
1567
+ to_s
1568
+ s
1569
+ 7
1570
+ ']) &&
1571
+ s
1572
+ 13
1573
+ @attributes['
1574
+ s
1575
+ 2
1576
+ ']
1577
+ x
1578
+ 11
1579
+ primary_key
1580
+ x
1581
+ 2
1582
+ ==
1583
+ s
1584
+ 19
1585
+ missing_attribute('
1586
+ s
1587
+ 40
1588
+ ', caller) unless @attributes.has_key?('
1589
+ s
1590
+ 4
1591
+ ');
1592
+ x
1593
+ 6
1594
+ insert
1595
+ x
1596
+ 16
1597
+ cache_attribute?
1598
+ s
1599
+ 19
1600
+ @attributes_cache['
1601
+ s
1602
+ 8
1603
+ '] ||= (
1604
+ s
1605
+ 1
1606
+ )
1607
+ n
1608
+ x
1609
+ 6
1610
+ Regexp
1611
+ s
1612
+ 20
1613
+ ^[a-zA-Z_]\w*[!?=]?$
1614
+ x
1615
+ 3
1616
+ new
1617
+ x
1618
+ 2
1619
+ =~
1620
+ x
1621
+ 27
1622
+ generated_attribute_methods
1623
+ s
1624
+ 5
1625
+ def _
1626
+ s
1627
+ 2
1628
+ ;
1629
+ s
1630
+ 13
1631
+ ; end; alias
1632
+ s
1633
+ 2
1634
+ _
1635
+ x
1636
+ 11
1637
+ active_path
1638
+ x
1639
+ 11
1640
+ module_eval
1641
+ x
1642
+ 13
1643
+ define_method
1644
+ M
1645
+ 1
1646
+ p
1647
+ 2
1648
+ x
1649
+ 9
1650
+ for_block
1651
+ t
1652
+ n
1653
+ x
1654
+ 18
1655
+ define_read_method
1656
+ i
1657
+ 9
1658
+ 5
1659
+ 21
1660
+ 1
1661
+ 4
1662
+ 47
1663
+ 49
1664
+ 0
1665
+ 1
1666
+ 11
1667
+ I
1668
+ 3
1669
+ I
1670
+ 0
1671
+ I
1672
+ 0
1673
+ I
1674
+ 0
1675
+ I
1676
+ -2
1677
+ p
1678
+ 1
1679
+ x
1680
+ 4
1681
+ eval
1682
+ p
1683
+ 3
1684
+ I
1685
+ 0
1686
+ I
1687
+ 48
1688
+ I
1689
+ 9
1690
+ x
1691
+ 93
1692
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1693
+ p
1694
+ 0
1695
+ x
1696
+ 4
1697
+ send
1698
+ p
1699
+ 23
1700
+ I
1701
+ -1
1702
+ I
1703
+ 3a
1704
+ I
1705
+ 0
1706
+ I
1707
+ 3b
1708
+ I
1709
+ 12
1710
+ I
1711
+ 3c
1712
+ I
1713
+ 36
1714
+ I
1715
+ 3e
1716
+ I
1717
+ 49
1718
+ I
1719
+ 3f
1720
+ I
1721
+ 64
1722
+ I
1723
+ 42
1724
+ I
1725
+ 6d
1726
+ I
1727
+ 43
1728
+ I
1729
+ 83
1730
+ I
1731
+ 42
1732
+ I
1733
+ 85
1734
+ I
1735
+ 45
1736
+ I
1737
+ 9e
1738
+ I
1739
+ 46
1740
+ I
1741
+ ca
1742
+ I
1743
+ 48
1744
+ I
1745
+ d7
1746
+ x
1747
+ 93
1748
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1749
+ p
1750
+ 5
1751
+ x
1752
+ 6
1753
+ symbol
1754
+ x
1755
+ 9
1756
+ attr_name
1757
+ x
1758
+ 6
1759
+ column
1760
+ x
1761
+ 9
1762
+ cast_code
1763
+ x
1764
+ 11
1765
+ access_code
1766
+ p
1767
+ 17
1768
+ I
1769
+ 2
1770
+ I
1771
+ 16
1772
+ I
1773
+ 10
1774
+ I
1775
+ 1c
1776
+ I
1777
+ 1e
1778
+ I
1779
+ 22
1780
+ I
1781
+ 2c
1782
+ I
1783
+ 26
1784
+ I
1785
+ 30
1786
+ I
1787
+ 27
1788
+ I
1789
+ 3e
1790
+ I
1791
+ 33
1792
+ I
1793
+ 42
1794
+ I
1795
+ 35
1796
+ I
1797
+ 50
1798
+ I
1799
+ 3a
1800
+ I
1801
+ 5e
1802
+ x
1803
+ 93
1804
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1805
+ p
1806
+ 0
1807
+ x
1808
+ 13
1809
+ attach_method
1810
+ x
1811
+ 14
1812
+ read_attribute
1813
+ M
1814
+ 1
1815
+ n
1816
+ n
1817
+ x
1818
+ 14
1819
+ read_attribute
1820
+ i
1821
+ 61
1822
+ 26
1823
+ 93
1824
+ 0
1825
+ 15
1826
+ 29
1827
+ 24
1828
+ 0
1829
+ 5
1830
+ 7
1831
+ 0
1832
+ 20
1833
+ 0
1834
+ 47
1835
+ 101
1836
+ 1
1837
+ 63
1838
+ 2
1839
+ 47
1840
+ 49
1841
+ 2
1842
+ 1
1843
+ 30
1844
+ 8
1845
+ 57
1846
+ 26
1847
+ 93
1848
+ 1
1849
+ 15
1850
+ 24
1851
+ 13
1852
+ 45
1853
+ 3
1854
+ 4
1855
+ 12
1856
+ 49
1857
+ 5
1858
+ 1
1859
+ 10
1860
+ 41
1861
+ 8
1862
+ 52
1863
+ 15
1864
+ 5
1865
+ 20
1866
+ 0
1867
+ 47
1868
+ 49
1869
+ 6
1870
+ 1
1871
+ 25
1872
+ 8
1873
+ 57
1874
+ 15
1875
+ 92
1876
+ 1
1877
+ 27
1878
+ 34
1879
+ 92
1880
+ 0
1881
+ 27
1882
+ 11
1883
+ I
1884
+ 6
1885
+ I
1886
+ 1
1887
+ I
1888
+ 1
1889
+ I
1890
+ 1
1891
+ n
1892
+ p
1893
+ 7
1894
+ s
1895
+ 1
1896
+ _
1897
+ x
1898
+ 4
1899
+ to_s
1900
+ x
1901
+ 4
1902
+ send
1903
+ x
1904
+ 13
1905
+ NoMethodError
1906
+ n
1907
+ x
1908
+ 3
1909
+ ===
1910
+ x
1911
+ 15
1912
+ _read_attribute
1913
+ p
1914
+ 9
1915
+ I
1916
+ -1
1917
+ I
1918
+ 4f
1919
+ I
1920
+ 0
1921
+ I
1922
+ 50
1923
+ I
1924
+ 1d
1925
+ I
1926
+ 51
1927
+ I
1928
+ 2a
1929
+ I
1930
+ 52
1931
+ I
1932
+ 3d
1933
+ x
1934
+ 93
1935
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
1936
+ p
1937
+ 1
1938
+ x
1939
+ 9
1940
+ attr_name
1941
+ x
1942
+ 17
1943
+ method_visibility
1944
+ x
1945
+ 15
1946
+ add_defn_method
1947
+ x
1948
+ 15
1949
+ _read_attribute
1950
+ M
1951
+ 1
1952
+ n
1953
+ n
1954
+ x
1955
+ 15
1956
+ _read_attribute
1957
+ i
1958
+ 93
1959
+ 20
1960
+ 0
1961
+ 49
1962
+ 0
1963
+ 0
1964
+ 19
1965
+ 0
1966
+ 15
1967
+ 20
1968
+ 0
1969
+ 7
1970
+ 1
1971
+ 64
1972
+ 83
1973
+ 2
1974
+ 9
1975
+ 28
1976
+ 5
1977
+ 49
1978
+ 3
1979
+ 0
1980
+ 49
1981
+ 4
1982
+ 0
1983
+ 19
1984
+ 0
1985
+ 8
1986
+ 29
1987
+ 1
1988
+ 15
1989
+ 39
1990
+ 5
1991
+ 20
1992
+ 0
1993
+ 49
1994
+ 6
1995
+ 1
1996
+ 19
1997
+ 1
1998
+ 15
1999
+ 20
2000
+ 1
2001
+ 49
2002
+ 7
2003
+ 0
2004
+ 9
2005
+ 50
2006
+ 1
2007
+ 8
2008
+ 92
2009
+ 5
2010
+ 20
2011
+ 0
2012
+ 47
2013
+ 49
2014
+ 8
2015
+ 1
2016
+ 19
2017
+ 2
2018
+ 9
2019
+ 90
2020
+ 5
2021
+ 20
2022
+ 0
2023
+ 20
2024
+ 2
2025
+ 47
2026
+ 49
2027
+ 9
2028
+ 2
2029
+ 9
2030
+ 81
2031
+ 5
2032
+ 20
2033
+ 0
2034
+ 47
2035
+ 49
2036
+ 10
2037
+ 1
2038
+ 8
2039
+ 88
2040
+ 20
2041
+ 2
2042
+ 20
2043
+ 1
2044
+ 49
2045
+ 11
2046
+ 1
2047
+ 8
2048
+ 92
2049
+ 20
2050
+ 1
2051
+ 11
2052
+ I
2053
+ 6
2054
+ I
2055
+ 3
2056
+ I
2057
+ 1
2058
+ I
2059
+ 1
2060
+ n
2061
+ p
2062
+ 12
2063
+ x
2064
+ 4
2065
+ to_s
2066
+ s
2067
+ 2
2068
+ id
2069
+ x
2070
+ 2
2071
+ ==
2072
+ x
2073
+ 5
2074
+ class
2075
+ x
2076
+ 11
2077
+ primary_key
2078
+ x
2079
+ 11
2080
+ @attributes
2081
+ x
2082
+ 2
2083
+ []
2084
+ x
2085
+ 4
2086
+ nil?
2087
+ x
2088
+ 20
2089
+ column_for_attribute
2090
+ x
2091
+ 25
2092
+ unserializable_attribute?
2093
+ x
2094
+ 21
2095
+ unserialize_attribute
2096
+ x
2097
+ 9
2098
+ type_cast
2099
+ p
2100
+ 21
2101
+ I
2102
+ -1
2103
+ I
2104
+ 55
2105
+ I
2106
+ 0
2107
+ I
2108
+ 56
2109
+ I
2110
+ 8
2111
+ I
2112
+ 57
2113
+ I
2114
+ 1e
2115
+ I
2116
+ 58
2117
+ I
2118
+ 28
2119
+ I
2120
+ 59
2121
+ I
2122
+ 32
2123
+ I
2124
+ 5a
2125
+ I
2126
+ 3d
2127
+ I
2128
+ 5b
2129
+ I
2130
+ 48
2131
+ I
2132
+ 5c
2133
+ I
2134
+ 51
2135
+ I
2136
+ 5e
2137
+ I
2138
+ 5a
2139
+ I
2140
+ 61
2141
+ I
2142
+ 5d
2143
+ x
2144
+ 93
2145
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2146
+ p
2147
+ 3
2148
+ x
2149
+ 9
2150
+ attr_name
2151
+ x
2152
+ 5
2153
+ value
2154
+ x
2155
+ 6
2156
+ column
2157
+ x
2158
+ 25
2159
+ unserializable_attribute?
2160
+ M
2161
+ 1
2162
+ n
2163
+ n
2164
+ x
2165
+ 25
2166
+ unserializable_attribute?
2167
+ i
2168
+ 22
2169
+ 20
2170
+ 1
2171
+ 49
2172
+ 0
2173
+ 0
2174
+ 13
2175
+ 9
2176
+ 21
2177
+ 15
2178
+ 5
2179
+ 49
2180
+ 1
2181
+ 0
2182
+ 49
2183
+ 2
2184
+ 0
2185
+ 20
2186
+ 0
2187
+ 49
2188
+ 3
2189
+ 1
2190
+ 11
2191
+ I
2192
+ 4
2193
+ I
2194
+ 2
2195
+ I
2196
+ 2
2197
+ I
2198
+ 2
2199
+ n
2200
+ p
2201
+ 4
2202
+ x
2203
+ 5
2204
+ text?
2205
+ x
2206
+ 5
2207
+ class
2208
+ x
2209
+ 21
2210
+ serialized_attributes
2211
+ x
2212
+ 2
2213
+ []
2214
+ p
2215
+ 5
2216
+ I
2217
+ -1
2218
+ I
2219
+ 67
2220
+ I
2221
+ 0
2222
+ I
2223
+ 68
2224
+ I
2225
+ 16
2226
+ x
2227
+ 93
2228
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2229
+ p
2230
+ 2
2231
+ x
2232
+ 9
2233
+ attr_name
2234
+ x
2235
+ 6
2236
+ column
2237
+ x
2238
+ 21
2239
+ unserialize_attribute
2240
+ M
2241
+ 1
2242
+ n
2243
+ n
2244
+ x
2245
+ 21
2246
+ unserialize_attribute
2247
+ i
2248
+ 115
2249
+ 5
2250
+ 39
2251
+ 0
2252
+ 20
2253
+ 0
2254
+ 49
2255
+ 1
2256
+ 1
2257
+ 47
2258
+ 49
2259
+ 2
2260
+ 1
2261
+ 19
2262
+ 1
2263
+ 15
2264
+ 20
2265
+ 1
2266
+ 5
2267
+ 49
2268
+ 3
2269
+ 0
2270
+ 49
2271
+ 4
2272
+ 0
2273
+ 20
2274
+ 0
2275
+ 49
2276
+ 1
2277
+ 1
2278
+ 49
2279
+ 5
2280
+ 1
2281
+ 13
2282
+ 10
2283
+ 41
2284
+ 15
2285
+ 20
2286
+ 1
2287
+ 49
2288
+ 6
2289
+ 0
2290
+ 9
2291
+ 69
2292
+ 39
2293
+ 0
2294
+ 49
2295
+ 7
2296
+ 0
2297
+ 9
2298
+ 54
2299
+ 20
2300
+ 1
2301
+ 8
2302
+ 67
2303
+ 39
2304
+ 0
2305
+ 20
2306
+ 0
2307
+ 20
2308
+ 1
2309
+ 13
2310
+ 18
2311
+ 3
2312
+ 49
2313
+ 8
2314
+ 2
2315
+ 15
2316
+ 8
2317
+ 114
2318
+ 5
2319
+ 45
2320
+ 9
2321
+ 10
2322
+ 20
2323
+ 0
2324
+ 47
2325
+ 101
2326
+ 11
2327
+ 7
2328
+ 12
2329
+ 5
2330
+ 49
2331
+ 3
2332
+ 0
2333
+ 49
2334
+ 4
2335
+ 0
2336
+ 20
2337
+ 0
2338
+ 49
2339
+ 1
2340
+ 1
2341
+ 47
2342
+ 101
2343
+ 11
2344
+ 7
2345
+ 13
2346
+ 20
2347
+ 1
2348
+ 49
2349
+ 3
2350
+ 0
2351
+ 49
2352
+ 11
2353
+ 0
2354
+ 47
2355
+ 101
2356
+ 11
2357
+ 63
2358
+ 5
2359
+ 47
2360
+ 49
2361
+ 14
2362
+ 2
2363
+ 11
2364
+ I
2365
+ 9
2366
+ I
2367
+ 2
2368
+ I
2369
+ 1
2370
+ I
2371
+ 1
2372
+ n
2373
+ p
2374
+ 15
2375
+ x
2376
+ 11
2377
+ @attributes
2378
+ x
2379
+ 2
2380
+ []
2381
+ x
2382
+ 16
2383
+ object_from_yaml
2384
+ x
2385
+ 5
2386
+ class
2387
+ x
2388
+ 21
2389
+ serialized_attributes
2390
+ x
2391
+ 5
2392
+ is_a?
2393
+ x
2394
+ 4
2395
+ nil?
2396
+ x
2397
+ 7
2398
+ frozen?
2399
+ x
2400
+ 3
2401
+ []=
2402
+ x
2403
+ 25
2404
+ SerializationTypeMismatch
2405
+ n
2406
+ x
2407
+ 4
2408
+ to_s
2409
+ s
2410
+ 22
2411
+ was supposed to be a
2412
+ s
2413
+ 12
2414
+ , but was a
2415
+ x
2416
+ 5
2417
+ raise
2418
+ p
2419
+ 15
2420
+ I
2421
+ -1
2422
+ I
2423
+ 6c
2424
+ I
2425
+ 0
2426
+ I
2427
+ 6d
2428
+ I
2429
+ f
2430
+ I
2431
+ 6f
2432
+ I
2433
+ 2b
2434
+ I
2435
+ 70
2436
+ I
2437
+ 45
2438
+ I
2439
+ 72
2440
+ I
2441
+ 49
2442
+ I
2443
+ 73
2444
+ I
2445
+ 6e
2446
+ I
2447
+ 72
2448
+ I
2449
+ 73
2450
+ x
2451
+ 93
2452
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2453
+ p
2454
+ 2
2455
+ x
2456
+ 9
2457
+ attr_name
2458
+ x
2459
+ 19
2460
+ unserialized_object
2461
+ x
2462
+ 7
2463
+ private
2464
+ x
2465
+ 9
2466
+ attribute
2467
+ M
2468
+ 1
2469
+ n
2470
+ n
2471
+ x
2472
+ 9
2473
+ attribute
2474
+ i
2475
+ 8
2476
+ 5
2477
+ 20
2478
+ 0
2479
+ 47
2480
+ 49
2481
+ 0
2482
+ 1
2483
+ 11
2484
+ I
2485
+ 3
2486
+ I
2487
+ 1
2488
+ I
2489
+ 1
2490
+ I
2491
+ 1
2492
+ n
2493
+ p
2494
+ 1
2495
+ x
2496
+ 14
2497
+ read_attribute
2498
+ p
2499
+ 5
2500
+ I
2501
+ -1
2502
+ I
2503
+ 78
2504
+ I
2505
+ 0
2506
+ I
2507
+ 79
2508
+ I
2509
+ 8
2510
+ x
2511
+ 93
2512
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2513
+ p
2514
+ 1
2515
+ x
2516
+ 14
2517
+ attribute_name
2518
+ p
2519
+ 21
2520
+ I
2521
+ 2
2522
+ I
2523
+ 4
2524
+ I
2525
+ d
2526
+ I
2527
+ 6
2528
+ I
2529
+ 1e
2530
+ I
2531
+ 8
2532
+ I
2533
+ 26
2534
+ I
2535
+ 12
2536
+ I
2537
+ 40
2538
+ I
2539
+ 4f
2540
+ I
2541
+ 4e
2542
+ I
2543
+ 55
2544
+ I
2545
+ 5c
2546
+ I
2547
+ 67
2548
+ I
2549
+ 6a
2550
+ I
2551
+ 6c
2552
+ I
2553
+ 78
2554
+ I
2555
+ 77
2556
+ I
2557
+ 7c
2558
+ I
2559
+ 78
2560
+ I
2561
+ 8a
2562
+ x
2563
+ 93
2564
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2565
+ p
2566
+ 0
2567
+ x
2568
+ 13
2569
+ attach_method
2570
+ p
2571
+ 3
2572
+ I
2573
+ 2
2574
+ I
2575
+ 3
2576
+ I
2577
+ 1c
2578
+ x
2579
+ 93
2580
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2581
+ p
2582
+ 0
2583
+ x
2584
+ 13
2585
+ attach_method
2586
+ p
2587
+ 3
2588
+ I
2589
+ 2
2590
+ I
2591
+ 2
2592
+ I
2593
+ 1c
2594
+ x
2595
+ 93
2596
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2597
+ p
2598
+ 0
2599
+ x
2600
+ 13
2601
+ attach_method
2602
+ p
2603
+ 3
2604
+ I
2605
+ 0
2606
+ I
2607
+ 1
2608
+ I
2609
+ 1c
2610
+ x
2611
+ 93
2612
+ /Users/santiago/WyeWorks/Projs/rails/activerecord/lib/active_record/attribute_methods/read.rb
2613
+ p
2614
+ 0