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