compass 0.11.7 → 0.12.alpha.0

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 (207) hide show
  1. data/Rakefile +10 -0
  2. data/VERSION.yml +4 -3
  3. data/bin/compass +1 -5
  4. data/features/command_line.feature +17 -17
  5. data/features/extensions.feature +0 -6
  6. data/features/step_definitions/command_line_steps.rb +1 -2
  7. data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +35 -5
  8. data/frameworks/compass/stylesheets/compass/css3/_images.scss +6 -6
  9. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +3 -12
  10. data/frameworks/compass/stylesheets/compass/typography/lists/_bullets.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-block-list.scss +11 -14
  12. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +5 -5
  13. data/frameworks/compass/templates/pie/PIE.htc +64 -83
  14. data/lib/compass.rbc +36 -42
  15. data/lib/compass/actions.rb +1 -0
  16. data/lib/compass/actions.rbc +85 -244
  17. data/lib/compass/app_integration.rbc +20 -28
  18. data/lib/compass/app_integration/merb.rbc +4 -8
  19. data/lib/compass/app_integration/rails.rb +22 -5
  20. data/lib/compass/app_integration/rails.rbc +142 -658
  21. data/lib/compass/app_integration/rails/actionpack2x.rb +10 -0
  22. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/action_controller.rb +0 -0
  23. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/sass_plugin.rb +0 -0
  24. data/lib/compass/app_integration/rails/{actionpack2 → actionpack2x}/urls.rb +0 -0
  25. data/lib/compass/app_integration/rails/actionpack30.rb +11 -0
  26. data/lib/compass/app_integration/rails/{actionpack3 → actionpack30}/railtie.rb +0 -0
  27. data/lib/compass/app_integration/rails/actionpack31.rb +5 -0
  28. data/lib/compass/app_integration/rails/actionpack31/helpers.rb +5 -0
  29. data/lib/compass/app_integration/rails/actionpack31/railtie.rb +89 -0
  30. data/lib/compass/app_integration/rails/configuration_defaults.rb +54 -14
  31. data/lib/compass/app_integration/rails/configuration_defaults.rbc +324 -1081
  32. data/lib/compass/app_integration/rails/installer.rbc +61 -145
  33. data/lib/compass/app_integration/rails/runtime.rb +6 -16
  34. data/lib/compass/app_integration/stand_alone.rbc +15 -15
  35. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +23 -23
  36. data/lib/compass/app_integration/stand_alone/installer.rbc +32 -52
  37. data/lib/compass/browser_support.rbc +23 -35
  38. data/lib/compass/commands/clean_project.rb +1 -1
  39. data/lib/compass/commands/project_stats.rb +7 -7
  40. data/lib/compass/commands/sprite.rb +4 -3
  41. data/lib/compass/compiler.rb +2 -2
  42. data/lib/compass/compiler.rbc +398 -591
  43. data/lib/compass/configuration.rb +2 -0
  44. data/lib/compass/configuration.rbc +78 -134
  45. data/lib/compass/configuration/adapters.rbc +40 -98
  46. data/lib/compass/configuration/comments.rb +5 -1
  47. data/lib/compass/configuration/comments.rbc +51 -132
  48. data/lib/compass/configuration/data.rb +26 -10
  49. data/lib/compass/configuration/data.rbc +536 -526
  50. data/lib/compass/configuration/defaults.rb +24 -1
  51. data/lib/compass/configuration/defaults.rbc +187 -762
  52. data/lib/compass/configuration/file_data.rb +0 -22
  53. data/lib/compass/configuration/file_data.rbc +125 -37
  54. data/lib/compass/configuration/helpers.rb +9 -8
  55. data/lib/compass/configuration/helpers.rbc +153 -433
  56. data/lib/compass/configuration/inheritance.rb +13 -0
  57. data/lib/compass/configuration/inheritance.rbc +165 -412
  58. data/lib/compass/configuration/paths.rbc +9 -9
  59. data/lib/compass/configuration/serialization.rb +1 -0
  60. data/lib/compass/configuration/serialization.rbc +84 -151
  61. data/lib/compass/dependencies.rbc +4 -16
  62. data/lib/compass/errors.rbc +5 -5
  63. data/lib/compass/frameworks.rb +4 -10
  64. data/lib/compass/frameworks.rbc +66 -118
  65. data/lib/compass/quick_cache.rbc +8 -12
  66. data/lib/compass/sass_extensions.rbc +4 -8
  67. data/lib/compass/sass_extensions/functions.rbc +57 -90
  68. data/lib/compass/sass_extensions/functions/colors.rbc +18 -22
  69. data/lib/compass/sass_extensions/functions/constants.rbc +25 -45
  70. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +36 -48
  71. data/lib/compass/sass_extensions/functions/display.rbc +107 -341
  72. data/lib/compass/sass_extensions/functions/enumerate.rbc +9 -9
  73. data/lib/compass/sass_extensions/functions/font_files.rbc +125 -542
  74. data/lib/compass/sass_extensions/functions/gradient_support.rbc +167 -379
  75. data/lib/compass/sass_extensions/functions/image_size.rb +10 -2
  76. data/lib/compass/sass_extensions/functions/image_size.rbc +400 -715
  77. data/lib/compass/sass_extensions/functions/inline_image.rbc +98 -152
  78. data/lib/compass/sass_extensions/functions/lists.rb +0 -5
  79. data/lib/compass/sass_extensions/functions/lists.rbc +39 -75
  80. data/lib/compass/sass_extensions/functions/selectors.rbc +28 -36
  81. data/lib/compass/sass_extensions/functions/sprites.rb +5 -7
  82. data/lib/compass/sass_extensions/functions/sprites.rbc +233 -255
  83. data/lib/compass/sass_extensions/functions/trig.rb +2 -1
  84. data/lib/compass/sass_extensions/functions/trig.rbc +51 -53
  85. data/lib/compass/sass_extensions/functions/urls.rb +171 -80
  86. data/lib/compass/sass_extensions/functions/urls.rbc +1051 -3158
  87. data/lib/compass/sass_extensions/monkey_patches.rbc +5 -5
  88. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +47 -63
  89. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +16 -36
  90. data/lib/compass/sass_extensions/sprites.rb +3 -1
  91. data/lib/compass/sass_extensions/sprites.rbc +13 -93
  92. data/lib/compass/sass_extensions/sprites/engines.rbc +6 -615
  93. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +94 -260
  94. data/lib/compass/sass_extensions/sprites/image.rb +23 -11
  95. data/lib/compass/sass_extensions/sprites/image.rbc +313 -691
  96. data/lib/compass/sass_extensions/sprites/image_row.rb +47 -0
  97. data/lib/compass/sass_extensions/sprites/layout_methods.rb +117 -0
  98. data/lib/compass/sass_extensions/sprites/row_fitter.rb +86 -0
  99. data/lib/compass/sass_extensions/sprites/sprite_map.rb +18 -4
  100. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +3635 -708
  101. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +5 -17
  102. data/lib/compass/sprite_importer.rb +38 -62
  103. data/lib/compass/sprite_importer.rbc +1495 -1125
  104. data/lib/compass/util.rbc +11 -19
  105. data/lib/compass/version.rbc +25 -53
  106. data/test/fixtures/sprites/public/images/image_row/large.png +0 -0
  107. data/test/fixtures/sprites/public/images/image_row/large_square.png +0 -0
  108. data/test/fixtures/sprites/public/images/image_row/medium.png +0 -0
  109. data/test/fixtures/sprites/public/images/image_row/small.png +0 -0
  110. data/test/fixtures/sprites/public/images/image_row/tall.png +0 -0
  111. data/test/fixtures/stylesheets/compass/css/lists.css +7 -7
  112. data/test/fixtures/stylesheets/compass/css/reset.css +1 -0
  113. data/test/fixtures/stylesheets/compass/css/sprites.css +248 -248
  114. data/test/fixtures/stylesheets/compass/images/flag-s8c3c755a68.png +0 -0
  115. data/test/integrations/sprites_test.rb +115 -3
  116. data/test/test_helper.rb +29 -1
  117. data/test/tmp/compass_rails/public/images/selectors-sef52c5c63a.png +0 -0
  118. data/test/units/configuration_test.rb +2 -5
  119. data/test/units/rails_configuration_test.rb +50 -0
  120. data/test/units/sass_extensions_test.rb +17 -5
  121. data/test/units/sprites/image_row_test.rb +57 -0
  122. data/test/units/sprites/image_test.rb +53 -45
  123. data/test/units/sprites/importer_test.rb +31 -12
  124. data/test/units/sprites/row_fitter_test.rb +66 -0
  125. data/test/units/sprites/sprite_command_test.rb +1 -11
  126. data/test/units/sprites/sprite_map_test.rb +122 -16
  127. metadata +38 -149
  128. data/bin/compass.compiled.rbc +0 -707
  129. data/examples/compass/compass_app_log.txt +0 -6
  130. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +0 -19
  131. data/lib/compass/commands.rbc +0 -307
  132. data/lib/compass/commands/base.rbc +0 -1044
  133. data/lib/compass/commands/clean_project.rbc +0 -1856
  134. data/lib/compass/commands/create_project.rbc +0 -2691
  135. data/lib/compass/commands/default.rbc +0 -1677
  136. data/lib/compass/commands/generate_grid_background.rbc +0 -1939
  137. data/lib/compass/commands/help.rbc +0 -1921
  138. data/lib/compass/commands/imports.rbc +0 -969
  139. data/lib/compass/commands/installer_command.rbc +0 -807
  140. data/lib/compass/commands/interactive.rbc +0 -1341
  141. data/lib/compass/commands/list_frameworks.rbc +0 -1111
  142. data/lib/compass/commands/print_version.rbc +0 -2478
  143. data/lib/compass/commands/project_base.rbc +0 -2085
  144. data/lib/compass/commands/project_stats.rbc +0 -4202
  145. data/lib/compass/commands/registry.rbc +0 -1350
  146. data/lib/compass/commands/sprite.rbc +0 -2212
  147. data/lib/compass/commands/stamp_pattern.rbc +0 -2011
  148. data/lib/compass/commands/unpack_extension.rbc +0 -2348
  149. data/lib/compass/commands/update_project.rbc +0 -3002
  150. data/lib/compass/commands/validate_project.rbc +0 -1686
  151. data/lib/compass/commands/watch_project.rbc +0 -4155
  152. data/lib/compass/commands/write_configuration.rbc +0 -2896
  153. data/lib/compass/exec.rbc +0 -500
  154. data/lib/compass/exec/command_option_parser.rbc +0 -676
  155. data/lib/compass/exec/global_options_parser.rbc +0 -1306
  156. data/lib/compass/exec/helpers.rbc +0 -758
  157. data/lib/compass/exec/project_options_parser.rbc +0 -1515
  158. data/lib/compass/exec/sub_command_ui.rbc +0 -1191
  159. data/lib/compass/grid_builder.rbc +0 -0
  160. data/lib/compass/installers.rbc +0 -152
  161. data/lib/compass/installers/bare_installer.rbc +0 -939
  162. data/lib/compass/installers/base.rbc +0 -4427
  163. data/lib/compass/installers/manifest.rbc +0 -3335
  164. data/lib/compass/installers/manifest_installer.rbc +0 -1591
  165. data/lib/compass/installers/template_context.rbc +0 -1030
  166. data/lib/compass/logger.rbc +0 -2317
  167. data/lib/compass/sass_extensions/functions/env.rbc +0 -299
  168. data/lib/compass/sass_extensions/sprites/image_methods.rbc +0 -900
  169. data/lib/compass/sass_extensions/sprites/image_row.rbc +0 -1168
  170. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +0 -3236
  171. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +0 -2067
  172. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +0 -3190
  173. data/test/fixtures/extensions/only_stylesheets/compass_init.rb +0 -1
  174. data/test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss +0 -3
  175. data/test/fixtures/stylesheets/compass/css/user-interface.css +0 -5
  176. data/test/fixtures/stylesheets/compass/images/flag-s03c3b29b35.png +0 -0
  177. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +0 -5
  178. data/test/fixtures/stylesheets/envtest/tmp/env.css +0 -2
  179. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/config.rb +0 -25
  180. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/ie.scss +0 -5
  181. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/print.scss +0 -3
  182. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/sass/screen.scss +0 -6
  183. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/ie.css +0 -5
  184. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css +0 -3
  185. data/test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css +0 -68
  186. data/test/helpers/command_line.rbc +0 -2820
  187. data/test/helpers/diff.rbc +0 -1104
  188. data/test/helpers/io.rbc +0 -962
  189. data/test/helpers/rails.rbc +0 -1116
  190. data/test/helpers/test_case.rbc +0 -1255
  191. data/test/integrations/compass_test.rbc +0 -6589
  192. data/test/integrations/rails_integration_test.rbc +0 -1342
  193. data/test/integrations/sprites_test.rbc +0 -6192
  194. data/test/test_helper.rbc +0 -1694
  195. data/test/units/actions_test.rbc +0 -644
  196. data/test/units/command_line_test.rbc +0 -1532
  197. data/test/units/compass_png_test.rbc +0 -0
  198. data/test/units/configuration_test.rbc +0 -3833
  199. data/test/units/rails_configuration_test.rbc +0 -1032
  200. data/test/units/sass_extensions_test.rbc +0 -3586
  201. data/test/units/sprites/engine_test.rbc +0 -962
  202. data/test/units/sprites/image_row_test.rbc +0 -1578
  203. data/test/units/sprites/image_test.rbc +0 -2836
  204. data/test/units/sprites/importer_test.rbc +0 -2620
  205. data/test/units/sprites/row_fitter_test.rbc +0 -1479
  206. data/test/units/sprites/sprite_command_test.rbc +0 -1147
  207. data/test/units/sprites/sprite_map_test.rbc +0 -6515
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -141,8 +141,8 @@ I
141
141
  I
142
142
  13
143
143
  x
144
- 62
145
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
144
+ 60
145
+ /Users/chris/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
- 13
474
+ 9
475
475
  I
476
476
  -1
477
477
  I
@@ -481,10 +481,6 @@ I
481
481
  I
482
482
  9
483
483
  I
484
- 1d
485
- I
486
- 0
487
- I
488
484
  22
489
485
  I
490
486
  a
@@ -493,14 +489,10 @@ I
493
489
  I
494
490
  b
495
491
  I
496
- 4a
497
- I
498
- 0
499
- I
500
492
  4e
501
493
  x
502
- 62
503
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
494
+ 60
495
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
504
496
  p
505
497
  1
506
498
  x
@@ -667,8 +659,8 @@ I
667
659
  I
668
660
  11
669
661
  x
670
- 62
671
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
662
+ 60
663
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
672
664
  p
673
665
  0
674
666
  x
@@ -729,8 +721,8 @@ I
729
721
  I
730
722
  a
731
723
  x
732
- 62
733
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
724
+ 60
725
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
734
726
  p
735
727
  0
736
728
  p
@@ -746,8 +738,8 @@ I
746
738
  I
747
739
  34
748
740
  x
749
- 62
750
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
741
+ 60
742
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
751
743
  p
752
744
  1
753
745
  x
@@ -770,8 +762,8 @@ I
770
762
  I
771
763
  22
772
764
  x
773
- 62
774
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
765
+ 60
766
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
775
767
  p
776
768
  0
777
769
  x
@@ -794,8 +786,8 @@ I
794
786
  I
795
787
  25
796
788
  x
797
- 62
798
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
789
+ 60
790
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
799
791
  p
800
792
  0
801
793
  x
@@ -810,8 +802,8 @@ I
810
802
  I
811
803
  1c
812
804
  x
813
- 62
814
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
805
+ 60
806
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
815
807
  p
816
808
  0
817
809
  x
@@ -830,7 +822,7 @@ I
830
822
  I
831
823
  2d
832
824
  x
833
- 62
834
- /Users/crispee/Projects/compass/lib/compass/app_integration.rb
825
+ 60
826
+ /Users/chris/Projects/compass/lib/compass/app_integration.rb
835
827
  p
836
828
  0
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -88,19 +88,15 @@ x
88
88
  7
89
89
  require
90
90
  p
91
- 5
91
+ 3
92
92
  I
93
93
  0
94
94
  I
95
95
  1
96
96
  I
97
- 2c
98
- I
99
- 0
100
- I
101
97
  2f
102
98
  x
103
- 67
104
- /Users/crispee/Projects/compass/lib/compass/app_integration/merb.rb
99
+ 65
100
+ /Users/chris/Projects/compass/lib/compass/app_integration/merb.rb
105
101
  p
106
102
  0
@@ -24,8 +24,10 @@ module Compass
24
24
  end
25
25
 
26
26
  def configuration
27
- Compass::Configuration::Data.new('rails').
28
- extend(ConfigurationDefaults)
27
+ config = Compass::Configuration::Data.new('rails')
28
+ config.extend(ConfigurationDefaults)
29
+ config.extend(ConfigurationDefaultsWithAssetPipeline) if Sass::Util.ap_geq?('3.1.0') || Sass::Util.ap_geq?('3.1.0.rc') || Sass::Util.ap_geq?('3.1.0.beta')
30
+ config
29
31
  end
30
32
 
31
33
  def env
@@ -48,17 +50,32 @@ module Compass
48
50
  end
49
51
  end
50
52
 
51
- def initialize!(config = nil)
53
+ def check_for_double_boot!
52
54
  if booted?
53
- Compass::Util.compass_warn("Warning: Compass was booted twice. Compass has a Railtie now; please remove your intializer.")
55
+ Compass::Util.compass_warn("Warning: Compass was booted twice. Compass has a Railtie now; please remove your initializer.")
54
56
  else
55
57
  booted!
56
58
  end
59
+ end
60
+
61
+ def sass_plugin_enabled?
62
+ unless Sass::Util.ap_geq?('3.1.0.beta')
63
+ defined?(Sass::Plugin) && !Sass::Plugin.options[:never_update]
64
+ end
65
+ end
66
+
67
+ def rails_compilation_enabled?
68
+ Sass::Util.ap_geq?('3.1.0.beta') && defined?(Sass::Rails) # XXX check if there's some other way(s) to disable the asset pipeline.
69
+ end
70
+
71
+ # Rails 2.x projects use this in their compass initializer.
72
+ def initialize!(config = nil)
73
+ check_for_double_boot!
57
74
  config ||= Compass.detect_configuration_file(root)
58
75
  Compass.add_project_configuration(config, :project_type => :rails)
59
76
  Compass.discover_extensions!
60
77
  Compass.configure_sass_plugin!
61
- Compass.handle_configuration_change!
78
+ Compass.handle_configuration_change! if sass_plugin_enabled? || rails_compilation_enabled?
62
79
  end
63
80
  end
64
81
  end
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -180,8 +180,8 @@ I
180
180
  I
181
181
  13
182
182
  x
183
- 68
184
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
183
+ 66
184
+ /Users/chris/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
- 163
343
+ 121
344
344
  5
345
345
  66
346
346
  5
@@ -461,48 +461,6 @@ 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
506
464
  11
507
465
  I
508
466
  5
@@ -514,7 +472,7 @@ I
514
472
  0
515
473
  n
516
474
  p
517
- 25
475
+ 19
518
476
  x
519
477
  6
520
478
  extend
@@ -584,8 +542,8 @@ f
584
542
  I
585
543
  e
586
544
  x
587
- 68
588
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
545
+ 66
546
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
589
547
  p
590
548
  0
591
549
  x
@@ -699,8 +657,8 @@ I
699
657
  I
700
658
  31
701
659
  x
702
- 68
703
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
660
+ 66
661
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
704
662
  p
705
663
  0
706
664
  x
@@ -758,8 +716,8 @@ I
758
716
  I
759
717
  b
760
718
  x
761
- 68
762
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
719
+ 66
720
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
763
721
  p
764
722
  1
765
723
  x
@@ -776,7 +734,7 @@ x
776
734
  13
777
735
  configuration
778
736
  i
779
- 104
737
+ 41
780
738
  45
781
739
  0
782
740
  1
@@ -811,87 +769,24 @@ i
811
769
  49
812
770
  4
813
771
  1
814
- 19
815
- 0
816
- 15
817
- 20
818
- 0
819
772
  45
820
773
  8
821
774
  9
822
775
  49
823
776
  10
824
777
  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
883
778
  11
884
779
  I
885
- 4
780
+ 3
886
781
  I
887
- 1
782
+ 0
888
783
  I
889
784
  0
890
785
  I
891
786
  0
892
787
  n
893
788
  p
894
- 22
789
+ 11
895
790
  x
896
791
  7
897
792
  Compass
@@ -921,33 +816,8 @@ n
921
816
  x
922
817
  6
923
818
  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
949
819
  p
950
- 13
820
+ 9
951
821
  I
952
822
  -1
953
823
  I
@@ -957,31 +827,20 @@ I
957
827
  I
958
828
  1b
959
829
  I
960
- 25
830
+ 22
961
831
  I
962
832
  1c
963
833
  I
964
- 2e
965
- I
966
- 1d
967
- I
968
- 64
969
- I
970
- 0
971
- I
972
- 65
834
+ 25
973
835
  I
974
- 1e
836
+ 1b
975
837
  I
976
- 68
838
+ 29
977
839
  x
978
- 68
979
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
840
+ 66
841
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
980
842
  p
981
- 1
982
- x
983
- 6
984
- config
843
+ 0
985
844
  x
986
845
  3
987
846
  env
@@ -1029,24 +888,20 @@ x
1029
888
  11
1030
889
  development
1031
890
  p
1032
- 7
891
+ 5
1033
892
  I
1034
893
  -1
1035
894
  I
1036
- 21
895
+ 1f
1037
896
  I
1038
897
  0
1039
898
  I
1040
- 22
1041
- I
1042
- d
1043
- I
1044
- 0
899
+ 20
1045
900
  I
1046
901
  e
1047
902
  x
1048
- 68
1049
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
903
+ 66
904
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1050
905
  p
1051
906
  0
1052
907
  x
@@ -1199,40 +1054,36 @@ x
1199
1054
  2
1200
1055
  ==
1201
1056
  p
1202
- 15
1057
+ 13
1203
1058
  I
1204
1059
  -1
1205
1060
  I
1206
- 25
1061
+ 23
1207
1062
  I
1208
1063
  0
1209
1064
  I
1210
- 26
1065
+ 24
1211
1066
  I
1212
1067
  2b
1213
1068
  I
1214
- 27
1069
+ 25
1215
1070
  I
1216
1071
  36
1217
1072
  I
1218
- 28
1073
+ 26
1219
1074
  I
1220
1075
  53
1221
1076
  I
1222
- 29
1077
+ 27
1223
1078
  I
1224
1079
  5d
1225
1080
  I
1226
- 28
1227
- I
1228
- 5e
1229
- I
1230
- 0
1081
+ 26
1231
1082
  I
1232
1083
  5f
1233
1084
  x
1234
- 68
1235
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1085
+ 66
1086
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1236
1087
  p
1237
1088
  0
1238
1089
  x
@@ -1368,61 +1219,65 @@ x
1368
1219
  vm_const_defined
1369
1220
  n
1370
1221
  p
1371
- 15
1222
+ 13
1372
1223
  I
1373
1224
  -1
1374
1225
  I
1375
- 2d
1226
+ 2b
1376
1227
  I
1377
1228
  0
1378
1229
  I
1379
- 2e
1230
+ 2c
1380
1231
  I
1381
1232
  2b
1382
1233
  I
1383
- 2f
1234
+ 2d
1384
1235
  I
1385
1236
  33
1386
1237
  I
1387
- 30
1238
+ 2e
1388
1239
  I
1389
1240
  50
1390
1241
  I
1391
- 31
1242
+ 2f
1392
1243
  I
1393
1244
  55
1394
1245
  I
1395
- 30
1396
- I
1397
- 56
1398
- I
1399
- 0
1246
+ 2e
1400
1247
  I
1401
1248
  57
1402
1249
  x
1403
- 68
1404
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1250
+ 66
1251
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1405
1252
  p
1406
1253
  0
1407
1254
  x
1408
- 22
1409
- check_for_double_boot!
1255
+ 11
1256
+ initialize!
1410
1257
  M
1411
1258
  1
1412
1259
  n
1413
1260
  n
1414
1261
  x
1415
- 22
1416
- check_for_double_boot!
1262
+ 11
1263
+ initialize!
1417
1264
  i
1418
- 26
1265
+ 98
1266
+ 23
1267
+ 0
1268
+ 10
1269
+ 8
1270
+ 1
1271
+ 19
1272
+ 0
1273
+ 15
1419
1274
  5
1420
1275
  47
1421
1276
  49
1422
1277
  0
1423
1278
  0
1424
1279
  9
1425
- 20
1280
+ 28
1426
1281
  45
1427
1282
  1
1428
1283
  2
@@ -1435,442 +1290,76 @@ i
1435
1290
  5
1436
1291
  1
1437
1292
  8
1438
- 25
1293
+ 33
1439
1294
  5
1440
1295
  47
1441
1296
  49
1442
1297
  6
1443
1298
  0
1444
- 11
1445
- I
1446
- 2
1447
- I
1299
+ 15
1300
+ 20
1448
1301
  0
1449
- I
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
1450
1316
  0
1451
- I
1317
+ 15
1318
+ 45
1319
+ 1
1320
+ 10
1321
+ 20
1452
1322
  0
1453
- n
1454
- p
1455
- 7
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
1486
- 7
1487
- I
1488
- 37
1489
- I
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
1524
- 49
1525
- 4
1526
- 1
1527
- 9
1528
- 16
1529
- 1
1530
- 8
1531
- 70
1532
- 26
1533
- 93
1534
- 0
1535
- 15
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
1566
- 15
1567
- 45
1568
- 0
1569
- 9
1323
+ 44
1570
1324
  43
1571
- 6
1572
- 49
1573
- 10
1574
- 0
1575
- 7
1576
1325
  11
1326
+ 79
1577
1327
  49
1578
1328
  12
1579
1329
  1
1580
- 10
1581
- 69
1582
- 2
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
1330
  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
1668
- 45
1669
- 0
1670
- 1
1671
- 43
1672
- 2
1673
1331
  7
1674
- 3
1675
- 64
1676
- 49
1677
- 4
1678
- 1
1679
1332
  13
1680
- 9
1681
- 46
1682
- 15
1683
- 26
1684
- 93
1685
- 0
1686
- 15
1687
- 29
1688
- 34
1689
- 0
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
1333
  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
1782
- 1
1783
- 19
1784
- 0
1785
- 15
1786
- 5
1787
- 47
1334
+ 14
1788
1335
  49
1789
- 0
1790
- 0
1791
1336
  15
1792
- 20
1793
- 0
1794
- 13
1795
- 10
1796
- 31
1797
- 15
1798
- 45
1799
- 1
1800
1337
  2
1801
- 5
1802
- 48
1803
- 3
1804
- 49
1805
- 4
1806
- 1
1807
- 19
1808
- 0
1809
1338
  15
1810
- 45
1811
- 1
1812
- 5
1813
- 20
1814
- 0
1815
- 44
1816
- 43
1817
- 6
1818
- 79
1819
1339
  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
1340
+ 16
1833
1341
  2
1834
1342
  15
1835
1343
  45
1836
1344
  1
1837
- 12
1345
+ 17
1838
1346
  49
1839
- 13
1347
+ 18
1840
1348
  0
1841
1349
  15
1842
1350
  45
1843
1351
  1
1844
- 14
1845
- 49
1846
- 15
1847
- 0
1848
- 15
1849
- 5
1850
- 47
1352
+ 19
1851
1353
  49
1852
- 16
1354
+ 20
1853
1355
  0
1854
- 13
1855
- 10
1856
- 85
1857
1356
  15
1858
- 5
1859
- 47
1860
- 49
1861
- 17
1862
- 0
1863
- 9
1864
- 95
1865
1357
  45
1866
1358
  1
1867
- 18
1359
+ 21
1868
1360
  49
1869
- 19
1361
+ 22
1870
1362
  0
1871
- 8
1872
- 96
1873
- 1
1874
1363
  11
1875
1364
  I
1876
1365
  7
@@ -1882,16 +1371,29 @@ I
1882
1371
  1
1883
1372
  n
1884
1373
  p
1885
- 20
1374
+ 23
1886
1375
  x
1887
- 22
1888
- check_for_double_boot!
1376
+ 7
1377
+ booted?
1889
1378
  x
1890
1379
  7
1891
1380
  Compass
1892
1381
  n
1893
1382
  x
1894
1383
  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
1895
1397
  root
1896
1398
  x
1897
1399
  25
@@ -1923,62 +1425,60 @@ n
1923
1425
  x
1924
1426
  22
1925
1427
  configure_sass_plugin!
1926
- x
1927
- 20
1928
- sass_plugin_enabled?
1929
- x
1930
- 26
1931
- rails_compilation_enabled?
1932
1428
  n
1933
1429
  x
1934
1430
  28
1935
1431
  handle_configuration_change!
1936
1432
  p
1937
- 17
1433
+ 19
1938
1434
  I
1939
1435
  -1
1940
1436
  I
1941
- 48
1437
+ 33
1942
1438
  I
1943
1439
  8
1944
1440
  I
1945
- 49
1441
+ 34
1946
1442
  I
1947
- e
1443
+ f
1948
1444
  I
1949
- 4a
1445
+ 35
1950
1446
  I
1951
- 20
1447
+ 1c
1952
1448
  I
1953
- 4b
1449
+ 37
1450
+ I
1451
+ 22
1954
1452
  I
1955
1453
  39
1956
1454
  I
1957
- 4c
1455
+ 34
1958
1456
  I
1959
- 40
1457
+ 3a
1960
1458
  I
1961
1459
  4d
1962
1460
  I
1963
- 47
1461
+ 3b
1964
1462
  I
1965
- 4e
1463
+ 54
1966
1464
  I
1967
- 60
1465
+ 3c
1968
1466
  I
1969
- 0
1467
+ 5b
1970
1468
  I
1971
- 61
1469
+ 3d
1470
+ I
1471
+ 62
1972
1472
  x
1973
- 68
1974
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1473
+ 66
1474
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
1975
1475
  p
1976
1476
  1
1977
1477
  x
1978
1478
  6
1979
1479
  config
1980
1480
  p
1981
- 25
1481
+ 19
1982
1482
  I
1983
1483
  2
1984
1484
  I
@@ -2002,36 +1502,24 @@ I
2002
1502
  I
2003
1503
  41
2004
1504
  I
2005
- 21
1505
+ 1f
2006
1506
  I
2007
1507
  4f
2008
1508
  I
2009
- 25
1509
+ 23
2010
1510
  I
2011
1511
  5d
2012
1512
  I
2013
- 2d
1513
+ 2b
2014
1514
  I
2015
1515
  6b
2016
1516
  I
2017
- 35
1517
+ 33
2018
1518
  I
2019
1519
  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
2032
1520
  x
2033
- 68
2034
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1521
+ 66
1522
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2035
1523
  p
2036
1524
  0
2037
1525
  x
@@ -2046,8 +1534,8 @@ a
2046
1534
  I
2047
1535
  1c
2048
1536
  x
2049
- 68
2050
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1537
+ 66
1538
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2051
1539
  p
2052
1540
  0
2053
1541
  x
@@ -2062,15 +1550,15 @@ I
2062
1550
  I
2063
1551
  1c
2064
1552
  x
2065
- 68
2066
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1553
+ 66
1554
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2067
1555
  p
2068
1556
  0
2069
1557
  x
2070
1558
  13
2071
1559
  attach_method
2072
1560
  p
2073
- 9
1561
+ 7
2074
1562
  I
2075
1563
  0
2076
1564
  I
@@ -2080,17 +1568,13 @@ e
2080
1568
  I
2081
1569
  5
2082
1570
  I
2083
- 3a
2084
- I
2085
- 0
2086
- I
2087
1571
  3b
2088
1572
  I
2089
1573
  8
2090
1574
  I
2091
1575
  57
2092
1576
  x
2093
- 68
2094
- /Users/crispee/Projects/compass/lib/compass/app_integration/rails.rb
1577
+ 66
1578
+ /Users/chris/Projects/compass/lib/compass/app_integration/rails.rb
2095
1579
  p
2096
1580
  0