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