compass 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/Rakefile +1 -15
  2. data/VERSION.yml +1 -1
  3. data/features/command_line.feature +2 -0
  4. data/features/extensions.feature +2 -1
  5. data/features/step_definitions/command_line_steps.rb +7 -1
  6. data/frameworks/compass/stylesheets/compass/_support.scss +6 -8
  7. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -0
  8. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +4 -3
  9. data/lib/compass.rb +7 -1
  10. data/lib/compass.rbc +714 -0
  11. data/lib/compass/actions.rbc +2334 -0
  12. data/lib/compass/app_integration.rbc +828 -0
  13. data/lib/compass/app_integration/merb.rbc +102 -0
  14. data/lib/compass/app_integration/rails.rbc +1580 -0
  15. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1673 -0
  16. data/lib/compass/app_integration/rails/installer.rbc +3593 -0
  17. data/lib/compass/app_integration/stand_alone.rbc +589 -0
  18. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +721 -0
  19. data/lib/compass/app_integration/stand_alone/installer.rbc +1467 -0
  20. data/lib/compass/browser_support.rbc +1132 -0
  21. data/lib/compass/compiler.rbc +4628 -0
  22. data/lib/compass/configuration.rbc +1342 -0
  23. data/lib/compass/configuration/adapters.rbc +2030 -0
  24. data/lib/compass/configuration/comments.rbc +762 -0
  25. data/lib/compass/configuration/data.rbc +2643 -0
  26. data/lib/compass/configuration/defaults.rbc +3042 -0
  27. data/lib/compass/configuration/file_data.rbc +731 -0
  28. data/lib/compass/configuration/helpers.rbc +3220 -0
  29. data/lib/compass/configuration/inheritance.rbc +3345 -0
  30. data/lib/compass/configuration/paths.rbc +412 -0
  31. data/lib/compass/configuration/serialization.rbc +1929 -0
  32. data/lib/compass/dependencies.rbc +220 -0
  33. data/lib/compass/errors.rbc +176 -0
  34. data/lib/compass/frameworks.rbc +3588 -0
  35. data/lib/compass/quick_cache.rbc +320 -0
  36. data/lib/compass/sass_extensions.rb +4 -0
  37. data/lib/compass/sass_extensions.rbc +111 -0
  38. data/lib/compass/sass_extensions/functions.rbc +775 -0
  39. data/lib/compass/sass_extensions/functions/colors.rbc +1275 -0
  40. data/lib/compass/sass_extensions/functions/constants.rbc +1901 -0
  41. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +1954 -0
  42. data/lib/compass/sass_extensions/functions/display.rbc +993 -0
  43. data/lib/compass/sass_extensions/functions/enumerate.rbc +446 -0
  44. data/lib/compass/sass_extensions/functions/font_files.rbc +404 -0
  45. data/lib/compass/sass_extensions/functions/gradient_support.rb +3 -1
  46. data/lib/compass/sass_extensions/functions/gradient_support.rbc +13899 -0
  47. data/lib/compass/sass_extensions/functions/image_size.rbc +2837 -0
  48. data/lib/compass/sass_extensions/functions/inline_image.rbc +1624 -0
  49. data/lib/compass/sass_extensions/functions/lists.rbc +2565 -0
  50. data/lib/compass/sass_extensions/functions/selectors.rbc +1584 -0
  51. data/lib/compass/sass_extensions/functions/sprites.rb +13 -1
  52. data/lib/compass/sass_extensions/functions/sprites.rbc +3491 -0
  53. data/lib/compass/sass_extensions/functions/trig.rbc +809 -0
  54. data/lib/compass/sass_extensions/functions/urls.rbc +3141 -0
  55. data/lib/compass/sass_extensions/monkey_patches.rbc +134 -0
  56. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +2153 -0
  57. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +640 -0
  58. data/lib/compass/sass_extensions/sprites.rbc +299 -0
  59. data/lib/compass/sass_extensions/sprites/base.rb +20 -7
  60. data/lib/compass/sass_extensions/sprites/base.rbc +4529 -0
  61. data/lib/compass/sass_extensions/sprites/engines.rbc +53 -0
  62. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +908 -0
  63. data/lib/compass/sass_extensions/sprites/image.rbc +2583 -0
  64. data/lib/compass/sass_extensions/sprites/sprite_map.rb +15 -3
  65. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +2615 -0
  66. data/lib/compass/sass_extensions/sprites/sprites.rb +3 -3
  67. data/lib/compass/sass_extensions/sprites/sprites.rbc +1573 -0
  68. data/lib/compass/util.rbc +544 -0
  69. data/lib/compass/version.rb +3 -3
  70. data/lib/compass/version.rbc +1259 -0
  71. data/test/fixtures/sprites/public/images/colors/blue.png +0 -0
  72. data/test/fixtures/sprites/public/images/colors/yellow.png +0 -0
  73. data/test/fixtures/sprites/public/images/ko/default_background.png +0 -0
  74. data/test/fixtures/sprites/public/images/ko/starbg26x27.png +0 -0
  75. data/test/fixtures/sprites/public/images/nested/squares/ten-by-ten.png +0 -0
  76. data/test/fixtures/sprites/public/images/prefix/20-by-20.png +0 -0
  77. data/test/fixtures/sprites/public/images/prefix/ten-by-ten.png +0 -0
  78. data/test/fixtures/sprites/public/images/selectors/ten-by-ten.png +0 -0
  79. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_active.png +0 -0
  80. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_hover.png +0 -0
  81. data/test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png +0 -0
  82. data/test/fixtures/sprites/public/images/squares/ten-by-ten.png +0 -0
  83. data/test/fixtures/sprites/public/images/squares/twenty-by-twenty.png +0 -0
  84. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -0
  85. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -0
  86. data/test/fixtures/stylesheets/compass/css/gradients.css +57 -0
  87. data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -0
  88. data/test/fixtures/stylesheets/compass/css/pie.css +1 -0
  89. data/test/fixtures/stylesheets/relative/config.rb +1 -0
  90. data/test/{command_line_helper.rb → helpers/command_line.rb} +0 -0
  91. data/test/helpers/diff.rb +49 -0
  92. data/test/{io_helper.rb → helpers/io.rb} +0 -0
  93. data/test/{rails_helper.rb → helpers/rails.rb} +0 -0
  94. data/test/helpers/test_case.rb +55 -0
  95. data/test/{compass_test.rb → integrations/compass_test.rb} +8 -8
  96. data/test/{rails_integration_test.rb → integrations/rails_integration_test.rb} +2 -1
  97. data/test/integrations/sprites_test.rb +607 -0
  98. data/test/{test_rails_helper.rb → integrations/test_rails_helper.rb} +0 -0
  99. data/test/test_helper.rb +13 -4
  100. data/test/{command_line_test.rb → units/command_line_test.rb} +0 -0
  101. data/test/{compass_png_test.rb → units/compass_png_test.rb} +1 -1
  102. data/test/{configuration_test.rb → units/configuration_test.rb} +37 -12
  103. data/test/{sass_extensions_test.rb → units/sass_extensions_test.rb} +0 -0
  104. data/test/units/sprites/base_test.rb +90 -0
  105. data/test/units/sprites/image_test.rb +97 -0
  106. metadata +114 -26
  107. data/test/test_case_helper.rb +0 -13
@@ -0,0 +1,1132 @@
1
+ !RBIX
2
+ 333337424968067900
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
+ 7
54
+ Compass
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
+ 7
67
+ Compass
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
+ 14
111
+ BrowserSupport
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
+ 14
124
+ BrowserSupport
125
+ i
126
+ 129
127
+ 5
128
+ 66
129
+ 5
130
+ 5
131
+ 47
132
+ 49
133
+ 0
134
+ 1
135
+ 15
136
+ 65
137
+ 7
138
+ 1
139
+ 7
140
+ 2
141
+ 64
142
+ 7
143
+ 3
144
+ 64
145
+ 7
146
+ 4
147
+ 64
148
+ 7
149
+ 5
150
+ 64
151
+ 7
152
+ 6
153
+ 64
154
+ 7
155
+ 7
156
+ 64
157
+ 7
158
+ 8
159
+ 64
160
+ 35
161
+ 7
162
+ 49
163
+ 9
164
+ 2
165
+ 15
166
+ 65
167
+ 7
168
+ 10
169
+ 44
170
+ 43
171
+ 11
172
+ 80
173
+ 49
174
+ 12
175
+ 1
176
+ 13
177
+ 7
178
+ 13
179
+ 64
180
+ 35
181
+ 0
182
+ 49
183
+ 14
184
+ 2
185
+ 15
186
+ 13
187
+ 7
188
+ 15
189
+ 64
190
+ 35
191
+ 0
192
+ 49
193
+ 14
194
+ 2
195
+ 15
196
+ 49
197
+ 9
198
+ 2
199
+ 15
200
+ 99
201
+ 7
202
+ 16
203
+ 7
204
+ 17
205
+ 65
206
+ 67
207
+ 49
208
+ 18
209
+ 0
210
+ 49
211
+ 19
212
+ 4
213
+ 15
214
+ 99
215
+ 7
216
+ 20
217
+ 7
218
+ 21
219
+ 65
220
+ 67
221
+ 49
222
+ 18
223
+ 0
224
+ 49
225
+ 19
226
+ 4
227
+ 15
228
+ 99
229
+ 7
230
+ 22
231
+ 7
232
+ 23
233
+ 65
234
+ 67
235
+ 49
236
+ 18
237
+ 0
238
+ 49
239
+ 19
240
+ 4
241
+ 15
242
+ 99
243
+ 7
244
+ 24
245
+ 7
246
+ 25
247
+ 65
248
+ 67
249
+ 49
250
+ 18
251
+ 0
252
+ 49
253
+ 19
254
+ 4
255
+ 11
256
+ I
257
+ 9
258
+ I
259
+ 0
260
+ I
261
+ 0
262
+ I
263
+ 0
264
+ n
265
+ p
266
+ 26
267
+ x
268
+ 6
269
+ extend
270
+ x
271
+ 7
272
+ ASPECTS
273
+ s
274
+ 6
275
+ webkit
276
+ s
277
+ 3
278
+ moz
279
+ s
280
+ 1
281
+ o
282
+ s
283
+ 2
284
+ ms
285
+ s
286
+ 3
287
+ svg
288
+ s
289
+ 3
290
+ pie
291
+ s
292
+ 4
293
+ css2
294
+ x
295
+ 9
296
+ const_set
297
+ x
298
+ 16
299
+ SIMPLE_FUNCTIONS
300
+ x
301
+ 4
302
+ Hash
303
+ x
304
+ 16
305
+ new_from_literal
306
+ s
307
+ 5
308
+ image
309
+ x
310
+ 3
311
+ []=
312
+ s
313
+ 10
314
+ cross-fade
315
+ x
316
+ 11
317
+ add_support
318
+ M
319
+ 1
320
+ n
321
+ n
322
+ x
323
+ 11
324
+ add_support
325
+ i
326
+ 8
327
+ 20
328
+ 1
329
+ 56
330
+ 0
331
+ 50
332
+ 1
333
+ 0
334
+ 11
335
+ I
336
+ 4
337
+ I
338
+ 2
339
+ I
340
+ 1
341
+ I
342
+ 1
343
+ I
344
+ 1
345
+ p
346
+ 2
347
+ M
348
+ 1
349
+ p
350
+ 2
351
+ x
352
+ 9
353
+ for_block
354
+ t
355
+ n
356
+ x
357
+ 11
358
+ add_support
359
+ i
360
+ 108
361
+ 57
362
+ 19
363
+ 0
364
+ 15
365
+ 45
366
+ 0
367
+ 1
368
+ 20
369
+ 0
370
+ 49
371
+ 2
372
+ 1
373
+ 9
374
+ 17
375
+ 1
376
+ 8
377
+ 37
378
+ 45
379
+ 3
380
+ 4
381
+ 43
382
+ 5
383
+ 7
384
+ 6
385
+ 20
386
+ 0
387
+ 47
388
+ 101
389
+ 7
390
+ 63
391
+ 2
392
+ 49
393
+ 8
394
+ 1
395
+ 15
396
+ 1
397
+ 11
398
+ 15
399
+ 5
400
+ 21
401
+ 1
402
+ 0
403
+ 20
404
+ 0
405
+ 47
406
+ 49
407
+ 9
408
+ 2
409
+ 9
410
+ 53
411
+ 1
412
+ 8
413
+ 107
414
+ 45
415
+ 10
416
+ 11
417
+ 21
418
+ 1
419
+ 0
420
+ 49
421
+ 7
422
+ 0
423
+ 14
424
+ 2
425
+ 49
426
+ 12
427
+ 1
428
+ 13
429
+ 10
430
+ 82
431
+ 15
432
+ 35
433
+ 0
434
+ 13
435
+ 18
436
+ 3
437
+ 49
438
+ 13
439
+ 2
440
+ 15
441
+ 8
442
+ 86
443
+ 18
444
+ 2
445
+ 16
446
+ 2
447
+ 15
448
+ 45
449
+ 10
450
+ 14
451
+ 21
452
+ 1
453
+ 0
454
+ 49
455
+ 7
456
+ 0
457
+ 49
458
+ 12
459
+ 1
460
+ 20
461
+ 0
462
+ 49
463
+ 7
464
+ 0
465
+ 49
466
+ 15
467
+ 1
468
+ 11
469
+ I
470
+ 6
471
+ I
472
+ 1
473
+ I
474
+ 1
475
+ I
476
+ 1
477
+ n
478
+ p
479
+ 16
480
+ x
481
+ 7
482
+ ASPECTS
483
+ n
484
+ x
485
+ 8
486
+ include?
487
+ x
488
+ 7
489
+ Compass
490
+ n
491
+ x
492
+ 4
493
+ Util
494
+ s
495
+ 24
496
+ Unknown support aspect:
497
+ x
498
+ 4
499
+ to_s
500
+ x
501
+ 12
502
+ compass_warn
503
+ x
504
+ 9
505
+ supports?
506
+ x
507
+ 16
508
+ SIMPLE_FUNCTIONS
509
+ n
510
+ x
511
+ 2
512
+ []
513
+ x
514
+ 3
515
+ []=
516
+ n
517
+ x
518
+ 2
519
+ <<
520
+ p
521
+ 15
522
+ I
523
+ 0
524
+ I
525
+ 16
526
+ I
527
+ 4
528
+ I
529
+ 17
530
+ I
531
+ 11
532
+ I
533
+ 18
534
+ I
535
+ 23
536
+ I
537
+ 19
538
+ I
539
+ 26
540
+ I
541
+ 1b
542
+ I
543
+ 35
544
+ I
545
+ 1c
546
+ I
547
+ 57
548
+ I
549
+ 1d
550
+ I
551
+ 6c
552
+ x
553
+ 60
554
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
555
+ p
556
+ 1
557
+ x
558
+ 6
559
+ aspect
560
+ x
561
+ 4
562
+ each
563
+ p
564
+ 5
565
+ I
566
+ -1
567
+ I
568
+ 15
569
+ I
570
+ 0
571
+ I
572
+ 16
573
+ I
574
+ 8
575
+ x
576
+ 60
577
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
578
+ p
579
+ 2
580
+ x
581
+ 8
582
+ function
583
+ x
584
+ 7
585
+ aspects
586
+ x
587
+ 17
588
+ method_visibility
589
+ x
590
+ 15
591
+ add_defn_method
592
+ x
593
+ 14
594
+ remove_support
595
+ M
596
+ 1
597
+ n
598
+ n
599
+ x
600
+ 14
601
+ remove_support
602
+ i
603
+ 8
604
+ 20
605
+ 1
606
+ 56
607
+ 0
608
+ 50
609
+ 1
610
+ 0
611
+ 11
612
+ I
613
+ 4
614
+ I
615
+ 2
616
+ I
617
+ 1
618
+ I
619
+ 1
620
+ I
621
+ 1
622
+ p
623
+ 2
624
+ M
625
+ 1
626
+ p
627
+ 2
628
+ x
629
+ 9
630
+ for_block
631
+ t
632
+ n
633
+ x
634
+ 14
635
+ remove_support
636
+ i
637
+ 56
638
+ 57
639
+ 19
640
+ 0
641
+ 15
642
+ 45
643
+ 0
644
+ 1
645
+ 20
646
+ 0
647
+ 49
648
+ 2
649
+ 1
650
+ 9
651
+ 17
652
+ 1
653
+ 8
654
+ 37
655
+ 45
656
+ 3
657
+ 4
658
+ 43
659
+ 5
660
+ 7
661
+ 6
662
+ 20
663
+ 0
664
+ 47
665
+ 101
666
+ 7
667
+ 63
668
+ 2
669
+ 49
670
+ 8
671
+ 1
672
+ 15
673
+ 1
674
+ 11
675
+ 15
676
+ 45
677
+ 9
678
+ 10
679
+ 21
680
+ 1
681
+ 0
682
+ 49
683
+ 7
684
+ 0
685
+ 49
686
+ 11
687
+ 1
688
+ 56
689
+ 12
690
+ 50
691
+ 13
692
+ 0
693
+ 11
694
+ I
695
+ 5
696
+ I
697
+ 1
698
+ I
699
+ 1
700
+ I
701
+ 1
702
+ n
703
+ p
704
+ 14
705
+ x
706
+ 7
707
+ ASPECTS
708
+ n
709
+ x
710
+ 8
711
+ include?
712
+ x
713
+ 7
714
+ Compass
715
+ n
716
+ x
717
+ 4
718
+ Util
719
+ s
720
+ 24
721
+ Unknown support aspect:
722
+ x
723
+ 4
724
+ to_s
725
+ x
726
+ 12
727
+ compass_warn
728
+ x
729
+ 16
730
+ SIMPLE_FUNCTIONS
731
+ n
732
+ x
733
+ 2
734
+ []
735
+ M
736
+ 1
737
+ p
738
+ 2
739
+ x
740
+ 9
741
+ for_block
742
+ t
743
+ n
744
+ x
745
+ 14
746
+ remove_support
747
+ i
748
+ 15
749
+ 57
750
+ 19
751
+ 0
752
+ 15
753
+ 20
754
+ 0
755
+ 21
756
+ 1
757
+ 0
758
+ 49
759
+ 0
760
+ 0
761
+ 83
762
+ 1
763
+ 11
764
+ I
765
+ 4
766
+ I
767
+ 1
768
+ I
769
+ 1
770
+ I
771
+ 1
772
+ n
773
+ p
774
+ 2
775
+ x
776
+ 4
777
+ to_s
778
+ x
779
+ 2
780
+ ==
781
+ p
782
+ 3
783
+ I
784
+ 0
785
+ I
786
+ 31
787
+ I
788
+ f
789
+ x
790
+ 60
791
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
792
+ p
793
+ 1
794
+ x
795
+ 1
796
+ a
797
+ x
798
+ 7
799
+ reject!
800
+ p
801
+ 11
802
+ I
803
+ 0
804
+ I
805
+ 2c
806
+ I
807
+ 4
808
+ I
809
+ 2d
810
+ I
811
+ 11
812
+ I
813
+ 2e
814
+ I
815
+ 23
816
+ I
817
+ 2f
818
+ I
819
+ 26
820
+ I
821
+ 31
822
+ I
823
+ 38
824
+ x
825
+ 60
826
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
827
+ p
828
+ 1
829
+ x
830
+ 6
831
+ aspect
832
+ x
833
+ 4
834
+ each
835
+ p
836
+ 5
837
+ I
838
+ -1
839
+ I
840
+ 2b
841
+ I
842
+ 0
843
+ I
844
+ 2c
845
+ I
846
+ 8
847
+ x
848
+ 60
849
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
850
+ p
851
+ 2
852
+ x
853
+ 8
854
+ function
855
+ x
856
+ 7
857
+ aspects
858
+ x
859
+ 9
860
+ supports?
861
+ M
862
+ 1
863
+ n
864
+ n
865
+ x
866
+ 9
867
+ supports?
868
+ i
869
+ 35
870
+ 45
871
+ 0
872
+ 1
873
+ 20
874
+ 0
875
+ 49
876
+ 2
877
+ 0
878
+ 49
879
+ 3
880
+ 1
881
+ 13
882
+ 9
883
+ 34
884
+ 15
885
+ 45
886
+ 0
887
+ 4
888
+ 20
889
+ 0
890
+ 49
891
+ 2
892
+ 0
893
+ 49
894
+ 5
895
+ 1
896
+ 20
897
+ 1
898
+ 49
899
+ 2
900
+ 0
901
+ 49
902
+ 6
903
+ 1
904
+ 11
905
+ I
906
+ 4
907
+ I
908
+ 2
909
+ I
910
+ 2
911
+ I
912
+ 2
913
+ n
914
+ p
915
+ 7
916
+ x
917
+ 16
918
+ SIMPLE_FUNCTIONS
919
+ n
920
+ x
921
+ 4
922
+ to_s
923
+ x
924
+ 8
925
+ has_key?
926
+ n
927
+ x
928
+ 2
929
+ []
930
+ x
931
+ 8
932
+ include?
933
+ p
934
+ 5
935
+ I
936
+ -1
937
+ I
938
+ 35
939
+ I
940
+ 0
941
+ I
942
+ 36
943
+ I
944
+ 23
945
+ x
946
+ 60
947
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
948
+ p
949
+ 2
950
+ x
951
+ 8
952
+ function
953
+ x
954
+ 6
955
+ aspect
956
+ x
957
+ 11
958
+ has_aspect?
959
+ M
960
+ 1
961
+ n
962
+ n
963
+ x
964
+ 11
965
+ has_aspect?
966
+ i
967
+ 33
968
+ 45
969
+ 0
970
+ 1
971
+ 20
972
+ 0
973
+ 49
974
+ 2
975
+ 0
976
+ 49
977
+ 3
978
+ 1
979
+ 13
980
+ 9
981
+ 32
982
+ 15
983
+ 45
984
+ 0
985
+ 4
986
+ 20
987
+ 0
988
+ 49
989
+ 2
990
+ 0
991
+ 49
992
+ 5
993
+ 1
994
+ 49
995
+ 6
996
+ 0
997
+ 78
998
+ 85
999
+ 7
1000
+ 11
1001
+ I
1002
+ 3
1003
+ I
1004
+ 1
1005
+ I
1006
+ 1
1007
+ I
1008
+ 1
1009
+ n
1010
+ p
1011
+ 8
1012
+ x
1013
+ 16
1014
+ SIMPLE_FUNCTIONS
1015
+ n
1016
+ x
1017
+ 4
1018
+ to_s
1019
+ x
1020
+ 8
1021
+ has_key?
1022
+ n
1023
+ x
1024
+ 2
1025
+ []
1026
+ x
1027
+ 4
1028
+ size
1029
+ x
1030
+ 1
1031
+ >
1032
+ p
1033
+ 5
1034
+ I
1035
+ -1
1036
+ I
1037
+ 39
1038
+ I
1039
+ 0
1040
+ I
1041
+ 3a
1042
+ I
1043
+ 21
1044
+ x
1045
+ 60
1046
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1047
+ p
1048
+ 1
1049
+ x
1050
+ 8
1051
+ function
1052
+ p
1053
+ 21
1054
+ I
1055
+ 2
1056
+ I
1057
+ 3
1058
+ I
1059
+ 9
1060
+ I
1061
+ 5
1062
+ I
1063
+ 27
1064
+ I
1065
+ 7
1066
+ I
1067
+ 2a
1068
+ I
1069
+ a
1070
+ I
1071
+ 32
1072
+ I
1073
+ 8
1074
+ I
1075
+ 3c
1076
+ I
1077
+ 9
1078
+ I
1079
+ 49
1080
+ I
1081
+ 15
1082
+ I
1083
+ 57
1084
+ I
1085
+ 2b
1086
+ I
1087
+ 65
1088
+ I
1089
+ 35
1090
+ I
1091
+ 73
1092
+ I
1093
+ 39
1094
+ I
1095
+ 81
1096
+ x
1097
+ 60
1098
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1099
+ p
1100
+ 0
1101
+ x
1102
+ 13
1103
+ attach_method
1104
+ p
1105
+ 3
1106
+ I
1107
+ 2
1108
+ I
1109
+ 2
1110
+ I
1111
+ 1c
1112
+ x
1113
+ 60
1114
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1115
+ p
1116
+ 0
1117
+ x
1118
+ 13
1119
+ attach_method
1120
+ p
1121
+ 3
1122
+ I
1123
+ 0
1124
+ I
1125
+ 1
1126
+ I
1127
+ 1c
1128
+ x
1129
+ 60
1130
+ /Users/chris/Projects/compass/lib/compass/browser_support.rb
1131
+ p
1132
+ 0