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