compass 0.12.alpha.0 → 0.12.alpha.1

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.
Files changed (206) hide show
  1. data/Rakefile +1 -0
  2. data/VERSION.yml +1 -1
  3. data/bin/compass +1 -1
  4. data/bin/compass.compiled.rbc +707 -0
  5. data/examples/downloader.rb +3 -2
  6. data/examples/ninesixty/bootstrap.rb +1 -1
  7. data/features/command_line.feature +17 -17
  8. data/features/extensions.feature +6 -0
  9. data/features/step_definitions/command_line_steps.rb +2 -0
  10. data/frameworks/compass/stylesheets/compass/_support.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +7 -24
  12. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +0 -15
  13. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +12 -12
  14. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +6 -20
  15. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +38 -24
  16. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  17. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  18. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  19. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  20. data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +29 -6
  21. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  22. data/lib/compass.rbc +42 -36
  23. data/lib/compass/actions.rb +0 -1
  24. data/lib/compass/actions.rbc +244 -85
  25. data/lib/compass/app_integration.rbc +28 -20
  26. data/lib/compass/app_integration/merb.rbc +8 -4
  27. data/lib/compass/app_integration/rails.rbc +664 -148
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +23 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +8 -10
  30. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  31. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  32. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  33. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  34. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  35. data/lib/compass/browser_support.rbc +35 -23
  36. data/lib/compass/commands.rbc +307 -0
  37. data/lib/compass/commands/base.rbc +1044 -0
  38. data/lib/compass/commands/clean_project.rbc +1856 -0
  39. data/lib/compass/commands/create_project.rbc +2691 -0
  40. data/lib/compass/commands/default.rbc +1677 -0
  41. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  42. data/lib/compass/commands/help.rbc +1921 -0
  43. data/lib/compass/commands/imports.rbc +969 -0
  44. data/lib/compass/commands/installer_command.rbc +807 -0
  45. data/lib/compass/commands/interactive.rbc +1341 -0
  46. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  47. data/lib/compass/commands/print_version.rbc +2478 -0
  48. data/lib/compass/commands/project_base.rbc +2085 -0
  49. data/lib/compass/commands/project_stats.rb +7 -7
  50. data/lib/compass/commands/project_stats.rbc +4202 -0
  51. data/lib/compass/commands/registry.rbc +1350 -0
  52. data/lib/compass/commands/sprite.rbc +2212 -0
  53. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  54. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  55. data/lib/compass/commands/update_project.rbc +3002 -0
  56. data/lib/compass/commands/validate_project.rbc +1686 -0
  57. data/lib/compass/commands/watch_project.rbc +4155 -0
  58. data/lib/compass/commands/write_configuration.rbc +2896 -0
  59. data/lib/compass/compiler.rb +3 -0
  60. data/lib/compass/compiler.rbc +591 -398
  61. data/lib/compass/configuration.rbc +134 -78
  62. data/lib/compass/configuration/adapters.rbc +98 -40
  63. data/lib/compass/configuration/comments.rbc +132 -51
  64. data/lib/compass/configuration/data.rb +6 -0
  65. data/lib/compass/configuration/data.rbc +541 -551
  66. data/lib/compass/configuration/defaults.rbc +764 -189
  67. data/lib/compass/configuration/file_data.rbc +37 -125
  68. data/lib/compass/configuration/helpers.rb +1 -0
  69. data/lib/compass/configuration/helpers.rbc +433 -153
  70. data/lib/compass/configuration/inheritance.rb +2 -0
  71. data/lib/compass/configuration/inheritance.rbc +412 -165
  72. data/lib/compass/configuration/paths.rbc +9 -9
  73. data/lib/compass/configuration/serialization.rbc +151 -84
  74. data/lib/compass/dependencies.rbc +16 -4
  75. data/lib/compass/errors.rbc +5 -5
  76. data/lib/compass/exec.rbc +500 -0
  77. data/lib/compass/exec/command_option_parser.rbc +676 -0
  78. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  79. data/lib/compass/exec/helpers.rbc +758 -0
  80. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  81. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  82. data/lib/compass/frameworks.rb +10 -4
  83. data/lib/compass/frameworks.rbc +118 -66
  84. data/lib/compass/grid_builder.rbc +0 -0
  85. data/lib/compass/installers.rbc +152 -0
  86. data/lib/compass/installers/bare_installer.rbc +939 -0
  87. data/lib/compass/installers/base.rbc +4427 -0
  88. data/lib/compass/installers/manifest.rbc +3335 -0
  89. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  90. data/lib/compass/installers/template_context.rbc +1030 -0
  91. data/lib/compass/logger.rbc +2317 -0
  92. data/lib/compass/quick_cache.rbc +12 -8
  93. data/lib/compass/sass_extensions.rbc +8 -4
  94. data/lib/compass/sass_extensions/functions.rb +4 -2
  95. data/lib/compass/sass_extensions/functions.rbc +90 -57
  96. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  97. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  98. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  99. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  100. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  101. data/lib/compass/sass_extensions/functions/env.rb +5 -0
  102. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  103. data/lib/compass/sass_extensions/functions/font_files.rb +32 -3
  104. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  105. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  106. data/lib/compass/sass_extensions/functions/image_size.rb +19 -16
  107. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  108. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -1
  109. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  110. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  111. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  112. data/lib/compass/sass_extensions/functions/sprites.rb +27 -4
  113. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  114. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  115. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  116. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  117. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  118. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  119. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  120. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  121. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  122. data/lib/compass/sass_extensions/sprites/image.rb +5 -5
  123. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  124. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  125. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  126. data/lib/compass/sass_extensions/sprites/layout_methods.rb +12 -8
  127. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  128. data/lib/compass/sass_extensions/sprites/row_fitter.rb +7 -1
  129. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  130. data/lib/compass/sass_extensions/sprites/sprite_map.rb +1 -1
  131. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  132. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +24 -4
  133. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  134. data/lib/compass/sprite_importer.rb +15 -80
  135. data/lib/compass/sprite_importer.rbc +1125 -1495
  136. data/lib/compass/sprite_importer/binding.rb +11 -0
  137. data/lib/compass/sprite_importer/content.erb +81 -0
  138. data/lib/compass/util.rbc +19 -11
  139. data/lib/compass/version.rbc +53 -25
  140. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  141. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  142. data/test/fixtures/fonts/bgrove.base64.txt +1 -0
  143. data/test/fixtures/fonts/bgrove.ttf +0 -0
  144. data/test/fixtures/sprites/public/images/bool/false.png +0 -0
  145. data/test/fixtures/sprites/public/images/bool/true.png +0 -0
  146. data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -2
  147. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -2
  148. data/test/fixtures/stylesheets/compass/css/border_radius.css +6 -9
  149. data/test/fixtures/stylesheets/compass/css/box.css +0 -19
  150. data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -6
  151. data/test/fixtures/stylesheets/compass/css/columns.css +8 -16
  152. data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -8
  153. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  154. data/test/fixtures/stylesheets/compass/css/pie.css +2 -3
  155. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  156. data/test/fixtures/stylesheets/compass/css/sprites.css +1 -1
  157. data/test/fixtures/stylesheets/compass/css/text_shadow.css +0 -3
  158. data/test/fixtures/stylesheets/compass/css/transform.css +28 -92
  159. data/test/fixtures/stylesheets/compass/css/transition.css +11 -0
  160. data/test/fixtures/stylesheets/compass/css/user-interface.css +4 -0
  161. data/test/fixtures/stylesheets/compass/images/{flag-s8c3c755a68.png → flag-s8f1e8fdb9b.png} +0 -0
  162. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +0 -1
  163. data/test/fixtures/stylesheets/compass/sass/transition.scss +4 -0
  164. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  165. data/test/fixtures/stylesheets/envtest/config.rb +9 -0
  166. data/test/fixtures/stylesheets/envtest/css/env.css +2 -0
  167. data/test/fixtures/stylesheets/envtest/sass/env.scss +3 -0
  168. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  169. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  170. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  171. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  172. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  173. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  174. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  175. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  176. data/test/helpers/command_line.rbc +2820 -0
  177. data/test/helpers/diff.rbc +1104 -0
  178. data/test/helpers/io.rbc +962 -0
  179. data/test/helpers/rails.rbc +1116 -0
  180. data/test/helpers/test_case.rbc +1255 -0
  181. data/test/integrations/compass_test.rb +24 -2
  182. data/test/integrations/compass_test.rbc +6589 -0
  183. data/test/integrations/rails_integration_test.rbc +1342 -0
  184. data/test/integrations/sprites_test.rb +123 -25
  185. data/test/integrations/sprites_test.rbc +6192 -0
  186. data/test/test_helper.rb +7 -5
  187. data/test/test_helper.rbc +1694 -0
  188. data/test/tmp/compass_rails/public/images/{selectors-sef52c5c63a.png → selectors-s4c703bbc05.png} +0 -0
  189. data/test/units/actions_test.rbc +644 -0
  190. data/test/units/command_line_test.rbc +1532 -0
  191. data/test/units/compass_png_test.rbc +0 -0
  192. data/test/units/configuration_test.rbc +3833 -0
  193. data/test/units/rails_configuration_test.rbc +1032 -0
  194. data/test/units/sass_extensions_test.rb +31 -0
  195. data/test/units/sass_extensions_test.rbc +3586 -0
  196. data/test/units/sprites/engine_test.rbc +962 -0
  197. data/test/units/sprites/image_row_test.rbc +1578 -0
  198. data/test/units/sprites/image_test.rb +3 -3
  199. data/test/units/sprites/image_test.rbc +2836 -0
  200. data/test/units/sprites/importer_test.rb +6 -0
  201. data/test/units/sprites/importer_test.rbc +2620 -0
  202. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  203. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  204. data/test/units/sprites/sprite_map_test.rb +19 -6
  205. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  206. metadata +180 -54
@@ -15,6 +15,9 @@ module Compass
15
15
  self.sass_options.update(sass_opts)
16
16
  self.sass_options[:cache_location] ||= determine_cache_location
17
17
  self.sass_options[:importer] = self.importer = Sass::Importers::Filesystem.new(from)
18
+ self.sass_options[:compass] ||= {}
19
+ self.sass_options[:compass][:logger] = self.logger
20
+ self.sass_options[:compass][:environment] = Compass.configuration.environment
18
21
  self.staleness_checker = Sass::Plugin::StalenessChecker.new(sass_options)
19
22
  end
20
23
 
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -503,30 +503,30 @@ x
503
503
  10
504
504
  initialize
505
505
  i
506
- 249
506
+ 336
507
507
  5
508
508
  20
509
509
  0
510
+ 49
511
+ 0
512
+ 0
510
513
  13
511
514
  18
512
515
  2
513
516
  47
514
517
  49
515
- 0
518
+ 1
516
519
  1
517
520
  15
518
521
  15
522
+ 45
523
+ 2
524
+ 3
519
525
  20
520
526
  1
521
- 7
522
- 1
523
- 64
524
- 7
525
- 2
526
- 64
527
527
  49
528
- 3
529
- 2
528
+ 4
529
+ 1
530
530
  20
531
531
  2
532
532
  17
@@ -535,14 +535,14 @@ i
535
535
  12
536
536
  47
537
537
  49
538
- 4
538
+ 5
539
539
  1
540
540
  15
541
541
  5
542
542
  12
543
543
  47
544
544
  49
545
- 5
545
+ 6
546
546
  1
547
547
  15
548
548
  2
@@ -551,25 +551,25 @@ i
551
551
  20
552
552
  3
553
553
  7
554
- 6
555
- 49
556
554
  7
555
+ 49
556
+ 8
557
557
  1
558
558
  13
559
559
  18
560
560
  2
561
561
  47
562
562
  49
563
- 8
563
+ 9
564
564
  1
565
565
  15
566
566
  15
567
567
  20
568
568
  3
569
569
  7
570
- 9
570
+ 10
571
571
  49
572
- 7
572
+ 8
573
573
  1
574
574
  13
575
575
  10
@@ -577,10 +577,10 @@ i
577
577
  15
578
578
  44
579
579
  43
580
- 10
580
+ 11
581
581
  78
582
582
  49
583
- 11
583
+ 12
584
584
  1
585
585
  19
586
586
  4
@@ -593,7 +593,7 @@ i
593
593
  2
594
594
  47
595
595
  49
596
- 12
596
+ 13
597
597
  1
598
598
  15
599
599
  15
@@ -601,37 +601,37 @@ i
601
601
  20
602
602
  3
603
603
  49
604
- 13
604
+ 14
605
605
  0
606
606
  13
607
607
  18
608
608
  2
609
609
  47
610
610
  49
611
- 14
611
+ 15
612
612
  1
613
613
  15
614
614
  15
615
615
  5
616
616
  49
617
- 15
617
+ 16
618
618
  0
619
619
  20
620
620
  4
621
621
  49
622
- 16
622
+ 17
623
623
  1
624
624
  15
625
625
  5
626
626
  49
627
- 15
627
+ 16
628
628
  0
629
629
  7
630
- 17
630
+ 18
631
631
  14
632
632
  2
633
633
  49
634
- 18
634
+ 19
635
635
  1
636
636
  13
637
637
  10
@@ -639,12 +639,12 @@ i
639
639
  15
640
640
  5
641
641
  48
642
- 19
642
+ 20
643
643
  13
644
644
  18
645
645
  3
646
646
  49
647
- 20
647
+ 21
648
648
  2
649
649
  15
650
650
  8
@@ -656,34 +656,34 @@ i
656
656
  15
657
657
  5
658
658
  49
659
- 15
659
+ 16
660
660
  0
661
661
  7
662
- 21
662
+ 22
663
663
  5
664
664
  45
665
- 22
666
665
  23
667
- 43
668
666
  24
669
667
  43
670
668
  25
669
+ 43
670
+ 26
671
671
  13
672
672
  71
673
- 26
673
+ 27
674
674
  47
675
675
  9
676
676
  184
677
677
  47
678
678
  49
679
- 27
679
+ 28
680
680
  0
681
681
  13
682
682
  20
683
683
  1
684
684
  47
685
685
  49
686
- 28
686
+ 29
687
687
  1
688
688
  15
689
689
  8
@@ -691,65 +691,152 @@ i
691
691
  20
692
692
  1
693
693
  49
694
- 26
694
+ 27
695
695
  1
696
696
  13
697
697
  18
698
698
  2
699
699
  47
700
700
  49
701
- 29
701
+ 30
702
702
  1
703
703
  15
704
704
  13
705
705
  18
706
706
  3
707
707
  49
708
- 20
708
+ 21
709
709
  2
710
710
  15
711
711
  15
712
712
  5
713
- 45
714
- 22
715
- 30
716
- 43
713
+ 49
714
+ 16
715
+ 0
716
+ 7
717
717
  31
718
+ 14
719
+ 2
720
+ 49
721
+ 19
722
+ 1
723
+ 13
724
+ 10
725
+ 236
726
+ 15
727
+ 44
718
728
  43
729
+ 11
730
+ 78
731
+ 49
732
+ 12
733
+ 1
734
+ 13
735
+ 18
736
+ 3
737
+ 49
738
+ 21
739
+ 2
740
+ 15
741
+ 8
742
+ 240
743
+ 18
744
+ 2
745
+ 16
746
+ 2
747
+ 15
748
+ 5
749
+ 49
750
+ 16
751
+ 0
752
+ 7
753
+ 31
754
+ 49
755
+ 19
756
+ 1
757
+ 7
758
+ 7
759
+ 5
760
+ 49
761
+ 7
762
+ 0
763
+ 13
764
+ 18
765
+ 3
766
+ 49
767
+ 21
768
+ 2
769
+ 15
770
+ 15
771
+ 5
772
+ 49
773
+ 16
774
+ 0
775
+ 7
776
+ 31
777
+ 49
778
+ 19
779
+ 1
780
+ 7
719
781
  32
782
+ 45
783
+ 33
784
+ 34
785
+ 49
786
+ 35
787
+ 0
788
+ 49
789
+ 32
790
+ 0
791
+ 13
792
+ 18
793
+ 3
794
+ 49
795
+ 21
796
+ 2
797
+ 15
798
+ 15
799
+ 5
800
+ 45
801
+ 23
802
+ 36
803
+ 43
804
+ 37
805
+ 43
806
+ 38
720
807
  13
721
808
  71
722
- 26
809
+ 27
723
810
  47
724
811
  9
725
- 234
812
+ 321
726
813
  47
727
814
  49
728
- 27
815
+ 28
729
816
  0
730
817
  13
731
818
  5
732
819
  48
733
- 15
820
+ 16
734
821
  47
735
822
  49
736
- 28
823
+ 29
737
824
  1
738
825
  15
739
826
  8
740
- 240
827
+ 327
741
828
  5
742
829
  48
743
- 15
830
+ 16
744
831
  49
745
- 26
832
+ 27
746
833
  1
747
834
  13
748
835
  18
749
836
  2
750
837
  47
751
838
  49
752
- 33
839
+ 39
753
840
  1
754
841
  15
755
842
  11
@@ -763,19 +850,20 @@ I
763
850
  4
764
851
  n
765
852
  p
766
- 34
853
+ 40
854
+ x
855
+ 4
856
+ to_s
767
857
  x
768
858
  13
769
859
  working_path=
770
- s
771
- 2
772
- ./
773
- s
774
- 0
775
-
776
860
  x
777
861
  4
778
- gsub
862
+ File
863
+ n
864
+ x
865
+ 11
866
+ expand_path
779
867
  x
780
868
  5
781
869
  from=
@@ -852,6 +940,19 @@ initialize
852
940
  x
853
941
  9
854
942
  importer=
943
+ x
944
+ 7
945
+ compass
946
+ x
947
+ 11
948
+ environment
949
+ x
950
+ 7
951
+ Compass
952
+ n
953
+ x
954
+ 13
955
+ configuration
855
956
  n
856
957
  x
857
958
  6
@@ -863,7 +964,7 @@ x
863
964
  18
864
965
  staleness_checker=
865
966
  p
866
- 37
967
+ 43
867
968
  I
868
969
  -1
869
970
  I
@@ -871,19 +972,19 @@ I
871
972
  I
872
973
  0
873
974
  I
874
- b4
975
+ ba
875
976
  I
876
977
  1
877
978
  I
878
979
  9
879
980
  I
880
- c
981
+ f
881
982
  I
882
983
  a
883
984
  I
884
985
  1b
885
986
  I
886
- b4
987
+ ba
887
988
  I
888
989
  2c
889
990
  I
@@ -895,7 +996,7 @@ c
895
996
  I
896
997
  51
897
998
  I
898
- b4
999
+ ba
899
1000
  I
900
1001
  52
901
1002
  I
@@ -903,7 +1004,7 @@ d
903
1004
  I
904
1005
  5d
905
1006
  I
906
- b4
1007
+ ba
907
1008
  I
908
1009
  5e
909
1010
  I
@@ -923,7 +1024,7 @@ I
923
1024
  I
924
1025
  9c
925
1026
  I
926
- b4
1027
+ ba
927
1028
  I
928
1029
  9d
929
1030
  I
@@ -931,16 +1032,28 @@ I
931
1032
  I
932
1033
  cd
933
1034
  I
934
- b4
1035
+ 12
935
1036
  I
936
- ce
1037
+ f1
937
1038
  I
938
- 12
1039
+ 13
1040
+ I
1041
+ 108
1042
+ I
1043
+ 14
1044
+ I
1045
+ 124
939
1046
  I
940
- f9
1047
+ ba
1048
+ I
1049
+ 125
1050
+ I
1051
+ 15
1052
+ I
1053
+ 150
941
1054
  x
942
- 53
943
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1055
+ 55
1056
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
944
1057
  p
945
1058
  5
946
1059
  x
@@ -1074,16 +1187,16 @@ p
1074
1187
  I
1075
1188
  -1
1076
1189
  I
1077
- 15
1190
+ 18
1078
1191
  I
1079
1192
  0
1080
1193
  I
1081
- 16
1194
+ 19
1082
1195
  I
1083
1196
  2b
1084
1197
  x
1085
- 53
1086
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1198
+ 55
1199
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1087
1200
  p
1088
1201
  0
1089
1202
  x
@@ -1236,24 +1349,32 @@ x
1236
1349
  11
1237
1350
  @sass_files
1238
1351
  p
1239
- 7
1352
+ 11
1240
1353
  I
1241
1354
  -1
1242
1355
  I
1243
- 19
1356
+ 1c
1244
1357
  I
1245
1358
  e
1246
1359
  I
1247
- 1a
1360
+ 1d
1248
1361
  I
1249
1362
  19
1250
1363
  I
1251
- 1b
1364
+ 1e
1365
+ I
1366
+ 3c
1367
+ I
1368
+ 0
1369
+ I
1370
+ 43
1371
+ I
1372
+ 1e
1252
1373
  I
1253
1374
  4d
1254
1375
  x
1255
- 53
1256
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1376
+ 55
1377
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1257
1378
  p
1258
1379
  2
1259
1380
  x
@@ -1330,16 +1451,16 @@ p
1330
1451
  I
1331
1452
  -1
1332
1453
  I
1333
- 1e
1454
+ 21
1334
1455
  I
1335
1456
  0
1336
1457
  I
1337
- 1f
1458
+ 22
1338
1459
  I
1339
1460
  16
1340
1461
  x
1341
- 53
1342
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1462
+ 55
1463
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1343
1464
  p
1344
1465
  1
1345
1466
  x
@@ -1459,28 +1580,32 @@ x
1459
1580
  5
1460
1581
  raise
1461
1582
  p
1462
- 9
1583
+ 11
1463
1584
  I
1464
1585
  -1
1465
1586
  I
1466
- 22
1587
+ 25
1467
1588
  I
1468
1589
  0
1469
1590
  I
1470
- 23
1591
+ 26
1471
1592
  I
1472
1593
  d
1473
1594
  I
1474
- 24
1595
+ 27
1475
1596
  I
1476
1597
  25
1477
1598
  I
1478
- 26
1599
+ 29
1600
+ I
1601
+ 32
1602
+ I
1603
+ 0
1479
1604
  I
1480
1605
  33
1481
1606
  x
1482
- 53
1483
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1607
+ 55
1608
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1484
1609
  p
1485
1610
  1
1486
1611
  x
@@ -1577,12 +1702,12 @@ p
1577
1702
  I
1578
1703
  0
1579
1704
  I
1580
- 2b
1705
+ 2e
1581
1706
  I
1582
1707
  c
1583
1708
  x
1584
- 53
1585
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1709
+ 55
1710
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1586
1711
  p
1587
1712
  1
1588
1713
  x
@@ -1596,16 +1721,16 @@ p
1596
1721
  I
1597
1722
  -1
1598
1723
  I
1599
- 2a
1724
+ 2d
1600
1725
  I
1601
1726
  0
1602
1727
  I
1603
- 2b
1728
+ 2e
1604
1729
  I
1605
1730
  11
1606
1731
  x
1607
- 53
1608
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1732
+ 55
1733
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1609
1734
  p
1610
1735
  0
1611
1736
  x
@@ -1674,16 +1799,16 @@ p
1674
1799
  I
1675
1800
  -1
1676
1801
  I
1677
- 2e
1802
+ 31
1678
1803
  I
1679
1804
  0
1680
1805
  I
1681
- 2f
1806
+ 32
1682
1807
  I
1683
1808
  17
1684
1809
  x
1685
- 53
1686
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1810
+ 55
1811
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1687
1812
  p
1688
1813
  1
1689
1814
  x
@@ -1785,12 +1910,12 @@ p
1785
1910
  I
1786
1911
  0
1787
1912
  I
1788
- 33
1913
+ 36
1789
1914
  I
1790
1915
  d
1791
1916
  x
1792
- 53
1793
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1917
+ 55
1918
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1794
1919
  p
1795
1920
  1
1796
1921
  x
@@ -1848,12 +1973,12 @@ p
1848
1973
  I
1849
1974
  0
1850
1975
  I
1851
- 33
1976
+ 36
1852
1977
  I
1853
1978
  a
1854
1979
  x
1855
- 53
1856
- /Users/chris/Projects/compass/lib/compass/compiler.rb
1980
+ 55
1981
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1857
1982
  p
1858
1983
  1
1859
1984
  x
@@ -1867,16 +1992,16 @@ p
1867
1992
  I
1868
1993
  -1
1869
1994
  I
1870
- 32
1995
+ 35
1871
1996
  I
1872
1997
  0
1873
1998
  I
1874
- 33
1999
+ 36
1875
2000
  I
1876
2001
  14
1877
2002
  x
1878
- 53
1879
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2003
+ 55
2004
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
1880
2005
  p
1881
2006
  0
1882
2007
  x
@@ -1985,20 +2110,24 @@ x
1985
2110
  13
1986
2111
  needs_update?
1987
2112
  p
1988
- 5
2113
+ 7
1989
2114
  I
1990
2115
  0
1991
2116
  I
1992
- 38
2117
+ 3b
2118
+ I
2119
+ a
2120
+ I
2121
+ 3c
1993
2122
  I
1994
- a
2123
+ 1b
1995
2124
  I
1996
- 39
2125
+ 0
1997
2126
  I
1998
2127
  1c
1999
2128
  x
2000
- 53
2001
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2129
+ 55
2130
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2002
2131
  p
2003
2132
  2
2004
2133
  x
@@ -2015,20 +2144,20 @@ p
2015
2144
  I
2016
2145
  -1
2017
2146
  I
2018
- 37
2147
+ 3a
2019
2148
  I
2020
2149
  0
2021
2150
  I
2022
- 38
2151
+ 3b
2023
2152
  I
2024
2153
  f
2025
2154
  I
2026
- 3b
2155
+ 3e
2027
2156
  I
2028
2157
  11
2029
2158
  x
2030
- 53
2031
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2159
+ 55
2160
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2032
2161
  p
2033
2162
  0
2034
2163
  x
@@ -2095,16 +2224,16 @@ p
2095
2224
  I
2096
2225
  -1
2097
2226
  I
2098
- 3e
2227
+ 41
2099
2228
  I
2100
2229
  0
2101
2230
  I
2102
- 3f
2231
+ 42
2103
2232
  I
2104
2233
  14
2105
2234
  x
2106
- 53
2107
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2235
+ 55
2236
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2108
2237
  p
2109
2238
  2
2110
2239
  x
@@ -2273,20 +2402,24 @@ x
2273
2402
  1
2274
2403
  >
2275
2404
  p
2276
- 5
2405
+ 7
2277
2406
  I
2278
2407
  0
2279
2408
  I
2280
- 47
2409
+ 4a
2281
2410
  I
2282
2411
  4
2283
2412
  I
2284
- 48
2413
+ 4b
2414
+ I
2415
+ 26
2416
+ I
2417
+ 0
2285
2418
  I
2286
2419
  27
2287
2420
  x
2288
- 53
2289
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2421
+ 55
2422
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2290
2423
  p
2291
2424
  1
2292
2425
  x
@@ -2296,36 +2429,40 @@ x
2296
2429
  4
2297
2430
  each
2298
2431
  p
2299
- 13
2432
+ 15
2300
2433
  I
2301
2434
  -1
2302
2435
  I
2303
- 43
2436
+ 46
2304
2437
  I
2305
2438
  0
2306
2439
  I
2307
- 44
2440
+ 47
2308
2441
  I
2309
2442
  9
2310
2443
  I
2311
- 45
2444
+ 48
2445
+ I
2446
+ 12
2447
+ I
2448
+ 0
2312
2449
  I
2313
2450
  13
2314
2451
  I
2315
- 46
2452
+ 49
2316
2453
  I
2317
2454
  1e
2318
2455
  I
2319
- 47
2456
+ 4a
2320
2457
  I
2321
2458
  27
2322
2459
  I
2323
- 4a
2460
+ 4d
2324
2461
  I
2325
2462
  29
2326
2463
  x
2327
- 53
2328
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2464
+ 55
2465
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2329
2466
  p
2330
2467
  2
2331
2468
  x
@@ -2345,29 +2482,28 @@ x
2345
2482
  6
2346
2483
  clean!
2347
2484
  i
2348
- 24
2349
- 45
2350
- 0
2351
- 1
2485
+ 23
2486
+ 5
2352
2487
  5
2353
2488
  48
2354
- 2
2489
+ 0
2355
2490
  7
2356
- 3
2491
+ 1
2357
2492
  49
2358
- 4
2493
+ 2
2359
2494
  1
2495
+ 47
2360
2496
  49
2361
- 5
2497
+ 3
2362
2498
  1
2363
2499
  15
2364
2500
  5
2365
2501
  48
2366
- 6
2502
+ 4
2367
2503
  56
2368
- 7
2504
+ 5
2369
2505
  50
2370
- 8
2506
+ 6
2371
2507
  0
2372
2508
  11
2373
2509
  I
@@ -2380,11 +2516,7 @@ I
2380
2516
  0
2381
2517
  n
2382
2518
  p
2383
- 9
2384
- x
2385
- 9
2386
- FileUtils
2387
- n
2519
+ 7
2388
2520
  x
2389
2521
  7
2390
2522
  options
@@ -2395,8 +2527,8 @@ x
2395
2527
  2
2396
2528
  []
2397
2529
  x
2398
- 5
2399
- rm_rf
2530
+ 6
2531
+ remove
2400
2532
  x
2401
2533
  9
2402
2534
  css_files
@@ -2413,18 +2545,17 @@ x
2413
2545
  6
2414
2546
  clean!
2415
2547
  i
2416
- 13
2548
+ 12
2417
2549
  57
2418
2550
  19
2419
2551
  0
2420
2552
  15
2421
- 45
2422
- 0
2423
- 1
2553
+ 5
2424
2554
  20
2425
2555
  0
2556
+ 47
2426
2557
  49
2427
- 2
2558
+ 0
2428
2559
  1
2429
2560
  11
2430
2561
  I
@@ -2437,29 +2568,25 @@ I
2437
2568
  1
2438
2569
  n
2439
2570
  p
2440
- 3
2441
- x
2442
- 9
2443
- FileUtils
2444
- n
2571
+ 1
2445
2572
  x
2446
- 4
2447
- rm_f
2573
+ 6
2574
+ remove
2448
2575
  p
2449
2576
  5
2450
2577
  I
2451
2578
  0
2452
2579
  I
2453
- 4f
2580
+ 52
2454
2581
  I
2455
2582
  4
2456
2583
  I
2457
- 50
2584
+ 53
2458
2585
  I
2459
- d
2586
+ c
2460
2587
  x
2461
- 53
2462
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2588
+ 55
2589
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2463
2590
  p
2464
2591
  1
2465
2592
  x
@@ -2473,20 +2600,20 @@ p
2473
2600
  I
2474
2601
  -1
2475
2602
  I
2476
- 4d
2603
+ 50
2477
2604
  I
2478
2605
  0
2479
2606
  I
2480
- 4e
2607
+ 51
2481
2608
  I
2482
- f
2609
+ e
2483
2610
  I
2484
- 4f
2611
+ 52
2485
2612
  I
2486
- 18
2613
+ 17
2487
2614
  x
2488
- 53
2489
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2615
+ 55
2616
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2490
2617
  p
2491
2618
  0
2492
2619
  x
@@ -2500,130 +2627,146 @@ x
2500
2627
  3
2501
2628
  run
2502
2629
  i
2503
- 104
2630
+ 124
2631
+ 78
2632
+ 19
2633
+ 0
2634
+ 15
2504
2635
  5
2505
2636
  47
2506
2637
  49
2507
2638
  0
2508
2639
  0
2509
2640
  9
2510
- 37
2511
- 45
2641
+ 53
2642
+ 5
2643
+ 48
2512
2644
  1
2645
+ 7
2513
2646
  2
2647
+ 49
2648
+ 3
2649
+ 1
2650
+ 9
2651
+ 36
2652
+ 5
2514
2653
  5
2515
2654
  48
2516
- 3
2655
+ 1
2517
2656
  7
2518
- 4
2657
+ 2
2519
2658
  49
2520
- 5
2659
+ 3
2521
2660
  1
2661
+ 47
2522
2662
  49
2523
- 6
2663
+ 4
2664
+ 1
2665
+ 8
2666
+ 37
2524
2667
  1
2525
2668
  15
2526
2669
  5
2527
2670
  48
2528
- 3
2529
- 7
2671
+ 1
2530
2672
  7
2673
+ 5
2531
2674
  2
2532
2675
  13
2533
2676
  18
2534
2677
  3
2535
2678
  49
2536
- 8
2679
+ 6
2537
2680
  2
2538
2681
  15
2539
2682
  8
2540
- 38
2683
+ 54
2541
2684
  1
2542
2685
  15
2543
2686
  5
2544
2687
  48
2545
- 9
2688
+ 7
2546
2689
  56
2547
- 10
2690
+ 8
2548
2691
  50
2549
- 11
2692
+ 9
2550
2693
  0
2551
2694
  15
2552
2695
  5
2553
2696
  56
2554
- 12
2697
+ 10
2555
2698
  47
2556
2699
  50
2557
- 13
2700
+ 11
2558
2701
  0
2559
2702
  19
2560
- 0
2703
+ 1
2561
2704
  15
2562
2705
  5
2563
2706
  48
2564
- 3
2707
+ 1
2565
2708
  7
2566
- 14
2709
+ 12
2567
2710
  49
2568
- 5
2711
+ 3
2569
2712
  1
2570
2713
  9
2571
- 102
2714
+ 118
2572
2715
  5
2573
2716
  7
2574
- 15
2717
+ 13
2575
2718
  20
2576
- 0
2719
+ 1
2577
2720
  49
2578
- 16
2721
+ 14
2579
2722
  0
2580
2723
  7
2581
- 17
2724
+ 15
2582
2725
  49
2583
- 18
2726
+ 16
2584
2727
  1
2585
2728
  49
2586
- 19
2729
+ 17
2587
2730
  0
2588
2731
  7
2589
- 20
2732
+ 18
2590
2733
  49
2591
- 21
2734
+ 19
2592
2735
  1
2593
2736
  47
2594
2737
  101
2595
- 22
2738
+ 20
2596
2739
  7
2597
- 23
2740
+ 21
2598
2741
  63
2599
2742
  3
2600
2743
  47
2601
2744
  49
2602
- 24
2745
+ 22
2603
2746
  1
2604
2747
  8
2605
- 103
2748
+ 119
2606
2749
  1
2750
+ 15
2751
+ 20
2752
+ 0
2753
+ 11
2607
2754
  11
2608
2755
  I
2609
- 5
2756
+ 6
2610
2757
  I
2611
- 1
2758
+ 2
2612
2759
  I
2613
2760
  0
2614
2761
  I
2615
2762
  0
2616
2763
  n
2617
2764
  p
2618
- 25
2765
+ 23
2619
2766
  x
2620
2767
  11
2621
2768
  new_config?
2622
2769
  x
2623
- 9
2624
- FileUtils
2625
- n
2626
- x
2627
2770
  7
2628
2771
  options
2629
2772
  x
@@ -2633,8 +2776,8 @@ x
2633
2776
  2
2634
2777
  []
2635
2778
  x
2636
- 5
2637
- rm_rf
2779
+ 6
2780
+ remove
2638
2781
  x
2639
2782
  5
2640
2783
  force
@@ -2689,12 +2832,12 @@ p
2689
2832
  I
2690
2833
  0
2691
2834
  I
2692
- 5c
2835
+ 60
2693
2836
  I
2694
2837
  c
2695
2838
  x
2696
- 53
2697
- /Users/chris/Projects/compass/lib/compass/compiler.rb
2839
+ 55
2840
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2698
2841
  p
2699
2842
  1
2700
2843
  x
@@ -2766,7 +2909,7 @@ x
2766
2909
  3
2767
2910
  run
2768
2911
  i
2769
- 76
2912
+ 86
2770
2913
  58
2771
2914
  37
2772
2915
  19
@@ -2795,7 +2938,7 @@ i
2795
2938
  2
2796
2939
  30
2797
2940
  8
2798
- 72
2941
+ 82
2799
2942
  26
2800
2943
  93
2801
2944
  1
@@ -2814,12 +2957,22 @@ i
2814
2957
  10
2815
2958
  48
2816
2959
  8
2817
- 67
2960
+ 77
2818
2961
  15
2819
2962
  24
2820
2963
  19
2821
2964
  2
2822
2965
  15
2966
+ 21
2967
+ 2
2968
+ 0
2969
+ 79
2970
+ 81
2971
+ 5
2972
+ 22
2973
+ 2
2974
+ 0
2975
+ 15
2823
2976
  5
2824
2977
  20
2825
2978
  0
@@ -2829,11 +2982,11 @@ i
2829
2982
  2
2830
2983
  47
2831
2984
  49
2832
- 5
2985
+ 6
2833
2986
  3
2834
2987
  25
2835
2988
  8
2836
- 72
2989
+ 82
2837
2990
  15
2838
2991
  92
2839
2992
  1
@@ -2853,7 +3006,7 @@ I
2853
3006
  2
2854
3007
  n
2855
3008
  p
2856
- 6
3009
+ 7
2857
3010
  x
2858
3011
  19
2859
3012
  compile_if_required
@@ -2868,39 +3021,54 @@ x
2868
3021
  3
2869
3022
  ===
2870
3023
  x
3024
+ 1
3025
+ +
3026
+ x
2871
3027
  16
2872
3028
  handle_exception
2873
3029
  p
2874
- 13
3030
+ 19
2875
3031
  I
2876
3032
  0
2877
3033
  I
2878
- 60
3034
+ 64
2879
3035
  I
2880
3036
  a
2881
3037
  I
2882
- 62
3038
+ 66
3039
+ I
3040
+ 1d
3041
+ I
3042
+ 0
2883
3043
  I
2884
3044
  22
2885
3045
  I
2886
- 63
3046
+ 67
2887
3047
  I
2888
3048
  31
2889
3049
  I
2890
- 65
3050
+ 6a
2891
3051
  I
2892
3052
  32
2893
3053
  I
2894
- 63
3054
+ 67
3055
+ I
3056
+ 35
3057
+ I
3058
+ 68
3059
+ I
3060
+ 3f
3061
+ I
3062
+ 69
2895
3063
  I
2896
- 35
3064
+ 52
2897
3065
  I
2898
- 64
3066
+ 0
2899
3067
  I
2900
- 4c
3068
+ 56
2901
3069
  x
2902
- 53
2903
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3070
+ 55
3071
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2904
3072
  p
2905
3073
  3
2906
3074
  x
@@ -2920,12 +3088,12 @@ p
2920
3088
  I
2921
3089
  0
2922
3090
  I
2923
- 60
3091
+ 64
2924
3092
  I
2925
3093
  f
2926
3094
  x
2927
- 53
2928
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3095
+ 55
3096
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
2929
3097
  p
2930
3098
  0
2931
3099
  x
@@ -2963,54 +3131,77 @@ x
2963
3131
  4
2964
3132
  puts
2965
3133
  p
2966
- 21
3134
+ 31
2967
3135
  I
2968
3136
  -1
2969
3137
  I
2970
- 54
3138
+ 57
2971
3139
  I
2972
3140
  0
2973
3141
  I
2974
- 55
3142
+ 58
2975
3143
  I
2976
- 7
3144
+ 4
2977
3145
  I
2978
- 57
3146
+ 59
2979
3147
  I
2980
- 16
3148
+ b
2981
3149
  I
2982
- 58
3150
+ 5b
2983
3151
  I
2984
3152
  25
2985
3153
  I
2986
- 55
3154
+ 0
2987
3155
  I
2988
- 27
3156
+ 26
2989
3157
  I
2990
3158
  5c
2991
3159
  I
2992
- 30
3160
+ 35
3161
+ I
3162
+ 59
2993
3163
  I
2994
- 5f
3164
+ 36
2995
3165
  I
2996
- 3a
3166
+ 0
2997
3167
  I
2998
- 68
3168
+ 37
2999
3169
  I
3000
- 44
3170
+ 60
3001
3171
  I
3002
- 69
3172
+ 40
3003
3173
  I
3004
- 66
3174
+ 63
3005
3175
  I
3006
- 68
3176
+ 4a
3007
3177
  I
3008
- 68
3178
+ 6d
3179
+ I
3180
+ 54
3181
+ I
3182
+ 6e
3183
+ I
3184
+ 76
3185
+ I
3186
+ 6d
3187
+ I
3188
+ 77
3189
+ I
3190
+ 0
3191
+ I
3192
+ 78
3193
+ I
3194
+ 70
3195
+ I
3196
+ 7c
3009
3197
  x
3010
- 53
3011
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3198
+ 55
3199
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3012
3200
  p
3013
- 1
3201
+ 2
3202
+ x
3203
+ 13
3204
+ failure_count
3014
3205
  x
3015
3206
  6
3016
3207
  result
@@ -3116,28 +3307,32 @@ x
3116
3307
  6
3117
3308
  record
3118
3309
  p
3119
- 9
3310
+ 11
3120
3311
  I
3121
3312
  -1
3122
3313
  I
3123
- 6d
3314
+ 73
3124
3315
  I
3125
3316
  0
3126
3317
  I
3127
- 6e
3318
+ 74
3128
3319
  I
3129
3320
  b
3130
3321
  I
3131
- 6f
3322
+ 75
3132
3323
  I
3133
3324
  16
3134
3325
  I
3135
- 71
3326
+ 77
3327
+ I
3328
+ 32
3329
+ I
3330
+ 0
3136
3331
  I
3137
3332
  33
3138
3333
  x
3139
- 53
3140
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3334
+ 55
3335
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3141
3336
  p
3142
3337
  2
3143
3338
  x
@@ -3273,16 +3468,16 @@ p
3273
3468
  I
3274
3469
  -1
3275
3470
  I
3276
- 7a
3471
+ 80
3277
3472
  I
3278
3473
  0
3279
3474
  I
3280
- 7b
3475
+ 81
3281
3476
  I
3282
3477
  3
3283
3478
  x
3284
- 53
3285
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3479
+ 55
3480
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3286
3481
  p
3287
3482
  0
3288
3483
  x
@@ -3293,36 +3488,36 @@ p
3293
3488
  I
3294
3489
  -1
3295
3490
  I
3296
- 75
3491
+ 7b
3297
3492
  I
3298
3493
  0
3299
3494
  I
3300
- 76
3495
+ 7c
3301
3496
  I
3302
3497
  9
3303
3498
  I
3304
- 77
3499
+ 7d
3305
3500
  I
3306
3501
  e
3307
3502
  I
3308
- 78
3503
+ 7e
3309
3504
  I
3310
3505
  17
3311
3506
  I
3312
- 79
3507
+ 7f
3313
3508
  I
3314
3509
  26
3315
3510
  I
3316
- 7a
3511
+ 80
3317
3512
  I
3318
3513
  32
3319
3514
  I
3320
- 7d
3515
+ 83
3321
3516
  I
3322
3517
  35
3323
3518
  x
3324
- 53
3325
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3519
+ 55
3520
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3326
3521
  p
3327
3522
  3
3328
3523
  x
@@ -3345,7 +3540,7 @@ x
3345
3540
  7
3346
3541
  compile
3347
3542
  i
3348
- 116
3543
+ 114
3349
3544
  1
3350
3545
  19
3351
3546
  3
@@ -3454,13 +3649,11 @@ i
3454
3649
  49
3455
3650
  25
3456
3651
  0
3457
- 7
3458
- 26
3459
3652
  20
3460
3653
  1
3461
3654
  49
3462
- 27
3463
- 2
3655
+ 26
3656
+ 1
3464
3657
  11
3465
3658
  I
3466
3659
  e
@@ -3472,7 +3665,7 @@ I
3472
3665
  2
3473
3666
  n
3474
3667
  p
3475
- 28
3668
+ 27
3476
3669
  x
3477
3670
  6
3478
3671
  logger
@@ -3562,12 +3755,12 @@ p
3562
3755
  I
3563
3756
  0
3564
3757
  I
3565
- 85
3758
+ 8b
3566
3759
  I
3567
3760
  f
3568
3761
  x
3569
- 53
3570
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3762
+ 55
3763
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3571
3764
  p
3572
3765
  0
3573
3766
  x
@@ -3578,12 +3771,12 @@ p
3578
3771
  I
3579
3772
  0
3580
3773
  I
3581
- 84
3774
+ 8a
3582
3775
  I
3583
3776
  8
3584
3777
  x
3585
- 53
3586
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3778
+ 55
3779
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3587
3780
  p
3588
3781
  0
3589
3782
  x
@@ -3655,42 +3848,43 @@ x
3655
3848
  13
3656
3849
  configuration
3657
3850
  x
3658
- 16
3659
- stylesheet_saved
3660
- x
3661
- 12
3662
- run_callback
3851
+ 20
3852
+ run_stylesheet_saved
3663
3853
  p
3664
- 13
3854
+ 15
3665
3855
  I
3666
3856
  -1
3667
3857
  I
3668
- 81
3858
+ 87
3669
3859
  I
3670
3860
  0
3671
3861
  I
3672
- 82
3862
+ 88
3673
3863
  I
3674
3864
  6
3675
3865
  I
3676
- 83
3866
+ 89
3677
3867
  I
3678
3868
  11
3679
3869
  I
3680
- 88
3870
+ 8e
3871
+ I
3872
+ 3b
3873
+ I
3874
+ 8e
3681
3875
  I
3682
3876
  3e
3683
3877
  I
3684
- 89
3878
+ 8f
3685
3879
  I
3686
3880
  66
3687
3881
  I
3688
- 8a
3882
+ 90
3689
3883
  I
3690
- 74
3884
+ 72
3691
3885
  x
3692
- 53
3693
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3886
+ 55
3887
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3694
3888
  p
3695
3889
  6
3696
3890
  x
@@ -3773,16 +3967,16 @@ p
3773
3967
  I
3774
3968
  -1
3775
3969
  I
3776
- 8d
3970
+ 93
3777
3971
  I
3778
3972
  0
3779
3973
  I
3780
- 8e
3974
+ 94
3781
3975
  I
3782
3976
  16
3783
3977
  x
3784
- 53
3785
- /Users/chris/Projects/compass/lib/compass/compiler.rb
3978
+ 55
3979
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
3786
3980
  p
3787
3981
  2
3788
3982
  x
@@ -4024,24 +4218,24 @@ p
4024
4218
  I
4025
4219
  -1
4026
4220
  I
4027
- 92
4221
+ 98
4028
4222
  I
4029
4223
  0
4030
4224
  I
4031
- 93
4225
+ 99
4032
4226
  I
4033
4227
  2d
4034
4228
  I
4035
- 94
4229
+ 9a
4036
4230
  I
4037
4231
  59
4038
4232
  I
4039
- 95
4233
+ 9b
4040
4234
  I
4041
4235
  8c
4042
4236
  x
4043
- 53
4044
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4237
+ 55
4238
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4045
4239
  p
4046
4240
  4
4047
4241
  x
@@ -4067,7 +4261,7 @@ x
4067
4261
  16
4068
4262
  handle_exception
4069
4263
  i
4070
- 104
4264
+ 102
4071
4265
  7
4072
4266
  0
4073
4267
  20
@@ -4124,15 +4318,13 @@ i
4124
4318
  49
4125
4319
  12
4126
4320
  0
4127
- 7
4128
- 13
4129
4321
  20
4130
4322
  0
4131
4323
  20
4132
4324
  3
4133
4325
  49
4134
- 14
4135
- 3
4326
+ 13
4327
+ 2
4136
4328
  15
4137
4329
  5
4138
4330
  20
@@ -4144,32 +4336,32 @@ i
4144
4336
  0
4145
4337
  47
4146
4338
  49
4147
- 15
4339
+ 14
4148
4340
  2
4149
4341
  5
4150
4342
  48
4151
- 16
4343
+ 15
4152
4344
  44
4153
4345
  43
4154
- 17
4346
+ 16
4155
4347
  79
4156
4348
  49
4157
- 18
4349
+ 17
4158
4350
  1
4159
4351
  13
4160
4352
  7
4161
- 19
4353
+ 18
4162
4354
  2
4163
4355
  49
4164
- 20
4356
+ 19
4165
4357
  2
4166
4358
  15
4167
4359
  49
4168
- 21
4360
+ 20
4169
4361
  1
4170
4362
  47
4171
4363
  49
4172
- 22
4364
+ 21
4173
4365
  3
4174
4366
  11
4175
4367
  I
@@ -4182,7 +4374,7 @@ I
4182
4374
  3
4183
4375
  n
4184
4376
  p
4185
- 23
4377
+ 22
4186
4378
  s
4187
4379
  6
4188
4380
  (Line
@@ -4221,11 +4413,8 @@ x
4221
4413
  13
4222
4414
  configuration
4223
4415
  x
4224
- 16
4225
- stylesheet_error
4226
- x
4227
- 12
4228
- run_callback
4416
+ 20
4417
+ run_stylesheet_error
4229
4418
  x
4230
4419
  14
4231
4420
  error_contents
@@ -4255,32 +4444,32 @@ p
4255
4444
  I
4256
4445
  -1
4257
4446
  I
4258
- 9b
4447
+ a1
4259
4448
  I
4260
4449
  0
4261
4450
  I
4262
- 9c
4451
+ a2
4263
4452
  I
4264
4453
  1b
4265
4454
  I
4266
- 9d
4455
+ a3
4267
4456
  I
4268
4457
  25
4269
4458
  I
4270
- 9e
4459
+ a4
4271
4460
  I
4272
4461
  32
4273
4462
  I
4274
- 9f
4463
+ a5
4275
4464
  I
4276
- 42
4465
+ 40
4277
4466
  I
4278
- a0
4467
+ a6
4279
4468
  I
4280
- 68
4469
+ 66
4281
4470
  x
4282
- 53
4283
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4471
+ 55
4472
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4284
4473
  p
4285
4474
  5
4286
4475
  x
@@ -4477,36 +4666,40 @@ x
4477
4666
  4
4478
4667
  send
4479
4668
  p
4480
- 13
4669
+ 15
4481
4670
  I
4482
4671
  -1
4483
4672
  I
4484
- a4
4673
+ aa
4485
4674
  I
4486
4675
  0
4487
4676
  I
4488
- a5
4677
+ ab
4489
4678
  I
4490
4679
  c
4491
4680
  I
4492
- a6
4681
+ ac
4493
4682
  I
4494
4683
  18
4495
4684
  I
4496
- a7
4685
+ ad
4497
4686
  I
4498
4687
  37
4499
4688
  I
4500
- a9
4689
+ af
4501
4690
  I
4502
4691
  5d
4503
4692
  I
4504
- aa
4693
+ b0
4694
+ I
4695
+ 69
4696
+ I
4697
+ 0
4505
4698
  I
4506
4699
  6a
4507
4700
  x
4508
- 53
4509
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4701
+ 55
4702
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4510
4703
  p
4511
4704
  2
4512
4705
  x
@@ -4573,16 +4766,16 @@ p
4573
4766
  I
4574
4767
  -1
4575
4768
  I
4576
- af
4769
+ b5
4577
4770
  I
4578
4771
  0
4579
4772
  I
4580
- b0
4773
+ b6
4581
4774
  I
4582
4775
  e
4583
4776
  x
4584
- 53
4585
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4777
+ 55
4778
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4586
4779
  p
4587
4780
  0
4588
4781
  p
@@ -4602,88 +4795,88 @@ I
4602
4795
  I
4603
4796
  2d
4604
4797
  I
4605
- 15
4798
+ 18
4606
4799
  I
4607
4800
  3b
4608
4801
  I
4609
- 19
4802
+ 1c
4610
4803
  I
4611
4804
  49
4612
4805
  I
4613
- 1e
4806
+ 21
4614
4807
  I
4615
4808
  57
4616
4809
  I
4617
- 22
4810
+ 25
4618
4811
  I
4619
4812
  65
4620
4813
  I
4621
- 2a
4814
+ 2d
4622
4815
  I
4623
4816
  73
4624
4817
  I
4625
- 2e
4818
+ 31
4626
4819
  I
4627
4820
  81
4628
4821
  I
4629
- 32
4822
+ 35
4630
4823
  I
4631
4824
  8f
4632
4825
  I
4633
- 37
4826
+ 3a
4634
4827
  I
4635
4828
  9d
4636
4829
  I
4637
- 3e
4830
+ 41
4638
4831
  I
4639
4832
  ab
4640
4833
  I
4641
- 43
4834
+ 46
4642
4835
  I
4643
4836
  b9
4644
4837
  I
4645
- 4d
4838
+ 50
4646
4839
  I
4647
4840
  c7
4648
4841
  I
4649
- 54
4842
+ 57
4650
4843
  I
4651
4844
  d5
4652
4845
  I
4653
- 6d
4846
+ 73
4654
4847
  I
4655
4848
  e3
4656
4849
  I
4657
- 75
4850
+ 7b
4658
4851
  I
4659
4852
  f1
4660
4853
  I
4661
- 81
4854
+ 87
4662
4855
  I
4663
4856
  ff
4664
4857
  I
4665
- 8d
4858
+ 93
4666
4859
  I
4667
4860
  10d
4668
4861
  I
4669
- 92
4862
+ 98
4670
4863
  I
4671
4864
  11b
4672
4865
  I
4673
- 9b
4866
+ a1
4674
4867
  I
4675
4868
  129
4676
4869
  I
4677
- a4
4870
+ aa
4678
4871
  I
4679
4872
  137
4680
4873
  I
4681
- af
4874
+ b5
4682
4875
  I
4683
4876
  145
4684
4877
  x
4685
- 53
4686
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4878
+ 55
4879
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4687
4880
  p
4688
4881
  0
4689
4882
  x
@@ -4698,8 +4891,8 @@ I
4698
4891
  I
4699
4892
  1d
4700
4893
  x
4701
- 53
4702
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4894
+ 55
4895
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4703
4896
  p
4704
4897
  0
4705
4898
  x
@@ -4714,7 +4907,7 @@ I
4714
4907
  I
4715
4908
  1c
4716
4909
  x
4717
- 53
4718
- /Users/chris/Projects/compass/lib/compass/compiler.rb
4910
+ 55
4911
+ /Users/crispee/Projects/compass/lib/compass/compiler.rb
4719
4912
  p
4720
4913
  0