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