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