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