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