activerecord 3.0.6 → 3.0.7.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

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