compass 0.11.5 → 0.11.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/compass +5 -1
  3. data/bin/compass.compiled.rbc +707 -0
  4. data/examples/compass/compass_app_log.txt +6 -0
  5. data/features/command_line.feature +16 -16
  6. data/features/extensions.feature +6 -0
  7. data/features/step_definitions/command_line_steps.rb +2 -0
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +19 -0
  10. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +12 -3
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  12. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +14 -11
  13. data/frameworks/compass/templates/pie/PIE.htc +83 -64
  14. data/lib/compass.rbc +42 -36
  15. data/lib/compass/actions.rbc +244 -85
  16. data/lib/compass/app_integration.rbc +28 -20
  17. data/lib/compass/app_integration/merb.rbc +8 -4
  18. data/lib/compass/app_integration/rails.rbc +664 -148
  19. data/lib/compass/app_integration/rails/configuration_defaults.rbc +1089 -332
  20. data/lib/compass/app_integration/rails/installer.rbc +145 -61
  21. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  22. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  23. data/lib/compass/app_integration/stand_alone/installer.rbc +52 -32
  24. data/lib/compass/browser_support.rbc +35 -23
  25. data/lib/compass/commands.rbc +307 -0
  26. data/lib/compass/commands/base.rbc +1044 -0
  27. data/lib/compass/commands/clean_project.rbc +1856 -0
  28. data/lib/compass/commands/create_project.rbc +2691 -0
  29. data/lib/compass/commands/default.rbc +1677 -0
  30. data/lib/compass/commands/generate_grid_background.rbc +1939 -0
  31. data/lib/compass/commands/help.rbc +1921 -0
  32. data/lib/compass/commands/imports.rbc +969 -0
  33. data/lib/compass/commands/installer_command.rbc +807 -0
  34. data/lib/compass/commands/interactive.rbc +1341 -0
  35. data/lib/compass/commands/list_frameworks.rbc +1111 -0
  36. data/lib/compass/commands/print_version.rbc +2478 -0
  37. data/lib/compass/commands/project_base.rbc +2085 -0
  38. data/lib/compass/commands/project_stats.rb +7 -7
  39. data/lib/compass/commands/project_stats.rbc +4202 -0
  40. data/lib/compass/commands/registry.rbc +1350 -0
  41. data/lib/compass/commands/sprite.rbc +2212 -0
  42. data/lib/compass/commands/stamp_pattern.rbc +2011 -0
  43. data/lib/compass/commands/unpack_extension.rbc +2348 -0
  44. data/lib/compass/commands/update_project.rbc +3002 -0
  45. data/lib/compass/commands/validate_project.rbc +1686 -0
  46. data/lib/compass/commands/watch_project.rbc +4155 -0
  47. data/lib/compass/commands/write_configuration.rbc +2896 -0
  48. data/lib/compass/compiler.rbc +591 -398
  49. data/lib/compass/configuration.rbc +134 -78
  50. data/lib/compass/configuration/adapters.rbc +98 -40
  51. data/lib/compass/configuration/comments.rbc +132 -51
  52. data/lib/compass/configuration/data.rbc +541 -551
  53. data/lib/compass/configuration/defaults.rbc +764 -189
  54. data/lib/compass/configuration/file_data.rbc +37 -125
  55. data/lib/compass/configuration/helpers.rb +7 -2
  56. data/lib/compass/configuration/helpers.rbc +433 -153
  57. data/lib/compass/configuration/inheritance.rbc +412 -165
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rbc +151 -84
  60. data/lib/compass/dependencies.rbc +16 -4
  61. data/lib/compass/errors.rbc +5 -5
  62. data/lib/compass/exec.rbc +500 -0
  63. data/lib/compass/exec/command_option_parser.rbc +676 -0
  64. data/lib/compass/exec/global_options_parser.rbc +1306 -0
  65. data/lib/compass/exec/helpers.rbc +758 -0
  66. data/lib/compass/exec/project_options_parser.rbc +1515 -0
  67. data/lib/compass/exec/sub_command_ui.rbc +1191 -0
  68. data/lib/compass/frameworks.rb +10 -4
  69. data/lib/compass/frameworks.rbc +118 -66
  70. data/lib/compass/grid_builder.rbc +0 -0
  71. data/lib/compass/installers.rbc +152 -0
  72. data/lib/compass/installers/bare_installer.rbc +939 -0
  73. data/lib/compass/installers/base.rbc +4427 -0
  74. data/lib/compass/installers/manifest.rbc +3335 -0
  75. data/lib/compass/installers/manifest_installer.rbc +1591 -0
  76. data/lib/compass/installers/template_context.rbc +1030 -0
  77. data/lib/compass/logger.rbc +2317 -0
  78. data/lib/compass/quick_cache.rbc +12 -8
  79. data/lib/compass/sass_extensions.rbc +8 -4
  80. data/lib/compass/sass_extensions/functions.rbc +90 -57
  81. data/lib/compass/sass_extensions/functions/colors.rbc +22 -18
  82. data/lib/compass/sass_extensions/functions/constants.rbc +45 -25
  83. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +48 -36
  84. data/lib/compass/sass_extensions/functions/display.rbc +341 -107
  85. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  86. data/lib/compass/sass_extensions/functions/env.rbc +299 -0
  87. data/lib/compass/sass_extensions/functions/font_files.rbc +540 -123
  88. data/lib/compass/sass_extensions/functions/gradient_support.rbc +379 -167
  89. data/lib/compass/sass_extensions/functions/image_size.rbc +715 -400
  90. data/lib/compass/sass_extensions/functions/inline_image.rbc +152 -98
  91. data/lib/compass/sass_extensions/functions/lists.rb +5 -0
  92. data/lib/compass/sass_extensions/functions/lists.rbc +75 -39
  93. data/lib/compass/sass_extensions/functions/selectors.rbc +36 -28
  94. data/lib/compass/sass_extensions/functions/sprites.rbc +255 -233
  95. data/lib/compass/sass_extensions/functions/trig.rbc +53 -51
  96. data/lib/compass/sass_extensions/functions/urls.rbc +3151 -1044
  97. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  98. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +63 -47
  99. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +36 -16
  100. data/lib/compass/sass_extensions/sprites.rbc +93 -13
  101. data/lib/compass/sass_extensions/sprites/engines.rbc +615 -6
  102. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +260 -94
  103. data/lib/compass/sass_extensions/sprites/image.rbc +694 -316
  104. data/lib/compass/sass_extensions/sprites/image_methods.rbc +900 -0
  105. data/lib/compass/sass_extensions/sprites/image_row.rbc +1168 -0
  106. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +3236 -0
  107. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +2067 -0
  108. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +714 -3641
  109. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +1 -1
  110. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +3190 -0
  111. data/lib/compass/sprite_importer.rbc +1125 -1495
  112. data/lib/compass/util.rbc +19 -11
  113. data/lib/compass/version.rbc +53 -25
  114. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +1 -0
  115. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +3 -0
  116. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  117. data/test/fixtures/stylesheets/compass/css/reset.css +0 -1
  118. data/test/fixtures/stylesheets/compass/css/user-interface.css +5 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +5 -0
  120. data/test/fixtures/stylesheets/envtest/tmp/env.css +2 -0
  121. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +25 -0
  122. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +5 -0
  123. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +3 -0
  124. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +6 -0
  125. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +5 -0
  126. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +3 -0
  127. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +68 -0
  128. data/test/helpers/command_line.rbc +2820 -0
  129. data/test/helpers/diff.rbc +1104 -0
  130. data/test/helpers/io.rbc +962 -0
  131. data/test/helpers/rails.rbc +1116 -0
  132. data/test/helpers/test_case.rbc +1255 -0
  133. data/test/integrations/compass_test.rbc +6589 -0
  134. data/test/integrations/rails_integration_test.rbc +1342 -0
  135. data/test/integrations/sprites_test.rbc +6192 -0
  136. data/test/test_helper.rbc +1694 -0
  137. data/test/units/actions_test.rbc +644 -0
  138. data/test/units/command_line_test.rbc +1532 -0
  139. data/test/units/compass_png_test.rbc +0 -0
  140. data/test/units/configuration_test.rbc +3833 -0
  141. data/test/units/rails_configuration_test.rbc +1032 -0
  142. data/test/units/sass_extensions_test.rb +5 -0
  143. data/test/units/sass_extensions_test.rbc +3586 -0
  144. data/test/units/sprites/engine_test.rbc +962 -0
  145. data/test/units/sprites/image_row_test.rbc +1578 -0
  146. data/test/units/sprites/image_test.rbc +2836 -0
  147. data/test/units/sprites/importer_test.rbc +2620 -0
  148. data/test/units/sprites/row_fitter_test.rbc +1479 -0
  149. data/test/units/sprites/sprite_command_test.rbc +1147 -0
  150. data/test/units/sprites/sprite_map_test.rbc +6515 -0
  151. metadata +157 -51
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -141,8 +141,8 @@ I
141
141
  I
142
142
  13
143
143
  x
144
- 60
145
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
144
+ 62
145
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
146
146
  p
147
147
  1
148
148
  x
@@ -471,7 +471,7 @@ x
471
471
  5
472
472
  raise
473
473
  p
474
- 9
474
+ 13
475
475
  I
476
476
  -1
477
477
  I
@@ -481,6 +481,10 @@ I
481
481
  I
482
482
  9
483
483
  I
484
+ 1d
485
+ I
486
+ 0
487
+ I
484
488
  22
485
489
  I
486
490
  a
@@ -489,10 +493,14 @@ I
489
493
  I
490
494
  b
491
495
  I
496
+ 4a
497
+ I
498
+ 0
499
+ I
492
500
  4e
493
501
  x
494
- 60
495
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
502
+ 62
503
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
496
504
  p
497
505
  1
498
506
  x
@@ -659,8 +667,8 @@ I
659
667
  I
660
668
  11
661
669
  x
662
- 60
663
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
670
+ 62
671
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
664
672
  p
665
673
  0
666
674
  x
@@ -721,8 +729,8 @@ I
721
729
  I
722
730
  a
723
731
  x
724
- 60
725
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
732
+ 62
733
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
726
734
  p
727
735
  0
728
736
  p
@@ -738,8 +746,8 @@ I
738
746
  I
739
747
  34
740
748
  x
741
- 60
742
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
749
+ 62
750
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
743
751
  p
744
752
  1
745
753
  x
@@ -762,8 +770,8 @@ I
762
770
  I
763
771
  22
764
772
  x
765
- 60
766
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
773
+ 62
774
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
767
775
  p
768
776
  0
769
777
  x
@@ -786,8 +794,8 @@ I
786
794
  I
787
795
  25
788
796
  x
789
- 60
790
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
797
+ 62
798
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
791
799
  p
792
800
  0
793
801
  x
@@ -802,8 +810,8 @@ I
802
810
  I
803
811
  1c
804
812
  x
805
- 60
806
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
813
+ 62
814
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
807
815
  p
808
816
  0
809
817
  x
@@ -822,7 +830,7 @@ I
822
830
  I
823
831
  2d
824
832
  x
825
- 60
826
- /Users/chris/Projects/compass/lib/compass/app_integration.rb
833
+ 62
834
+ /Users/crispee/Projects/compass/lib/compass/app_integration.rb
827
835
  p
828
836
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -88,15 +88,19 @@ x
88
88
  7
89
89
  require
90
90
  p
91
- 3
91
+ 5
92
92
  I
93
93
  0
94
94
  I
95
95
  1
96
96
  I
97
+ 2c
98
+ I
99
+ 0
100
+ I
97
101
  2f
98
102
  x
99
- 65
100
- /Users/chris/Projects/compass/lib/compass/app_integration/merb.rb
103
+ 67
104
+ /Users/crispee/Projects/compass/lib/compass/app_integration/merb.rb
101
105
  p
102
106
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 333337424968067900
2
+ 9595534255132031488
3
3
  x
4
4
  M
5
5
  1
@@ -180,8 +180,8 @@ I
180
180
  I
181
181
  13
182
182
  x
183
- 66
184
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
183
+ 68
184
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
185
185
  p
186
186
  1
187
187
  x
@@ -340,7 +340,7 @@ x
340
340
  5
341
341
  Rails
342
342
  i
343
- 121
343
+ 163
344
344
  5
345
345
  66
346
346
  5
@@ -461,6 +461,48 @@ i
461
461
  49
462
462
  4
463
463
  4
464
+ 15
465
+ 99
466
+ 7
467
+ 19
468
+ 7
469
+ 20
470
+ 65
471
+ 67
472
+ 49
473
+ 3
474
+ 0
475
+ 49
476
+ 4
477
+ 4
478
+ 15
479
+ 99
480
+ 7
481
+ 21
482
+ 7
483
+ 22
484
+ 65
485
+ 67
486
+ 49
487
+ 3
488
+ 0
489
+ 49
490
+ 4
491
+ 4
492
+ 15
493
+ 99
494
+ 7
495
+ 23
496
+ 7
497
+ 24
498
+ 65
499
+ 67
500
+ 49
501
+ 3
502
+ 0
503
+ 49
504
+ 4
505
+ 4
464
506
  11
465
507
  I
466
508
  5
@@ -472,7 +514,7 @@ I
472
514
  0
473
515
  n
474
516
  p
475
- 19
517
+ 25
476
518
  x
477
519
  6
478
520
  extend
@@ -542,8 +584,8 @@ f
542
584
  I
543
585
  e
544
586
  x
545
- 66
546
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
587
+ 68
588
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
547
589
  p
548
590
  0
549
591
  x
@@ -657,8 +699,8 @@ I
657
699
  I
658
700
  31
659
701
  x
660
- 66
661
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
702
+ 68
703
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
662
704
  p
663
705
  0
664
706
  x
@@ -716,8 +758,8 @@ I
716
758
  I
717
759
  b
718
760
  x
719
- 66
720
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
761
+ 68
762
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
721
763
  p
722
764
  1
723
765
  x
@@ -734,7 +776,7 @@ x
734
776
  13
735
777
  configuration
736
778
  i
737
- 41
779
+ 104
738
780
  45
739
781
  0
740
782
  1
@@ -769,24 +811,87 @@ i
769
811
  49
770
812
  4
771
813
  1
814
+ 19
815
+ 0
816
+ 15
817
+ 20
818
+ 0
772
819
  45
773
820
  8
774
821
  9
775
822
  49
776
823
  10
777
824
  1
825
+ 15
826
+ 45
827
+ 11
828
+ 12
829
+ 43
830
+ 13
831
+ 7
832
+ 14
833
+ 64
834
+ 49
835
+ 15
836
+ 1
837
+ 13
838
+ 10
839
+ 87
840
+ 15
841
+ 45
842
+ 11
843
+ 16
844
+ 43
845
+ 13
846
+ 7
847
+ 17
848
+ 64
849
+ 49
850
+ 15
851
+ 1
852
+ 13
853
+ 10
854
+ 87
855
+ 15
856
+ 45
857
+ 11
858
+ 18
859
+ 43
860
+ 13
861
+ 7
862
+ 19
863
+ 64
864
+ 49
865
+ 15
866
+ 1
867
+ 9
868
+ 99
869
+ 20
870
+ 0
871
+ 45
872
+ 20
873
+ 21
874
+ 49
875
+ 10
876
+ 1
877
+ 8
878
+ 100
879
+ 1
880
+ 15
881
+ 20
882
+ 0
778
883
  11
779
884
  I
780
- 3
885
+ 4
781
886
  I
782
- 0
887
+ 1
783
888
  I
784
889
  0
785
890
  I
786
891
  0
787
892
  n
788
893
  p
789
- 11
894
+ 22
790
895
  x
791
896
  7
792
897
  Compass
@@ -816,8 +921,33 @@ n
816
921
  x
817
922
  6
818
923
  extend
924
+ x
925
+ 4
926
+ Sass
927
+ n
928
+ x
929
+ 4
930
+ Util
931
+ s
932
+ 5
933
+ 3.1.0
934
+ x
935
+ 7
936
+ ap_geq?
937
+ n
938
+ s
939
+ 8
940
+ 3.1.0.rc
941
+ n
942
+ s
943
+ 10
944
+ 3.1.0.beta
945
+ x
946
+ 38
947
+ ConfigurationDefaultsWithAssetPipeline
948
+ n
819
949
  p
820
- 9
950
+ 13
821
951
  I
822
952
  -1
823
953
  I
@@ -827,20 +957,31 @@ I
827
957
  I
828
958
  1b
829
959
  I
830
- 22
960
+ 25
831
961
  I
832
962
  1c
833
963
  I
834
- 25
964
+ 2e
835
965
  I
836
- 1b
966
+ 1d
837
967
  I
838
- 29
968
+ 64
969
+ I
970
+ 0
971
+ I
972
+ 65
973
+ I
974
+ 1e
975
+ I
976
+ 68
839
977
  x
840
- 66
841
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
978
+ 68
979
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
842
980
  p
843
- 0
981
+ 1
982
+ x
983
+ 6
984
+ config
844
985
  x
845
986
  3
846
987
  env
@@ -888,20 +1029,24 @@ x
888
1029
  11
889
1030
  development
890
1031
  p
891
- 5
1032
+ 7
892
1033
  I
893
1034
  -1
894
1035
  I
895
- 1f
1036
+ 21
896
1037
  I
897
1038
  0
898
1039
  I
899
- 20
1040
+ 22
1041
+ I
1042
+ d
1043
+ I
1044
+ 0
900
1045
  I
901
1046
  e
902
1047
  x
903
- 66
904
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1048
+ 68
1049
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
905
1050
  p
906
1051
  0
907
1052
  x
@@ -1054,36 +1199,40 @@ x
1054
1199
  2
1055
1200
  ==
1056
1201
  p
1057
- 13
1202
+ 15
1058
1203
  I
1059
1204
  -1
1060
1205
  I
1061
- 23
1206
+ 25
1062
1207
  I
1063
1208
  0
1064
1209
  I
1065
- 24
1210
+ 26
1066
1211
  I
1067
1212
  2b
1068
1213
  I
1069
- 25
1214
+ 27
1070
1215
  I
1071
1216
  36
1072
1217
  I
1073
- 26
1218
+ 28
1074
1219
  I
1075
1220
  53
1076
1221
  I
1077
- 27
1222
+ 29
1078
1223
  I
1079
1224
  5d
1080
1225
  I
1081
- 26
1226
+ 28
1227
+ I
1228
+ 5e
1229
+ I
1230
+ 0
1082
1231
  I
1083
1232
  5f
1084
1233
  x
1085
- 66
1086
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1234
+ 68
1235
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1087
1236
  p
1088
1237
  0
1089
1238
  x
@@ -1219,65 +1368,61 @@ x
1219
1368
  vm_const_defined
1220
1369
  n
1221
1370
  p
1222
- 13
1371
+ 15
1223
1372
  I
1224
1373
  -1
1225
1374
  I
1226
- 2b
1375
+ 2d
1227
1376
  I
1228
1377
  0
1229
1378
  I
1230
- 2c
1379
+ 2e
1231
1380
  I
1232
1381
  2b
1233
1382
  I
1234
- 2d
1383
+ 2f
1235
1384
  I
1236
1385
  33
1237
1386
  I
1238
- 2e
1387
+ 30
1239
1388
  I
1240
1389
  50
1241
1390
  I
1242
- 2f
1391
+ 31
1243
1392
  I
1244
1393
  55
1245
1394
  I
1246
- 2e
1395
+ 30
1396
+ I
1397
+ 56
1398
+ I
1399
+ 0
1247
1400
  I
1248
1401
  57
1249
1402
  x
1250
- 66
1251
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1403
+ 68
1404
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1252
1405
  p
1253
1406
  0
1254
1407
  x
1255
- 11
1256
- initialize!
1408
+ 22
1409
+ check_for_double_boot!
1257
1410
  M
1258
1411
  1
1259
1412
  n
1260
1413
  n
1261
1414
  x
1262
- 11
1263
- initialize!
1415
+ 22
1416
+ check_for_double_boot!
1264
1417
  i
1265
- 98
1266
- 23
1267
- 0
1268
- 10
1269
- 8
1270
- 1
1271
- 19
1272
- 0
1273
- 15
1418
+ 26
1274
1419
  5
1275
1420
  47
1276
1421
  49
1277
1422
  0
1278
1423
  0
1279
1424
  9
1280
- 28
1425
+ 20
1281
1426
  45
1282
1427
  1
1283
1428
  2
@@ -1290,76 +1435,442 @@ i
1290
1435
  5
1291
1436
  1
1292
1437
  8
1293
- 33
1438
+ 25
1294
1439
  5
1295
1440
  47
1296
1441
  49
1297
1442
  6
1298
1443
  0
1299
- 15
1300
- 20
1444
+ 11
1445
+ I
1446
+ 2
1447
+ I
1301
1448
  0
1302
- 13
1303
- 10
1304
- 51
1305
- 15
1306
- 45
1307
- 1
1308
- 7
1309
- 5
1310
- 48
1311
- 8
1312
- 49
1313
- 9
1314
- 1
1315
- 19
1449
+ I
1316
1450
  0
1317
- 15
1318
- 45
1319
- 1
1320
- 10
1321
- 20
1451
+ I
1322
1452
  0
1323
- 44
1324
- 43
1325
- 11
1326
- 79
1327
- 49
1328
- 12
1329
- 1
1330
- 13
1453
+ n
1454
+ p
1331
1455
  7
1332
- 13
1456
+ x
1457
+ 7
1458
+ booted?
1459
+ x
1460
+ 7
1461
+ Compass
1462
+ n
1463
+ x
1464
+ 4
1465
+ Util
1466
+ s
1467
+ 93
1468
+ Warning: Compass was booted twice. Compass has a Railtie now; please remove your initializer.
1469
+ x
1470
+ 12
1471
+ compass_warn
1472
+ x
1473
+ 7
1474
+ booted!
1475
+ p
1476
+ 11
1477
+ I
1478
+ -1
1479
+ I
1480
+ 35
1481
+ I
1482
+ 0
1483
+ I
1484
+ 36
1485
+ I
1333
1486
  7
1487
+ I
1488
+ 37
1489
+ I
1334
1490
  14
1491
+ I
1492
+ 39
1493
+ I
1494
+ 19
1495
+ I
1496
+ 0
1497
+ I
1498
+ 1a
1499
+ x
1500
+ 68
1501
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1502
+ p
1503
+ 0
1504
+ x
1505
+ 20
1506
+ sass_plugin_enabled?
1507
+ M
1508
+ 1
1509
+ n
1510
+ n
1511
+ x
1512
+ 20
1513
+ sass_plugin_enabled?
1514
+ i
1515
+ 71
1516
+ 45
1517
+ 0
1518
+ 1
1519
+ 43
1520
+ 2
1521
+ 7
1522
+ 3
1523
+ 64
1335
1524
  49
1525
+ 4
1526
+ 1
1527
+ 9
1528
+ 16
1529
+ 1
1530
+ 8
1531
+ 70
1532
+ 26
1533
+ 93
1534
+ 0
1336
1535
  15
1337
- 2
1536
+ 29
1537
+ 35
1538
+ 0
1539
+ 45
1540
+ 0
1541
+ 5
1542
+ 7
1543
+ 6
1544
+ 3
1545
+ 98
1546
+ 7
1547
+ 3
1548
+ 30
1549
+ 8
1550
+ 41
1551
+ 25
1552
+ 92
1553
+ 0
1554
+ 27
1555
+ 8
1556
+ 46
1557
+ 15
1558
+ 7
1559
+ 8
1560
+ 8
1561
+ 47
1562
+ 1
1563
+ 13
1564
+ 9
1565
+ 70
1338
1566
  15
1567
+ 45
1568
+ 0
1569
+ 9
1570
+ 43
1571
+ 6
1339
1572
  49
1340
- 16
1573
+ 10
1574
+ 0
1575
+ 7
1576
+ 11
1577
+ 49
1578
+ 12
1579
+ 1
1580
+ 10
1581
+ 69
1341
1582
  2
1342
- 15
1583
+ 8
1584
+ 70
1585
+ 3
1586
+ 11
1587
+ I
1588
+ 4
1589
+ I
1590
+ 0
1591
+ I
1592
+ 0
1593
+ I
1594
+ 0
1595
+ n
1596
+ p
1597
+ 13
1598
+ x
1599
+ 4
1600
+ Sass
1601
+ n
1602
+ x
1603
+ 4
1604
+ Util
1605
+ s
1606
+ 10
1607
+ 3.1.0.beta
1608
+ x
1609
+ 7
1610
+ ap_geq?
1611
+ n
1612
+ x
1613
+ 6
1614
+ Plugin
1615
+ x
1616
+ 22
1617
+ vm_const_defined_under
1618
+ s
1619
+ 8
1620
+ constant
1621
+ n
1622
+ x
1623
+ 7
1624
+ options
1625
+ x
1626
+ 12
1627
+ never_update
1628
+ x
1629
+ 2
1630
+ []
1631
+ p
1632
+ 9
1633
+ I
1634
+ -1
1635
+ I
1636
+ 3d
1637
+ I
1638
+ 0
1639
+ I
1640
+ 3e
1641
+ I
1642
+ 10
1643
+ I
1644
+ 3f
1645
+ I
1646
+ 46
1647
+ I
1648
+ 0
1649
+ I
1650
+ 47
1651
+ x
1652
+ 68
1653
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1654
+ p
1655
+ 0
1656
+ x
1657
+ 26
1658
+ rails_compilation_enabled?
1659
+ M
1660
+ 1
1661
+ n
1662
+ n
1663
+ x
1664
+ 26
1665
+ rails_compilation_enabled?
1666
+ i
1667
+ 47
1343
1668
  45
1669
+ 0
1344
1670
  1
1345
- 17
1671
+ 43
1672
+ 2
1673
+ 7
1674
+ 3
1675
+ 64
1346
1676
  49
1347
- 18
1677
+ 4
1678
+ 1
1679
+ 13
1680
+ 9
1681
+ 46
1682
+ 15
1683
+ 26
1684
+ 93
1348
1685
  0
1349
1686
  15
1687
+ 29
1688
+ 34
1689
+ 0
1350
1690
  45
1691
+ 0
1692
+ 5
1693
+ 7
1694
+ 6
1695
+ 3
1696
+ 98
1697
+ 7
1698
+ 3
1699
+ 30
1700
+ 8
1701
+ 40
1702
+ 25
1703
+ 92
1704
+ 0
1705
+ 27
1706
+ 8
1707
+ 45
1708
+ 15
1709
+ 7
1710
+ 8
1711
+ 8
1712
+ 46
1713
+ 1
1714
+ 11
1715
+ I
1716
+ 4
1717
+ I
1718
+ 0
1719
+ I
1720
+ 0
1721
+ I
1722
+ 0
1723
+ n
1724
+ p
1725
+ 9
1726
+ x
1727
+ 4
1728
+ Sass
1729
+ n
1730
+ x
1731
+ 4
1732
+ Util
1733
+ s
1734
+ 10
1735
+ 3.1.0.beta
1736
+ x
1737
+ 7
1738
+ ap_geq?
1739
+ n
1740
+ x
1741
+ 5
1742
+ Rails
1743
+ x
1744
+ 22
1745
+ vm_const_defined_under
1746
+ s
1747
+ 8
1748
+ constant
1749
+ p
1750
+ 5
1751
+ I
1752
+ -1
1753
+ I
1754
+ 43
1755
+ I
1756
+ 0
1757
+ I
1758
+ 44
1759
+ I
1760
+ 2f
1761
+ x
1762
+ 68
1763
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1764
+ p
1765
+ 0
1766
+ x
1767
+ 11
1768
+ initialize!
1769
+ M
1770
+ 1
1771
+ n
1772
+ n
1773
+ x
1774
+ 11
1775
+ initialize!
1776
+ i
1777
+ 97
1778
+ 23
1779
+ 0
1780
+ 10
1781
+ 8
1351
1782
  1
1352
1783
  19
1784
+ 0
1785
+ 15
1786
+ 5
1787
+ 47
1353
1788
  49
1789
+ 0
1790
+ 0
1791
+ 15
1354
1792
  20
1355
1793
  0
1794
+ 13
1795
+ 10
1796
+ 31
1356
1797
  15
1357
1798
  45
1358
1799
  1
1359
- 21
1800
+ 2
1801
+ 5
1802
+ 48
1803
+ 3
1360
1804
  49
1361
- 22
1805
+ 4
1806
+ 1
1807
+ 19
1808
+ 0
1809
+ 15
1810
+ 45
1811
+ 1
1812
+ 5
1813
+ 20
1362
1814
  0
1815
+ 44
1816
+ 43
1817
+ 6
1818
+ 79
1819
+ 49
1820
+ 7
1821
+ 1
1822
+ 13
1823
+ 7
1824
+ 8
1825
+ 7
1826
+ 9
1827
+ 49
1828
+ 10
1829
+ 2
1830
+ 15
1831
+ 49
1832
+ 11
1833
+ 2
1834
+ 15
1835
+ 45
1836
+ 1
1837
+ 12
1838
+ 49
1839
+ 13
1840
+ 0
1841
+ 15
1842
+ 45
1843
+ 1
1844
+ 14
1845
+ 49
1846
+ 15
1847
+ 0
1848
+ 15
1849
+ 5
1850
+ 47
1851
+ 49
1852
+ 16
1853
+ 0
1854
+ 13
1855
+ 10
1856
+ 85
1857
+ 15
1858
+ 5
1859
+ 47
1860
+ 49
1861
+ 17
1862
+ 0
1863
+ 9
1864
+ 95
1865
+ 45
1866
+ 1
1867
+ 18
1868
+ 49
1869
+ 19
1870
+ 0
1871
+ 8
1872
+ 96
1873
+ 1
1363
1874
  11
1364
1875
  I
1365
1876
  7
@@ -1371,29 +1882,16 @@ I
1371
1882
  1
1372
1883
  n
1373
1884
  p
1374
- 23
1885
+ 20
1375
1886
  x
1376
- 7
1377
- booted?
1887
+ 22
1888
+ check_for_double_boot!
1378
1889
  x
1379
1890
  7
1380
1891
  Compass
1381
1892
  n
1382
1893
  x
1383
1894
  4
1384
- Util
1385
- s
1386
- 92
1387
- Warning: Compass was booted twice. Compass has a Railtie now; please remove your intializer.
1388
- x
1389
- 12
1390
- compass_warn
1391
- x
1392
- 7
1393
- booted!
1394
- n
1395
- x
1396
- 4
1397
1895
  root
1398
1896
  x
1399
1897
  25
@@ -1425,60 +1923,62 @@ n
1425
1923
  x
1426
1924
  22
1427
1925
  configure_sass_plugin!
1926
+ x
1927
+ 20
1928
+ sass_plugin_enabled?
1929
+ x
1930
+ 26
1931
+ rails_compilation_enabled?
1428
1932
  n
1429
1933
  x
1430
1934
  28
1431
1935
  handle_configuration_change!
1432
1936
  p
1433
- 19
1937
+ 17
1434
1938
  I
1435
1939
  -1
1436
1940
  I
1437
- 33
1941
+ 48
1438
1942
  I
1439
1943
  8
1440
1944
  I
1441
- 34
1442
- I
1443
- f
1945
+ 49
1444
1946
  I
1445
- 35
1947
+ e
1446
1948
  I
1447
- 1c
1949
+ 4a
1448
1950
  I
1449
- 37
1951
+ 20
1450
1952
  I
1451
- 22
1953
+ 4b
1452
1954
  I
1453
1955
  39
1454
1956
  I
1455
- 34
1957
+ 4c
1456
1958
  I
1457
- 3a
1959
+ 40
1458
1960
  I
1459
1961
  4d
1460
1962
  I
1461
- 3b
1462
- I
1463
- 54
1963
+ 47
1464
1964
  I
1465
- 3c
1965
+ 4e
1466
1966
  I
1467
- 5b
1967
+ 60
1468
1968
  I
1469
- 3d
1969
+ 0
1470
1970
  I
1471
- 62
1971
+ 61
1472
1972
  x
1473
- 66
1474
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1973
+ 68
1974
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1475
1975
  p
1476
1976
  1
1477
1977
  x
1478
1978
  6
1479
1979
  config
1480
1980
  p
1481
- 19
1981
+ 25
1482
1982
  I
1483
1983
  2
1484
1984
  I
@@ -1502,24 +2002,36 @@ I
1502
2002
  I
1503
2003
  41
1504
2004
  I
1505
- 1f
2005
+ 21
1506
2006
  I
1507
2007
  4f
1508
2008
  I
1509
- 23
2009
+ 25
1510
2010
  I
1511
2011
  5d
1512
2012
  I
1513
- 2b
2013
+ 2d
1514
2014
  I
1515
2015
  6b
1516
2016
  I
1517
- 33
2017
+ 35
1518
2018
  I
1519
2019
  79
2020
+ I
2021
+ 3d
2022
+ I
2023
+ 87
2024
+ I
2025
+ 43
2026
+ I
2027
+ 95
2028
+ I
2029
+ 48
2030
+ I
2031
+ a3
1520
2032
  x
1521
- 66
1522
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2033
+ 68
2034
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1523
2035
  p
1524
2036
  0
1525
2037
  x
@@ -1534,8 +2046,8 @@ a
1534
2046
  I
1535
2047
  1c
1536
2048
  x
1537
- 66
1538
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2049
+ 68
2050
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1539
2051
  p
1540
2052
  0
1541
2053
  x
@@ -1550,15 +2062,15 @@ I
1550
2062
  I
1551
2063
  1c
1552
2064
  x
1553
- 66
1554
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2065
+ 68
2066
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1555
2067
  p
1556
2068
  0
1557
2069
  x
1558
2070
  13
1559
2071
  attach_method
1560
2072
  p
1561
- 7
2073
+ 9
1562
2074
  I
1563
2075
  0
1564
2076
  I
@@ -1568,13 +2080,17 @@ e
1568
2080
  I
1569
2081
  5
1570
2082
  I
2083
+ 3a
2084
+ I
2085
+ 0
2086
+ I
1571
2087
  3b
1572
2088
  I
1573
2089
  8
1574
2090
  I
1575
2091
  57
1576
2092
  x
1577
- 66
1578
- /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2093
+ 68
2094
+ /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1579
2095
  p
1580
2096
  0