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