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
@@ -369,8 +369,8 @@ I
369
369
  I
370
370
  22
371
371
  x
372
- 69
373
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
372
+ 67
373
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
374
374
  p
375
375
  1
376
376
  x
@@ -787,8 +787,8 @@ e
787
787
  I
788
788
  2e
789
789
  x
790
- 69
791
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
790
+ 67
791
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
792
792
  p
793
793
  1
794
794
  x
@@ -907,8 +907,8 @@ I
907
907
  I
908
908
  2e
909
909
  x
910
- 69
911
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
910
+ 67
911
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
912
912
  p
913
913
  1
914
914
  x
@@ -973,7 +973,7 @@ x
973
973
  10
974
974
  initialize
975
975
  p
976
- 37
976
+ 29
977
977
  I
978
978
  -1
979
979
  I
@@ -987,10 +987,6 @@ I
987
987
  I
988
988
  c
989
989
  I
990
- 21
991
- I
992
- 0
993
- I
994
990
  22
995
991
  I
996
992
  d
@@ -1007,10 +1003,6 @@ I
1007
1003
  I
1008
1004
  14
1009
1005
  I
1010
- 61
1011
- I
1012
- 0
1013
- I
1014
1006
  62
1015
1007
  I
1016
1008
  15
@@ -1019,18 +1011,10 @@ I
1019
1011
  I
1020
1012
  16
1021
1013
  I
1022
- 8a
1023
- I
1024
- 0
1025
- I
1026
1014
  8b
1027
1015
  I
1028
1016
  17
1029
1017
  I
1030
- a4
1031
- I
1032
- 0
1033
- I
1034
1018
  a5
1035
1019
  I
1036
1020
  18
@@ -1049,8 +1033,8 @@ I
1049
1033
  I
1050
1034
  fe
1051
1035
  x
1052
- 69
1053
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1036
+ 67
1037
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1054
1038
  p
1055
1039
  2
1056
1040
  x
@@ -1181,7 +1165,7 @@ x
1181
1165
  4
1182
1166
  join
1183
1167
  p
1184
- 11
1168
+ 9
1185
1169
  I
1186
1170
  0
1187
1171
  I
@@ -1199,14 +1183,10 @@ I
1199
1183
  I
1200
1184
  23
1201
1185
  I
1202
- 29
1203
- I
1204
- 0
1205
- I
1206
1186
  2a
1207
1187
  x
1208
- 69
1209
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1188
+ 67
1189
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1210
1190
  p
1211
1191
  1
1212
1192
  x
@@ -1228,8 +1208,8 @@ I
1228
1208
  I
1229
1209
  f
1230
1210
  x
1231
- 69
1232
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1211
+ 67
1212
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1233
1213
  p
1234
1214
  0
1235
1215
  x
@@ -1243,7 +1223,7 @@ x
1243
1223
  14
1244
1224
  absolute_path?
1245
1225
  i
1246
- 29
1226
+ 14
1247
1227
  20
1248
1228
  0
1249
1229
  45
@@ -1257,21 +1237,6 @@ i
1257
1237
  78
1258
1238
  83
1259
1239
  4
1260
- 13
1261
- 10
1262
- 28
1263
- 15
1264
- 20
1265
- 0
1266
- 7
1267
- 5
1268
- 64
1269
- 49
1270
- 3
1271
- 1
1272
- 79
1273
- 83
1274
- 4
1275
1240
  11
1276
1241
  I
1277
1242
  3
@@ -1283,7 +1248,7 @@ I
1283
1248
  1
1284
1249
  n
1285
1250
  p
1286
- 6
1251
+ 5
1287
1252
  x
1288
1253
  4
1289
1254
  File
@@ -1297,9 +1262,6 @@ index
1297
1262
  x
1298
1263
  2
1299
1264
  ==
1300
- s
1301
- 1
1302
- :
1303
1265
  p
1304
1266
  5
1305
1267
  I
@@ -1311,10 +1273,10 @@ I
1311
1273
  I
1312
1274
  2a
1313
1275
  I
1314
- 1d
1276
+ e
1315
1277
  x
1316
- 69
1317
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1278
+ 67
1279
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1318
1280
  p
1319
1281
  1
1320
1282
  x
@@ -1520,7 +1482,7 @@ x
1520
1482
  6
1521
1483
  merge!
1522
1484
  p
1523
- 21
1485
+ 17
1524
1486
  I
1525
1487
  -1
1526
1488
  I
@@ -1534,10 +1496,6 @@ I
1534
1496
  I
1535
1497
  2f
1536
1498
  I
1537
- 2a
1538
- I
1539
- 0
1540
- I
1541
1499
  2b
1542
1500
  I
1543
1501
  30
@@ -1554,18 +1512,14 @@ I
1554
1512
  I
1555
1513
  33
1556
1514
  I
1557
- 6e
1558
- I
1559
- 0
1560
- I
1561
1515
  6f
1562
1516
  I
1563
1517
  34
1564
1518
  I
1565
1519
  83
1566
1520
  x
1567
- 69
1568
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1521
+ 67
1522
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1569
1523
  p
1570
1524
  1
1571
1525
  x
@@ -1769,7 +1723,7 @@ x
1769
1723
  2
1770
1724
  <<
1771
1725
  p
1772
- 7
1726
+ 5
1773
1727
  I
1774
1728
  0
1775
1729
  I
@@ -1779,14 +1733,10 @@ I
1779
1733
  I
1780
1734
  3b
1781
1735
  I
1782
- 1f
1783
- I
1784
- 0
1785
- I
1786
1736
  20
1787
1737
  x
1788
- 69
1789
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1738
+ 67
1739
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1790
1740
  p
1791
1741
  1
1792
1742
  x
@@ -1914,7 +1864,7 @@ x
1914
1864
  10
1915
1865
  initialize
1916
1866
  p
1917
- 9
1867
+ 7
1918
1868
  I
1919
1869
  0
1920
1870
  I
@@ -1924,18 +1874,14 @@ I
1924
1874
  I
1925
1875
  3f
1926
1876
  I
1927
- 13
1928
- I
1929
- 0
1930
- I
1931
1877
  14
1932
1878
  I
1933
1879
  40
1934
1880
  I
1935
1881
  3b
1936
1882
  x
1937
- 69
1938
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1883
+ 67
1884
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
1939
1885
  p
1940
1886
  1
1941
1887
  x
@@ -1958,7 +1904,7 @@ x
1958
1904
  10
1959
1905
  initialize
1960
1906
  p
1961
- 19
1907
+ 17
1962
1908
  I
1963
1909
  -1
1964
1910
  I
@@ -1972,10 +1918,6 @@ I
1972
1918
  I
1973
1919
  39
1974
1920
  I
1975
- 15
1976
- I
1977
- 0
1978
- I
1979
1921
  16
1980
1922
  I
1981
1923
  3a
@@ -1998,8 +1940,8 @@ I
1998
1940
  I
1999
1941
  58
2000
1942
  x
2001
- 69
2002
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1943
+ 67
1944
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
2003
1945
  p
2004
1946
  1
2005
1947
  x
@@ -2034,8 +1976,8 @@ I
2034
1976
  I
2035
1977
  56
2036
1978
  x
2037
- 69
2038
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1979
+ 67
1980
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
2039
1981
  p
2040
1982
  0
2041
1983
  x
@@ -2050,8 +1992,8 @@ I
2050
1992
  I
2051
1993
  1c
2052
1994
  x
2053
- 69
2054
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
1995
+ 67
1996
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
2055
1997
  p
2056
1998
  0
2057
1999
  x
@@ -2066,8 +2008,8 @@ I
2066
2008
  I
2067
2009
  1c
2068
2010
  x
2069
- 69
2070
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
2011
+ 67
2012
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
2071
2013
  p
2072
2014
  0
2073
2015
  x
@@ -2082,7 +2024,7 @@ I
2082
2024
  I
2083
2025
  1c
2084
2026
  x
2085
- 69
2086
- /Users/crispee/Projects/compass/lib/compass/configuration/adapters.rb
2027
+ 67
2028
+ /Users/chris/Projects/compass/lib/compass/configuration/adapters.rb
2087
2029
  p
2088
2030
  0
@@ -4,7 +4,11 @@ module Compass
4
4
  module Comments
5
5
 
6
6
  def comment_for_http_path
7
- "# Set this to the root of your project when deployed:\n"
7
+ unless top_level.http_path_without_default
8
+ "# Set this to the root of your project when deployed:\nhttp_path = #{top_level.http_path.to_s.inspect}\n"
9
+ else
10
+ ""
11
+ end
8
12
  end
9
13
 
10
14
  def comment_for_relative_assets
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 333337424968067900
3
3
  x
4
4
  M
5
5
  1
@@ -275,44 +275,13 @@ x
275
275
  21
276
276
  comment_for_http_path
277
277
  i
278
- 35
279
- 5
280
- 48
281
- 0
282
- 49
283
- 1
284
- 0
285
- 9
286
- 13
287
- 7
288
- 2
289
- 64
290
- 8
291
- 34
292
- 7
293
- 3
294
- 5
295
- 48
296
- 0
297
- 49
298
278
  4
299
- 0
300
- 49
301
- 5
302
- 0
303
- 49
304
- 6
305
- 0
306
- 47
307
- 101
308
- 5
309
279
  7
310
- 7
311
- 63
312
- 3
280
+ 0
281
+ 64
313
282
  11
314
283
  I
315
- 3
284
+ 1
316
285
  I
317
286
  0
318
287
  I
@@ -321,35 +290,13 @@ I
321
290
  0
322
291
  n
323
292
  p
324
- 8
325
- x
326
- 9
327
- top_level
328
- x
329
- 25
330
- http_path_without_default
331
- s
332
- 0
333
-
293
+ 1
334
294
  s
335
- 66
295
+ 54
336
296
  # Set this to the root of your project when deployed:
337
- http_path =
338
- x
339
- 9
340
- http_path
341
- x
342
- 4
343
- to_s
344
- x
345
- 7
346
- inspect
347
- s
348
- 1
349
-
350
297
 
351
298
  p
352
- 11
299
+ 5
353
300
  I
354
301
  -1
355
302
  I
@@ -359,22 +306,10 @@ I
359
306
  I
360
307
  7
361
308
  I
362
- 8
363
- I
364
- a
365
- I
366
- d
367
- I
368
- 8
369
- I
370
- 22
371
- I
372
- 0
373
- I
374
- 23
309
+ 4
375
310
  x
376
- 69
377
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
311
+ 67
312
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
378
313
  p
379
314
  0
380
315
  x
@@ -438,32 +373,28 @@ s
438
373
  # relative_assets = true
439
374
 
440
375
  p
441
- 11
376
+ 9
442
377
  I
443
378
  -1
444
379
  I
445
- e
380
+ a
446
381
  I
447
382
  0
448
383
  I
449
- f
384
+ b
450
385
  I
451
386
  8
452
387
  I
453
- 14
454
- I
455
- d
456
- I
457
388
  10
458
389
  I
459
- 10
390
+ d
460
391
  I
461
- 0
392
+ c
462
393
  I
463
394
  11
464
395
  x
465
- 69
466
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
396
+ 67
397
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
467
398
  p
468
399
  0
469
400
  x
@@ -521,32 +452,28 @@ s
521
452
  0
522
453
 
523
454
  p
524
- 11
455
+ 9
525
456
  I
526
457
  -1
527
458
  I
528
- 18
459
+ 14
529
460
  I
530
461
  0
531
462
  I
532
- 19
463
+ 15
533
464
  I
534
465
  8
535
466
  I
536
- 1a
467
+ 16
537
468
  I
538
469
  d
539
470
  I
540
- 1e
541
- I
542
- 10
543
- I
544
- 0
471
+ 1a
545
472
  I
546
473
  11
547
474
  x
548
- 69
549
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
475
+ 67
476
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
550
477
  p
551
478
  0
552
479
  x
@@ -604,32 +531,28 @@ s
604
531
  # output_style = :expanded or :nested or :compact or :compressed
605
532
 
606
533
  p
607
- 11
534
+ 9
608
535
  I
609
536
  -1
610
537
  I
611
- 22
538
+ 1e
612
539
  I
613
540
  0
614
541
  I
615
- 23
542
+ 1f
616
543
  I
617
544
  8
618
545
  I
619
- 28
620
- I
621
- d
622
- I
623
546
  24
624
547
  I
625
- 10
548
+ d
626
549
  I
627
- 0
550
+ 20
628
551
  I
629
552
  11
630
553
  x
631
- 69
632
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
554
+ 67
555
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
633
556
  p
634
557
  0
635
558
  x
@@ -732,36 +655,32 @@ s
732
655
  0
733
656
 
734
657
  p
735
- 13
658
+ 11
736
659
  I
737
660
  -1
738
661
  I
739
- 2c
662
+ 28
740
663
  I
741
664
  0
742
665
  I
743
- 2d
666
+ 29
744
667
  I
745
668
  16
746
669
  I
747
- 2e
670
+ 2a
748
671
  I
749
672
  18
750
673
  I
751
- 33
674
+ 2f
752
675
  I
753
676
  27
754
677
  I
755
- 36
756
- I
757
- 2a
758
- I
759
- 0
678
+ 32
760
679
  I
761
680
  2b
762
681
  x
763
- 69
764
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
682
+ 67
683
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
765
684
  p
766
685
  0
767
686
  p
@@ -773,24 +692,24 @@ I
773
692
  I
774
693
  10
775
694
  I
776
- e
695
+ a
777
696
  I
778
697
  1e
779
698
  I
780
- 18
699
+ 14
781
700
  I
782
701
  2c
783
702
  I
784
- 22
703
+ 1e
785
704
  I
786
705
  3a
787
706
  I
788
- 2c
707
+ 28
789
708
  I
790
709
  48
791
710
  x
792
- 69
793
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
711
+ 67
712
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
794
713
  p
795
714
  0
796
715
  x
@@ -805,8 +724,8 @@ I
805
724
  I
806
725
  1c
807
726
  x
808
- 69
809
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
727
+ 67
728
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
810
729
  p
811
730
  0
812
731
  x
@@ -821,8 +740,8 @@ I
821
740
  I
822
741
  1c
823
742
  x
824
- 69
825
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
743
+ 67
744
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
826
745
  p
827
746
  0
828
747
  x
@@ -837,7 +756,7 @@ I
837
756
  I
838
757
  1c
839
758
  x
840
- 69
841
- /Users/crispee/Projects/compass/lib/compass/configuration/comments.rb
759
+ 67
760
+ /Users/chris/Projects/compass/lib/compass/configuration/comments.rb
842
761
  p
843
762
  0