compass 0.13.alpha.0 → 0.13.alpha.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (367) hide show
  1. data/README.markdown +6 -4
  2. data/Rakefile +9 -0
  3. data/VERSION.yml +2 -2
  4. data/bin/compass +2 -1
  5. data/features/command_line.feature +5 -27
  6. data/features/step_definitions/command_line_steps.rb +3 -2
  7. data/frameworks/compass/stylesheets/compass/_css3.scss +3 -0
  8. data/frameworks/compass/stylesheets/compass/_support.scss +6 -0
  9. data/frameworks/compass/stylesheets/compass/css3/_animation.scss +77 -76
  10. data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +15 -9
  11. data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +35 -36
  12. data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +36 -34
  13. data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +15 -15
  14. data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +30 -48
  15. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +22 -27
  16. data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +13 -8
  17. data/frameworks/compass/stylesheets/compass/css3/_box.scss +60 -82
  18. data/frameworks/compass/stylesheets/compass/css3/_columns.scss +145 -25
  19. data/frameworks/compass/stylesheets/compass/css3/_filter.scss +44 -0
  20. data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +77 -0
  21. data/frameworks/compass/stylesheets/compass/css3/_images.scss +2 -2
  22. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +14 -8
  23. data/frameworks/compass/stylesheets/compass/css3/_selection.scss +31 -0
  24. data/frameworks/compass/stylesheets/compass/css3/_shared.scss +207 -21
  25. data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +52 -13
  26. data/frameworks/compass/stylesheets/compass/css3/_transform.scss +14 -14
  27. data/frameworks/compass/stylesheets/compass/css3/_transition.scss +127 -60
  28. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +35 -15
  29. data/frameworks/compass/stylesheets/compass/typography/_units.scss +152 -0
  30. data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +174 -98
  31. data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +5 -3
  32. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +6 -3
  33. data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +1 -1
  34. data/frameworks/compass/stylesheets/compass/typography/text/_replacement.scss +35 -9
  35. data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +7 -3
  36. data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +2 -2
  37. data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +25 -10
  38. data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +14 -9
  39. data/lib/compass.rb +2 -2
  40. data/lib/compass/actions.rb +5 -1
  41. data/lib/compass/commands/project_base.rb +7 -1
  42. data/lib/compass/commands/update_project.rb +2 -2
  43. data/lib/compass/commands/watch_project.rb +6 -86
  44. data/lib/compass/compiler.rb +6 -0
  45. data/lib/compass/configuration/data.rb +1 -1
  46. data/lib/compass/configuration/helpers.rb +2 -0
  47. data/lib/compass/exec/global_options_parser.rb +1 -1
  48. data/lib/compass/exec/project_options_parser.rb +4 -0
  49. data/lib/compass/logger.rb +2 -0
  50. data/lib/compass/sass_extensions/functions/colors.rb +14 -0
  51. data/lib/compass/sass_extensions/functions/constants.rb +9 -0
  52. data/lib/compass/sass_extensions/functions/gradient_support.rb +44 -5
  53. data/lib/compass/sass_extensions/functions/image_size.rb +2 -1
  54. data/lib/compass/sass_extensions/functions/math.rb +14 -2
  55. data/lib/compass/sass_extensions/functions/sprites.rb +81 -14
  56. data/lib/compass/sass_extensions/functions/urls.rb +29 -2
  57. data/lib/compass/sass_extensions/sprites.rb +2 -0
  58. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +5 -1
  59. data/lib/compass/sass_extensions/sprites/image.rb +7 -2
  60. data/lib/compass/sass_extensions/sprites/image_methods.rb +5 -2
  61. data/lib/compass/sass_extensions/sprites/images.rb +29 -0
  62. data/lib/compass/sass_extensions/sprites/layout.rb +39 -0
  63. data/lib/compass/sass_extensions/sprites/layout/diagonal.rb +42 -0
  64. data/lib/compass/sass_extensions/sprites/layout/horizontal.rb +66 -0
  65. data/lib/compass/sass_extensions/sprites/layout/smart.rb +33 -0
  66. data/lib/compass/sass_extensions/sprites/layout/vertical.rb +68 -0
  67. data/lib/compass/sass_extensions/sprites/layout_methods.rb +9 -115
  68. data/lib/compass/sass_extensions/sprites/sprite_map.rb +5 -0
  69. data/lib/compass/sass_extensions/sprites/sprite_methods.rb +9 -5
  70. data/lib/compass/sprite_importer.rb +3 -3
  71. data/lib/compass/sprite_importer/content.erb +14 -12
  72. data/lib/compass/version.rb +2 -1
  73. data/lib/compass/watcher.rb +11 -0
  74. data/lib/compass/watcher/compiler.rb +59 -0
  75. data/lib/compass/watcher/project_watcher.rb +108 -0
  76. data/lib/compass/watcher/watch.rb +33 -0
  77. data/test/fixtures/stylesheets/busted_font_urls/config.rb +32 -0
  78. data/test/fixtures/stylesheets/busted_font_urls/css/screen.css +7 -0
  79. data/{examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf → test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf} +0 -0
  80. data/test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf +0 -0
  81. data/test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf +0 -0
  82. data/test/fixtures/stylesheets/busted_font_urls/sass/screen.sass +11 -0
  83. data/test/fixtures/stylesheets/busted_font_urls/tmp/screen.css +7 -0
  84. data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +0 -8
  85. data/test/fixtures/stylesheets/compass/css/animation.css +0 -8
  86. data/test/fixtures/stylesheets/compass/css/background-clip.css +5 -0
  87. data/test/fixtures/stylesheets/compass/css/background-origin.css +15 -0
  88. data/test/fixtures/stylesheets/compass/css/background-size.css +24 -0
  89. data/test/fixtures/stylesheets/compass/css/columns.css +81 -9
  90. data/test/fixtures/stylesheets/compass/css/filters.css +29 -0
  91. data/test/fixtures/stylesheets/compass/css/gradients.css +30 -27
  92. data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -14
  93. data/test/fixtures/stylesheets/compass/css/hyphenation.css +16 -0
  94. data/test/fixtures/stylesheets/compass/css/lists.css +11 -13
  95. data/test/fixtures/stylesheets/compass/css/pie.css +0 -3
  96. data/test/fixtures/stylesheets/compass/css/replacement.css +59 -0
  97. data/test/fixtures/stylesheets/compass/css/reset.css +1 -1
  98. data/test/fixtures/stylesheets/compass/css/selection.css +13 -0
  99. data/test/fixtures/stylesheets/compass/css/sprites.css +250 -250
  100. data/test/fixtures/stylesheets/compass/css/text_shadow.css +22 -4
  101. data/test/fixtures/stylesheets/compass/css/transition.css +67 -11
  102. data/test/fixtures/stylesheets/compass/css/units.css +30 -0
  103. data/test/fixtures/stylesheets/compass/css/user-interface.css +12 -1
  104. data/test/fixtures/stylesheets/compass/css/utilities.css +15 -0
  105. data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +199 -27
  106. data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
  107. data/test/fixtures/stylesheets/compass/sass/background-clip.scss +4 -2
  108. data/test/fixtures/stylesheets/compass/sass/background-origin.scss +10 -0
  109. data/test/fixtures/stylesheets/compass/sass/background-size.scss +12 -0
  110. data/test/fixtures/stylesheets/compass/sass/columns.scss +18 -0
  111. data/test/fixtures/stylesheets/compass/sass/filters.scss +24 -0
  112. data/test/fixtures/stylesheets/compass/sass/gradients.sass +10 -3
  113. data/test/fixtures/stylesheets/compass/sass/hyphenation.scss +11 -0
  114. data/test/fixtures/stylesheets/compass/sass/replacement.scss +22 -0
  115. data/test/fixtures/stylesheets/compass/sass/selection.scss +13 -0
  116. data/test/fixtures/stylesheets/compass/sass/text_shadow.scss +6 -1
  117. data/test/fixtures/stylesheets/compass/sass/transition.scss +11 -0
  118. data/test/fixtures/stylesheets/compass/sass/units.scss +45 -0
  119. data/test/fixtures/stylesheets/compass/sass/user-interface.scss +10 -5
  120. data/test/fixtures/stylesheets/compass/sass/utilities.scss +10 -0
  121. data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +208 -7
  122. data/test/fixtures/stylesheets/envtest/tmp/env.css +4 -4
  123. data/test/fixtures/stylesheets/valid/css/simple.css +4 -0
  124. data/test/helpers/test_case.rb +8 -1
  125. data/test/integrations/compass_test.rb +13 -13
  126. data/test/integrations/sprites_test.rb +173 -8
  127. data/test/test_helper.rb +4 -0
  128. data/test/units/command_line_test.rb +0 -2
  129. data/test/units/regressions_test.rb +35 -0
  130. data/test/units/sass_extensions_test.rb +23 -11
  131. data/test/units/sprites/image_test.rb +5 -0
  132. data/test/units/sprites/images_test.rb +46 -0
  133. data/test/units/sprites/layout_test.rb +18 -2
  134. data/test/units/watcher/compiler_test.rb +39 -0
  135. data/test/units/watcher/project_watcher_test.rb +65 -0
  136. data/test/units/watcher/watch_test.rb +42 -0
  137. metadata +83 -317
  138. data/bin/compass.compiled.rbc +0 -707
  139. data/examples/compass/images/emblem-a043c4f148.png +0 -0
  140. data/examples/compass/images/flag-03c3b29b35.png +0 -0
  141. data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
  142. data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
  143. data/examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf +0 -0
  144. data/frameworks/blueprint/stylesheets/_blueprint.scss +0 -37
  145. data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +0 -101
  146. data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +0 -36
  147. data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +0 -28
  148. data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +0 -88
  149. data/frameworks/blueprint/stylesheets/blueprint/_form.scss +0 -66
  150. data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +0 -258
  151. data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +0 -111
  152. data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +0 -66
  153. data/frameworks/blueprint/stylesheets/blueprint/_link-icons.scss +0 -37
  154. data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +0 -152
  155. data/frameworks/blueprint/stylesheets/blueprint/_print.scss +0 -86
  156. data/frameworks/blueprint/stylesheets/blueprint/_reset.scss +0 -3
  157. data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +0 -121
  158. data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +0 -52
  159. data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +0 -90
  160. data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +0 -37
  161. data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +0 -80
  162. data/frameworks/blueprint/templates/basic/grid.png +0 -0
  163. data/frameworks/blueprint/templates/basic/ie.sass +0 -4
  164. data/frameworks/blueprint/templates/basic/manifest.rb +0 -30
  165. data/frameworks/blueprint/templates/basic/partials/_base.sass +0 -10
  166. data/frameworks/blueprint/templates/basic/print.sass +0 -4
  167. data/frameworks/blueprint/templates/basic/screen.sass +0 -12
  168. data/frameworks/blueprint/templates/buttons/buttons.sass +0 -49
  169. data/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
  170. data/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
  171. data/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
  172. data/frameworks/blueprint/templates/buttons/manifest.rb +0 -17
  173. data/frameworks/blueprint/templates/link_icons/link_icons.sass +0 -13
  174. data/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
  175. data/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
  176. data/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
  177. data/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
  178. data/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
  179. data/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
  180. data/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
  181. data/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
  182. data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -23
  183. data/frameworks/blueprint/templates/project/grid.png +0 -0
  184. data/frameworks/blueprint/templates/project/ie.sass +0 -16
  185. data/frameworks/blueprint/templates/project/manifest.rb +0 -30
  186. data/frameworks/blueprint/templates/project/partials/_base.sass +0 -11
  187. data/frameworks/blueprint/templates/project/print.sass +0 -8
  188. data/frameworks/blueprint/templates/project/screen.sass +0 -46
  189. data/frameworks/blueprint/templates/semantic/grid.png +0 -0
  190. data/frameworks/blueprint/templates/semantic/ie.sass +0 -16
  191. data/frameworks/blueprint/templates/semantic/manifest.rb +0 -33
  192. data/frameworks/blueprint/templates/semantic/partials/_base.sass +0 -10
  193. data/frameworks/blueprint/templates/semantic/partials/_form.sass +0 -6
  194. data/frameworks/blueprint/templates/semantic/partials/_page.sass +0 -17
  195. data/frameworks/blueprint/templates/semantic/partials/_two_col.sass +0 -38
  196. data/frameworks/blueprint/templates/semantic/print.sass +0 -5
  197. data/frameworks/blueprint/templates/semantic/screen.sass +0 -14
  198. data/lib/compass.rbc +0 -796
  199. data/lib/compass/actions.rbc +0 -2736
  200. data/lib/compass/app_integration.rbc +0 -836
  201. data/lib/compass/app_integration/merb.rbc +0 -106
  202. data/lib/compass/app_integration/rails.rbc +0 -2096
  203. data/lib/compass/app_integration/rails/configuration_defaults.rbc +0 -2430
  204. data/lib/compass/app_integration/rails/installer.rbc +0 -3677
  205. data/lib/compass/app_integration/stand_alone.rbc +0 -589
  206. data/lib/compass/app_integration/stand_alone/configuration_defaults.rbc +0 -721
  207. data/lib/compass/app_integration/stand_alone/installer.rbc +0 -1487
  208. data/lib/compass/browser_support.rbc +0 -1144
  209. data/lib/compass/commands.rbc +0 -307
  210. data/lib/compass/commands/base.rbc +0 -1044
  211. data/lib/compass/commands/clean_project.rbc +0 -1856
  212. data/lib/compass/commands/create_project.rbc +0 -2691
  213. data/lib/compass/commands/default.rbc +0 -1677
  214. data/lib/compass/commands/generate_grid_background.rbc +0 -1939
  215. data/lib/compass/commands/help.rbc +0 -1921
  216. data/lib/compass/commands/imports.rbc +0 -969
  217. data/lib/compass/commands/installer_command.rbc +0 -807
  218. data/lib/compass/commands/interactive.rbc +0 -1341
  219. data/lib/compass/commands/list_frameworks.rbc +0 -1111
  220. data/lib/compass/commands/print_version.rbc +0 -2478
  221. data/lib/compass/commands/project_base.rbc +0 -2085
  222. data/lib/compass/commands/project_stats.rbc +0 -4202
  223. data/lib/compass/commands/registry.rbc +0 -1350
  224. data/lib/compass/commands/sprite.rbc +0 -2212
  225. data/lib/compass/commands/stamp_pattern.rbc +0 -2011
  226. data/lib/compass/commands/unpack_extension.rbc +0 -2348
  227. data/lib/compass/commands/update_project.rbc +0 -3002
  228. data/lib/compass/commands/validate_project.rbc +0 -1686
  229. data/lib/compass/commands/watch_project.rbc +0 -4155
  230. data/lib/compass/commands/write_configuration.rbc +0 -2896
  231. data/lib/compass/compiler.rbc +0 -4913
  232. data/lib/compass/configuration.rbc +0 -1398
  233. data/lib/compass/configuration/adapters.rbc +0 -2088
  234. data/lib/compass/configuration/comments.rbc +0 -843
  235. data/lib/compass/configuration/data.rbc +0 -2633
  236. data/lib/compass/configuration/defaults.rbc +0 -3617
  237. data/lib/compass/configuration/file_data.rbc +0 -643
  238. data/lib/compass/configuration/helpers.rbc +0 -3500
  239. data/lib/compass/configuration/inheritance.rbc +0 -3592
  240. data/lib/compass/configuration/paths.rbc +0 -412
  241. data/lib/compass/configuration/serialization.rbc +0 -1996
  242. data/lib/compass/dependencies.rbc +0 -232
  243. data/lib/compass/errors.rbc +0 -176
  244. data/lib/compass/exec.rbc +0 -500
  245. data/lib/compass/exec/command_option_parser.rbc +0 -676
  246. data/lib/compass/exec/global_options_parser.rbc +0 -1306
  247. data/lib/compass/exec/helpers.rbc +0 -758
  248. data/lib/compass/exec/project_options_parser.rbc +0 -1515
  249. data/lib/compass/exec/sub_command_ui.rbc +0 -1191
  250. data/lib/compass/frameworks.rbc +0 -3640
  251. data/lib/compass/grid_builder.rbc +0 -0
  252. data/lib/compass/installers.rbc +0 -152
  253. data/lib/compass/installers/bare_installer.rbc +0 -939
  254. data/lib/compass/installers/base.rbc +0 -4427
  255. data/lib/compass/installers/manifest.rbc +0 -3335
  256. data/lib/compass/installers/manifest_installer.rbc +0 -1591
  257. data/lib/compass/installers/template_context.rbc +0 -1030
  258. data/lib/compass/logger.rbc +0 -2317
  259. data/lib/compass/quick_cache.rbc +0 -324
  260. data/lib/compass/sass_extensions.rbc +0 -213
  261. data/lib/compass/sass_extensions/functions.rbc +0 -808
  262. data/lib/compass/sass_extensions/functions/colors.rbc +0 -1279
  263. data/lib/compass/sass_extensions/functions/constants.rbc +0 -1921
  264. data/lib/compass/sass_extensions/functions/cross_browser_support.rbc +0 -1966
  265. data/lib/compass/sass_extensions/functions/display.rbc +0 -1227
  266. data/lib/compass/sass_extensions/functions/enumerate.rbc +0 -446
  267. data/lib/compass/sass_extensions/functions/env.rbc +0 -299
  268. data/lib/compass/sass_extensions/functions/font_files.rbc +0 -821
  269. data/lib/compass/sass_extensions/functions/gradient_support.rbc +0 -14147
  270. data/lib/compass/sass_extensions/functions/image_size.rbc +0 -3152
  271. data/lib/compass/sass_extensions/functions/inline_image.rbc +0 -1678
  272. data/lib/compass/sass_extensions/functions/lists.rbc +0 -2601
  273. data/lib/compass/sass_extensions/functions/selectors.rbc +0 -1592
  274. data/lib/compass/sass_extensions/functions/sprites.rbc +0 -3792
  275. data/lib/compass/sass_extensions/functions/trig.rbc +0 -811
  276. data/lib/compass/sass_extensions/functions/urls.rbc +0 -5248
  277. data/lib/compass/sass_extensions/monkey_patches.rbc +0 -134
  278. data/lib/compass/sass_extensions/monkey_patches/browser_support.rbc +0 -2169
  279. data/lib/compass/sass_extensions/monkey_patches/traversal.rbc +0 -660
  280. data/lib/compass/sass_extensions/sprites.rbc +0 -363
  281. data/lib/compass/sass_extensions/sprites/base.rbc +0 -4529
  282. data/lib/compass/sass_extensions/sprites/engines.rbc +0 -662
  283. data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc +0 -1074
  284. data/lib/compass/sass_extensions/sprites/image.rbc +0 -2961
  285. data/lib/compass/sass_extensions/sprites/image_methods.rbc +0 -900
  286. data/lib/compass/sass_extensions/sprites/image_row.rbc +0 -1168
  287. data/lib/compass/sass_extensions/sprites/layout_methods.rbc +0 -3236
  288. data/lib/compass/sass_extensions/sprites/row_fitter.rbc +0 -2067
  289. data/lib/compass/sass_extensions/sprites/sprite_map.rbc +0 -1991
  290. data/lib/compass/sass_extensions/sprites/sprite_methods.rbc +0 -3190
  291. data/lib/compass/sass_extensions/sprites/sprites.rbc +0 -1573
  292. data/lib/compass/sprite_importer.rbc +0 -3573
  293. data/lib/compass/util.rbc +0 -552
  294. data/lib/compass/version.rbc +0 -1245
  295. data/test/fixtures/stylesheets/blueprint/config.rb +0 -14
  296. data/test/fixtures/stylesheets/blueprint/css/ie.css +0 -76
  297. data/test/fixtures/stylesheets/blueprint/css/print.css +0 -56
  298. data/test/fixtures/stylesheets/blueprint/css/screen.css +0 -816
  299. data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +0 -58
  300. data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +0 -80
  301. data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +0 -12
  302. data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +0 -30
  303. data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +0 -42
  304. data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +0 -435
  305. data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +0 -76
  306. data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +0 -46
  307. data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +0 -40
  308. data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +0 -651
  309. data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +0 -60
  310. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +0 -36
  311. data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +0 -40
  312. data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +0 -437
  313. data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +0 -45
  314. data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +0 -146
  315. data/test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css +0 -35
  316. data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
  317. data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
  318. data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
  319. data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
  320. data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
  321. data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
  322. data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
  323. data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
  324. data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
  325. data/test/fixtures/stylesheets/blueprint/sass/ie.sass +0 -3
  326. data/test/fixtures/stylesheets/blueprint/sass/print.sass +0 -3
  327. data/test/fixtures/stylesheets/blueprint/sass/screen.sass +0 -18
  328. data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +0 -4
  329. data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +0 -34
  330. data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +0 -3
  331. data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +0 -3
  332. data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +0 -5
  333. data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +0 -3
  334. data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +0 -3
  335. data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +0 -3
  336. data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +0 -13
  337. data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +0 -3
  338. data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +0 -5
  339. data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +0 -5
  340. data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +0 -1
  341. data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +0 -3
  342. data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +0 -5
  343. data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +0 -3
  344. data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +0 -3
  345. data/test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png +0 -0
  346. data/test/helpers/command_line.rbc +0 -2820
  347. data/test/helpers/diff.rbc +0 -1104
  348. data/test/helpers/io.rbc +0 -962
  349. data/test/helpers/rails.rbc +0 -1116
  350. data/test/helpers/test_case.rbc +0 -1255
  351. data/test/integrations/compass_test.rbc +0 -6589
  352. data/test/integrations/rails_integration_test.rbc +0 -1342
  353. data/test/integrations/sprites_test.rbc +0 -6192
  354. data/test/test_helper.rbc +0 -1694
  355. data/test/units/actions_test.rbc +0 -644
  356. data/test/units/command_line_test.rbc +0 -1532
  357. data/test/units/compass_png_test.rbc +0 -0
  358. data/test/units/configuration_test.rbc +0 -3833
  359. data/test/units/rails_configuration_test.rbc +0 -1032
  360. data/test/units/sass_extensions_test.rbc +0 -3586
  361. data/test/units/sprites/engine_test.rbc +0 -962
  362. data/test/units/sprites/image_row_test.rbc +0 -1578
  363. data/test/units/sprites/image_test.rbc +0 -2836
  364. data/test/units/sprites/importer_test.rbc +0 -2620
  365. data/test/units/sprites/row_fitter_test.rbc +0 -1479
  366. data/test/units/sprites/sprite_command_test.rbc +0 -1147
  367. data/test/units/sprites/sprite_map_test.rbc +0 -6515
@@ -74,6 +74,11 @@ class SpritesImageTest < Test::Unit::TestCase
74
74
  assert img.repeat_x?
75
75
  end
76
76
 
77
+ test 'image repeat-y' do
78
+ img = test_image "selectors_ten_by_ten_repeat" => Sass::Script::String.new('repeat-y')
79
+ assert img.repeat_y?
80
+ end
81
+
77
82
  test 'image position' do
78
83
  image = test_image "selectors_ten_by_ten_position" => Sass::Script::Number.new(100, ["px"])
79
84
  assert_equal 100, image.position.value
@@ -0,0 +1,46 @@
1
+ require 'test_helper'
2
+ require 'compass/sass_extensions/sprites/images'
3
+
4
+ class ImagesTest < Test::Unit::TestCase
5
+
6
+ def setup
7
+ @images = Compass::SassExtensions::Sprites::Images.new
8
+ @images << OpenStruct.new(:foo => 1, :name => 'bob', :size => 1200, :width => 10)
9
+ @images << OpenStruct.new(:foo => 2, :name => 'bob', :size => 300, :width => 100)
10
+ @images << OpenStruct.new(:foo => 3, :name => 'aob', :size => 120, :width => 50)
11
+ @images << OpenStruct.new(:foo => 4, :name => 'zbob', :size => 600, :width => 55)
12
+ end
13
+
14
+
15
+ test "sort by size" do
16
+ @images.sort_by! :size
17
+ assert_equal [3, 2, 4, 1], @images.map(&:foo)
18
+ end
19
+
20
+ test "sort by !size" do
21
+ @images.sort_by! '!size'
22
+ assert_equal [3, 2, 4, 1].reverse, @images.map(&:foo)
23
+ end
24
+
25
+ test "sort by name" do
26
+ @images.sort_by! :name
27
+ assert_equal [3, 2, 1, 4], @images.map(&:foo)
28
+ end
29
+
30
+ test "sort by !name" do
31
+ @images.sort_by! '!name'
32
+ assert_equal [3, 2, 1, 4].reverse, @images.map(&:foo)
33
+ end
34
+
35
+ test "sort by width" do
36
+ @images.sort_by! :width
37
+ assert_equal [1, 3, 4, 2], @images.map(&:foo)
38
+ end
39
+
40
+ test "sort by !width" do
41
+ @images.sort_by! '!width'
42
+ assert_equal [1, 3, 4, 2].reverse, @images.map(&:foo)
43
+ end
44
+
45
+ end
46
+
@@ -54,10 +54,10 @@ class LayoutTest < Test::Unit::TestCase
54
54
  # REPEAT_X
55
55
 
56
56
  test 'repeat-x layout single image' do
57
- opts = {"repeat_x_three_repeat" => Sass::Script::String.new('repeat-x')}
57
+ opts = {"repeat_x_three_repeat" => Sass::Script::String.new('repeat-x'), 'sort_by' => Sass::Script::String.new('width')}
58
58
  map = sprite_map_test(@options.merge(opts), 'repeat_x/*.png')
59
59
  assert_equal 6, map.width
60
- assert_equal [0, 4, 7, 9, 14, 4, 4], map.images.map(&:top)
60
+ assert_equal [0, 1, 3, 6, 10, 3, 3], map.images.map(&:top)
61
61
  assert_equal [0, 0, 0, 0, 0, 0, 3], map.images.map(&:left)
62
62
  end
63
63
 
@@ -67,6 +67,22 @@ class LayoutTest < Test::Unit::TestCase
67
67
  assert_equal 12, map.width
68
68
  end
69
69
 
70
+ test "repeat-y layout single image" do
71
+ opts = {"layout" => Sass::Script::String.new('horizontal'), "squares_ten_by_ten_repeat" => Sass::Script::String.new('repeat-y')}
72
+ map = sprite_map_test(@options.merge(opts), 'squares/*.png')
73
+ assert_equal 30, map.width
74
+ assert_equal 20, map.height
75
+ assert_equal 3, map.images.size
76
+ assert_equal [[0,0], [0,10], [10,0]], map.images.map { |img| [img.top, img.left] }
77
+ assert map.horizontal?
78
+ end
79
+
80
+ test "repeat-y layout multi image" do
81
+ opts = {"layout" => Sass::Script::String.new('horizontal'), "repeat_x_three_repeat" => Sass::Script::String.new('repeat-y'), "repeat_x_four_repeat" => Sass::Script::String.new('repeat-y')}
82
+ map = sprite_map_test(@options.merge(opts), 'repeat_x/*.png')
83
+ assert_equal [[0, 0], [0, 5], [0, 9], [0, 10], [0, 13], [4, 5], [8, 5], [3, 10], [6, 10], [9, 10]], map.images.map { |img| [img.top, img.left] }
84
+ end
85
+
70
86
  # VERTICAL LAYOUT
71
87
 
72
88
  it "should have a vertical layout" do
@@ -0,0 +1,39 @@
1
+ require 'test_helper'
2
+ require 'compass'
3
+
4
+ class WatcherCompilerTest < Test::Unit::TestCase
5
+
6
+ def setup
7
+ @working_path = File.join(fixture_path, 'stylesheets', 'valid')
8
+ @to = File.join(@working_path, 'css')
9
+ remove_to
10
+ Compass.add_configuration({:sass_path => File.join(@working_path, 'sass'), :css_path => @to }, 'test')
11
+ end
12
+
13
+ test "it sould create a new instance of a compass compiler" do
14
+ watch_compiler = Compass::Watcher::Compiler.new(@working_path, {})
15
+ assert watch_compiler.compiler.is_a?(Compass::Compiler)
16
+ end
17
+
18
+ test "debug info gets passed into sass options" do
19
+ watch_compiler = Compass::Watcher::Compiler.new(@working_path, {:debug_info => true})
20
+ assert watch_compiler.compiler_options[:sass][:debug_info]
21
+ end
22
+
23
+ test "should run compiler" do
24
+ watch_compiler = Compass::Watcher::Compiler.new(@working_path, {})
25
+ watch_compiler.compiler.expects(:reset_staleness_checker!).once
26
+ watch_compiler.compiler.expects(:run).once
27
+ watch_compiler.expects(:log_action).once
28
+ watch_compiler.compile
29
+ end
30
+
31
+ def remove_to
32
+ ::FileUtils.rm_r @to if File.exists?(@to)
33
+ end
34
+
35
+ def teardown
36
+ remove_to
37
+ end
38
+
39
+ end
@@ -0,0 +1,65 @@
1
+ require 'test_helper'
2
+ require 'compass'
3
+
4
+ class ProjectWatcherTest < Test::Unit::TestCase
5
+
6
+ FOO = ['foo.scss']
7
+
8
+ def setup
9
+ @working_path = File.join(fixture_path, 'stylesheets', 'valid')
10
+ @to = File.join(@working_path, 'css')
11
+ remove_to
12
+ Compass.add_configuration({:sass_path => File.join(@working_path, 'sass'), :css_path => @to }, 'test')
13
+ @project_watcher = Compass::Watcher::ProjectWatcher.new(@working_path)
14
+ end
15
+
16
+ test "should initalize correctly" do
17
+ assert @project_watcher.listener.is_a?(Listen::Listener)
18
+ end
19
+
20
+ test "compiler" do
21
+ assert @project_watcher.compiler.is_a?(Compass::Compiler)
22
+ end
23
+
24
+ test "sass callback add" do
25
+ @project_watcher.expects(:sass_added).with(FOO).once
26
+ @project_watcher.send(:sass_callback, @working_path, FOO, :added)
27
+ end
28
+
29
+ test "sass callback modified" do
30
+ @project_watcher.expects(:sass_modified).with(FOO).once
31
+ @project_watcher.send(:sass_callback, @working_path, FOO, :modified)
32
+ end
33
+
34
+ test "sass callback removed" do
35
+ @project_watcher.expects(:sass_removed).with(FOO).once
36
+ @project_watcher.send(:sass_callback, @working_path, FOO, :removed)
37
+ end
38
+
39
+ SAMPLE = ['sass/sample.scss']
40
+
41
+ test "listen callback modified" do
42
+ @project_watcher.expects(:sass_modified).with(SAMPLE[0]).once
43
+ @project_watcher.send(:listen_callback, SAMPLE, [], [])
44
+ end
45
+
46
+ test "listen callback added" do
47
+ @project_watcher.expects(:sass_added).with(SAMPLE[0]).once
48
+ @project_watcher.send(:listen_callback, [], SAMPLE, [])
49
+ end
50
+
51
+ test "listen callback removed" do
52
+ @project_watcher.expects(:sass_removed).with(SAMPLE[0]).once
53
+ @project_watcher.send(:listen_callback, [], [], SAMPLE)
54
+ end
55
+
56
+ def remove_to
57
+ ::FileUtils.rm_r @to if File.exists?(@to)
58
+ end
59
+
60
+ def teardown
61
+ remove_to
62
+ end
63
+
64
+
65
+ end
@@ -0,0 +1,42 @@
1
+ require 'test_helper'
2
+ require 'compass'
3
+
4
+ class WatcherWatchTest < Test::Unit::TestCase
5
+
6
+ test "should throw exception if given absolute path" do
7
+ begin
8
+ watcher = Compass::Watcher::Watch.new('/images/*.png') do
9
+ puts "something"
10
+ end
11
+ rescue Compass::Watcher::AbsolutePathError
12
+ assert true, "Compass::Watcher::AbsolutePathError was not raised"
13
+ end
14
+ end
15
+
16
+ test "should throw exception if not given a block" do
17
+ begin
18
+ watcher = Compass::Watcher::Watch.new('images/*.png')
19
+ rescue Compass::Watcher::NoCallbackError
20
+ assert true, "Compass::Watcher::NoCallbackError was not raised"
21
+ end
22
+ end
23
+
24
+ test "changed path matches glob" do
25
+ watcher = Compass::Watcher::Watch.new('images/*.png') { }
26
+ assert watcher.match?('images/baz.png'), "Path does not match"
27
+ end
28
+
29
+ test "changed path doesn't matches glob" do
30
+ watcher = Compass::Watcher::Watch.new('images/*.png') { }
31
+ assert !watcher.match?('foo/baz.png'), "Path does match and it shouldn't"
32
+ end
33
+
34
+ test "can run callback" do
35
+ test = 0
36
+ watcher = Compass::Watcher::Watch.new('images/*.png') { test = 1}
37
+ watcher.run_callback(:project, :local, :action)
38
+ assert_equal 1, test
39
+ end
40
+
41
+
42
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.alpha.0
4
+ version: 0.13.alpha.2
5
5
  prerelease: 5
6
6
  platform: ruby
7
7
  authors:
@@ -14,11 +14,11 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2012-05-06 00:00:00.000000000Z
17
+ date: 2013-02-07 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: sass
21
- requirement: &70099030004620 !ruby/object:Gem::Requirement
21
+ requirement: &70305747639000 !ruby/object:Gem::Requirement
22
22
  none: false
23
23
  requirements:
24
24
  - - ~>
@@ -26,10 +26,10 @@ dependencies:
26
26
  version: 3.2.0.alpha.93
27
27
  type: :runtime
28
28
  prerelease: false
29
- version_requirements: *70099030004620
29
+ version_requirements: *70305747639000
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: chunky_png
32
- requirement: &70099030004080 !ruby/object:Gem::Requirement
32
+ requirement: &70305747638360 !ruby/object:Gem::Requirement
33
33
  none: false
34
34
  requirements:
35
35
  - - ~>
@@ -37,20 +37,20 @@ dependencies:
37
37
  version: '1.2'
38
38
  type: :runtime
39
39
  prerelease: false
40
- version_requirements: *70099030004080
40
+ version_requirements: *70305747638360
41
41
  - !ruby/object:Gem::Dependency
42
- name: fssm
43
- requirement: &70099030003600 !ruby/object:Gem::Requirement
42
+ name: listen
43
+ requirement: &70305747637900 !ruby/object:Gem::Requirement
44
44
  none: false
45
45
  requirements:
46
- - - ! '>='
46
+ - - ~>
47
47
  - !ruby/object:Gem::Version
48
- version: 0.2.7
48
+ version: 0.5.3
49
49
  type: :runtime
50
50
  prerelease: false
51
- version_requirements: *70099030003600
51
+ version_requirements: *70305747637900
52
52
  description: Compass is a Sass-based Stylesheet Framework that streamlines the creation
53
- and maintainance of CSS.
53
+ and maintenance of CSS.
54
54
  email: chris@eppsteins.net
55
55
  executables:
56
56
  - compass
@@ -62,7 +62,6 @@ files:
62
62
  - VERSION.yml
63
63
  - Rakefile
64
64
  - bin/compass
65
- - bin/compass.compiled.rbc
66
65
  - examples/blueprint_default/config.rb
67
66
  - examples/blueprint_default/images/grid.png
68
67
  - examples/blueprint_default/index.html.haml
@@ -139,7 +138,6 @@ files:
139
138
  - examples/compass/images/emblem/symbolic-link.png
140
139
  - examples/compass/images/emblem/system.png
141
140
  - examples/compass/images/emblem/unreadable.png
142
- - examples/compass/images/emblem-a043c4f148.png
143
141
  - examples/compass/images/flag/ad.png
144
142
  - examples/compass/images/flag/ae.png
145
143
  - examples/compass/images/flag/af.png
@@ -387,8 +385,6 @@ files:
387
385
  - examples/compass/images/flag/za.png
388
386
  - examples/compass/images/flag/zm.png
389
387
  - examples/compass/images/flag/zw.png
390
- - examples/compass/images/flag-03c3b29b35.png
391
- - examples/compass/images/flag-21cfbfbfc8.png
392
388
  - examples/compass/images/icon-chrome.png
393
389
  - examples/compass/images/icon-firefox.png
394
390
  - examples/compass/images/icon-ie.png
@@ -439,65 +435,8 @@ files:
439
435
  - examples/yui/templates.html.haml
440
436
  - examples/yui/test.jpg
441
437
  - examples/yui/typography.html.haml
442
- - examples/css3/extensions/fancy-fonts/templates/project/bgrove.otf
443
- - examples/css3/extensions/fancy-fonts/templates/project/bgrove.ttf
444
438
  - examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass
445
439
  - examples/css3/extensions/fancy-fonts/templates/project/manifest.rb
446
- - examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf
447
- - frameworks/blueprint/stylesheets/_blueprint.scss
448
- - frameworks/blueprint/stylesheets/blueprint/_buttons.scss
449
- - frameworks/blueprint/stylesheets/blueprint/_colors.scss
450
- - frameworks/blueprint/stylesheets/blueprint/_debug.scss
451
- - frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss
452
- - frameworks/blueprint/stylesheets/blueprint/_form.scss
453
- - frameworks/blueprint/stylesheets/blueprint/_grid.scss
454
- - frameworks/blueprint/stylesheets/blueprint/_ie.scss
455
- - frameworks/blueprint/stylesheets/blueprint/_interaction.scss
456
- - frameworks/blueprint/stylesheets/blueprint/_link-icons.scss
457
- - frameworks/blueprint/stylesheets/blueprint/_liquid.scss
458
- - frameworks/blueprint/stylesheets/blueprint/_print.scss
459
- - frameworks/blueprint/stylesheets/blueprint/_reset.scss
460
- - frameworks/blueprint/stylesheets/blueprint/_rtl.scss
461
- - frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss
462
- - frameworks/blueprint/stylesheets/blueprint/_typography.scss
463
- - frameworks/blueprint/stylesheets/blueprint/_utilities.scss
464
- - frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss
465
- - frameworks/blueprint/templates/basic/grid.png
466
- - frameworks/blueprint/templates/basic/ie.sass
467
- - frameworks/blueprint/templates/basic/manifest.rb
468
- - frameworks/blueprint/templates/basic/partials/_base.sass
469
- - frameworks/blueprint/templates/basic/print.sass
470
- - frameworks/blueprint/templates/basic/screen.sass
471
- - frameworks/blueprint/templates/buttons/buttons/cross.png
472
- - frameworks/blueprint/templates/buttons/buttons/key.png
473
- - frameworks/blueprint/templates/buttons/buttons/tick.png
474
- - frameworks/blueprint/templates/buttons/buttons.sass
475
- - frameworks/blueprint/templates/buttons/manifest.rb
476
- - frameworks/blueprint/templates/link_icons/link_icons/doc.png
477
- - frameworks/blueprint/templates/link_icons/link_icons/email.png
478
- - frameworks/blueprint/templates/link_icons/link_icons/external.png
479
- - frameworks/blueprint/templates/link_icons/link_icons/feed.png
480
- - frameworks/blueprint/templates/link_icons/link_icons/im.png
481
- - frameworks/blueprint/templates/link_icons/link_icons/pdf.png
482
- - frameworks/blueprint/templates/link_icons/link_icons/visited.png
483
- - frameworks/blueprint/templates/link_icons/link_icons/xls.png
484
- - frameworks/blueprint/templates/link_icons/link_icons.sass
485
- - frameworks/blueprint/templates/link_icons/manifest.rb
486
- - frameworks/blueprint/templates/project/grid.png
487
- - frameworks/blueprint/templates/project/ie.sass
488
- - frameworks/blueprint/templates/project/manifest.rb
489
- - frameworks/blueprint/templates/project/partials/_base.sass
490
- - frameworks/blueprint/templates/project/print.sass
491
- - frameworks/blueprint/templates/project/screen.sass
492
- - frameworks/blueprint/templates/semantic/grid.png
493
- - frameworks/blueprint/templates/semantic/ie.sass
494
- - frameworks/blueprint/templates/semantic/manifest.rb
495
- - frameworks/blueprint/templates/semantic/partials/_base.sass
496
- - frameworks/blueprint/templates/semantic/partials/_form.sass
497
- - frameworks/blueprint/templates/semantic/partials/_page.sass
498
- - frameworks/blueprint/templates/semantic/partials/_two_col.sass
499
- - frameworks/blueprint/templates/semantic/print.sass
500
- - frameworks/blueprint/templates/semantic/screen.sass
501
440
  - frameworks/compass/stylesheets/_compass.scss
502
441
  - frameworks/compass/stylesheets/_lemonade.scss
503
442
  - frameworks/compass/stylesheets/compass/_css3.scss
@@ -517,12 +456,15 @@ files:
517
456
  - frameworks/compass/stylesheets/compass/css3/_box-sizing.scss
518
457
  - frameworks/compass/stylesheets/compass/css3/_box.scss
519
458
  - frameworks/compass/stylesheets/compass/css3/_columns.scss
459
+ - frameworks/compass/stylesheets/compass/css3/_filter.scss
520
460
  - frameworks/compass/stylesheets/compass/css3/_font-face.scss
461
+ - frameworks/compass/stylesheets/compass/css3/_hyphenation.scss
521
462
  - frameworks/compass/stylesheets/compass/css3/_images.scss
522
463
  - frameworks/compass/stylesheets/compass/css3/_inline-block.scss
523
464
  - frameworks/compass/stylesheets/compass/css3/_opacity.scss
524
465
  - frameworks/compass/stylesheets/compass/css3/_pie.scss
525
466
  - frameworks/compass/stylesheets/compass/css3/_regions.scss
467
+ - frameworks/compass/stylesheets/compass/css3/_selection.scss
526
468
  - frameworks/compass/stylesheets/compass/css3/_shared.scss
527
469
  - frameworks/compass/stylesheets/compass/css3/_text-shadow.scss
528
470
  - frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss
@@ -537,6 +479,7 @@ files:
537
479
  - frameworks/compass/stylesheets/compass/typography/_links.scss
538
480
  - frameworks/compass/stylesheets/compass/typography/_lists.scss
539
481
  - frameworks/compass/stylesheets/compass/typography/_text.scss
482
+ - frameworks/compass/stylesheets/compass/typography/_units.scss
540
483
  - frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss
541
484
  - frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss
542
485
  - frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss
@@ -599,203 +542,116 @@ files:
599
542
  - frameworks/compass/templates/project/screen.sass
600
543
  - frameworks/compass/templates/project/USAGE.markdown
601
544
  - lib/compass/actions.rb
602
- - lib/compass/actions.rbc
603
- - lib/compass/app_integration/merb.rbc
604
- - lib/compass/app_integration/rails/configuration_defaults.rbc
605
- - lib/compass/app_integration/rails/installer.rbc
606
545
  - lib/compass/app_integration/rails.rb
607
- - lib/compass/app_integration/rails.rbc
608
546
  - lib/compass/app_integration/stand_alone/configuration_defaults.rb
609
- - lib/compass/app_integration/stand_alone/configuration_defaults.rbc
610
547
  - lib/compass/app_integration/stand_alone/installer.rb
611
- - lib/compass/app_integration/stand_alone/installer.rbc
612
548
  - lib/compass/app_integration/stand_alone.rb
613
- - lib/compass/app_integration/stand_alone.rbc
614
549
  - lib/compass/app_integration.rb
615
- - lib/compass/app_integration.rbc
616
550
  - lib/compass/browser_support.rb
617
- - lib/compass/browser_support.rbc
618
551
  - lib/compass/commands/base.rb
619
- - lib/compass/commands/base.rbc
620
552
  - lib/compass/commands/clean_project.rb
621
- - lib/compass/commands/clean_project.rbc
622
553
  - lib/compass/commands/create_project.rb
623
- - lib/compass/commands/create_project.rbc
624
554
  - lib/compass/commands/default.rb
625
- - lib/compass/commands/default.rbc
626
555
  - lib/compass/commands/extension_command.rb
627
556
  - lib/compass/commands/generate_grid_background.rb
628
- - lib/compass/commands/generate_grid_background.rbc
629
557
  - lib/compass/commands/help.rb
630
- - lib/compass/commands/help.rbc
631
558
  - lib/compass/commands/imports.rb
632
- - lib/compass/commands/imports.rbc
633
559
  - lib/compass/commands/installer_command.rb
634
- - lib/compass/commands/installer_command.rbc
635
560
  - lib/compass/commands/interactive.rb
636
- - lib/compass/commands/interactive.rbc
637
561
  - lib/compass/commands/list_frameworks.rb
638
- - lib/compass/commands/list_frameworks.rbc
639
562
  - lib/compass/commands/print_version.rb
640
- - lib/compass/commands/print_version.rbc
641
563
  - lib/compass/commands/project_base.rb
642
- - lib/compass/commands/project_base.rbc
643
564
  - lib/compass/commands/project_stats.rb
644
- - lib/compass/commands/project_stats.rbc
645
565
  - lib/compass/commands/project_structure.rb
646
566
  - lib/compass/commands/registry.rb
647
- - lib/compass/commands/registry.rbc
648
567
  - lib/compass/commands/sprite.rb
649
- - lib/compass/commands/sprite.rbc
650
568
  - lib/compass/commands/stamp_pattern.rb
651
- - lib/compass/commands/stamp_pattern.rbc
652
569
  - lib/compass/commands/unpack_extension.rb
653
- - lib/compass/commands/unpack_extension.rbc
654
570
  - lib/compass/commands/update_project.rb
655
- - lib/compass/commands/update_project.rbc
656
571
  - lib/compass/commands/validate_project.rb
657
- - lib/compass/commands/validate_project.rbc
658
572
  - lib/compass/commands/watch_project.rb
659
- - lib/compass/commands/watch_project.rbc
660
573
  - lib/compass/commands/write_configuration.rb
661
- - lib/compass/commands/write_configuration.rbc
662
574
  - lib/compass/commands.rb
663
- - lib/compass/commands.rbc
664
575
  - lib/compass/compiler.rb
665
- - lib/compass/compiler.rbc
666
576
  - lib/compass/configuration/adapters.rb
667
- - lib/compass/configuration/adapters.rbc
668
577
  - lib/compass/configuration/comments.rb
669
- - lib/compass/configuration/comments.rbc
670
578
  - lib/compass/configuration/data.rb
671
- - lib/compass/configuration/data.rbc
672
579
  - lib/compass/configuration/defaults.rb
673
- - lib/compass/configuration/defaults.rbc
674
580
  - lib/compass/configuration/file_data.rb
675
- - lib/compass/configuration/file_data.rbc
676
581
  - lib/compass/configuration/helpers.rb
677
- - lib/compass/configuration/helpers.rbc
678
582
  - lib/compass/configuration/inheritance.rb
679
- - lib/compass/configuration/inheritance.rbc
680
583
  - lib/compass/configuration/paths.rb
681
- - lib/compass/configuration/paths.rbc
682
584
  - lib/compass/configuration/serialization.rb
683
- - lib/compass/configuration/serialization.rbc
684
585
  - lib/compass/configuration.rb
685
- - lib/compass/configuration.rbc
686
586
  - lib/compass/dependencies.rb
687
- - lib/compass/dependencies.rbc
688
587
  - lib/compass/errors.rb
689
- - lib/compass/errors.rbc
690
588
  - lib/compass/exec/command_option_parser.rb
691
- - lib/compass/exec/command_option_parser.rbc
692
589
  - lib/compass/exec/global_options_parser.rb
693
- - lib/compass/exec/global_options_parser.rbc
694
590
  - lib/compass/exec/helpers.rb
695
- - lib/compass/exec/helpers.rbc
696
591
  - lib/compass/exec/project_options_parser.rb
697
- - lib/compass/exec/project_options_parser.rbc
698
592
  - lib/compass/exec/sub_command_ui.rb
699
- - lib/compass/exec/sub_command_ui.rbc
700
593
  - lib/compass/exec/switch_ui.rb
701
594
  - lib/compass/exec.rb
702
- - lib/compass/exec.rbc
703
595
  - lib/compass/frameworks.rb
704
- - lib/compass/frameworks.rbc
705
596
  - lib/compass/grid_builder.rb
706
- - lib/compass/grid_builder.rbc
707
597
  - lib/compass/installers/bare_installer.rb
708
- - lib/compass/installers/bare_installer.rbc
709
598
  - lib/compass/installers/base.rb
710
- - lib/compass/installers/base.rbc
711
599
  - lib/compass/installers/manifest.rb
712
- - lib/compass/installers/manifest.rbc
713
600
  - lib/compass/installers/manifest_installer.rb
714
- - lib/compass/installers/manifest_installer.rbc
715
601
  - lib/compass/installers/template_context.rb
716
- - lib/compass/installers/template_context.rbc
717
602
  - lib/compass/installers.rb
718
- - lib/compass/installers.rbc
719
603
  - lib/compass/logger.rb
720
- - lib/compass/logger.rbc
721
604
  - lib/compass/quick_cache.rb
722
- - lib/compass/quick_cache.rbc
723
605
  - lib/compass/rails.rb
724
606
  - lib/compass/sass_extensions/functions/colors.rb
725
- - lib/compass/sass_extensions/functions/colors.rbc
726
607
  - lib/compass/sass_extensions/functions/constants.rb
727
- - lib/compass/sass_extensions/functions/constants.rbc
728
608
  - lib/compass/sass_extensions/functions/cross_browser_support.rb
729
- - lib/compass/sass_extensions/functions/cross_browser_support.rbc
730
609
  - lib/compass/sass_extensions/functions/display.rb
731
- - lib/compass/sass_extensions/functions/display.rbc
732
610
  - lib/compass/sass_extensions/functions/enumerate.rb
733
- - lib/compass/sass_extensions/functions/enumerate.rbc
734
611
  - lib/compass/sass_extensions/functions/env.rb
735
- - lib/compass/sass_extensions/functions/env.rbc
736
612
  - lib/compass/sass_extensions/functions/font_files.rb
737
- - lib/compass/sass_extensions/functions/font_files.rbc
738
613
  - lib/compass/sass_extensions/functions/gradient_support.rb
739
- - lib/compass/sass_extensions/functions/gradient_support.rbc
740
614
  - lib/compass/sass_extensions/functions/image_size.rb
741
- - lib/compass/sass_extensions/functions/image_size.rbc
742
615
  - lib/compass/sass_extensions/functions/inline_image.rb
743
- - lib/compass/sass_extensions/functions/inline_image.rbc
744
616
  - lib/compass/sass_extensions/functions/lists.rb
745
- - lib/compass/sass_extensions/functions/lists.rbc
746
617
  - lib/compass/sass_extensions/functions/math.rb
747
618
  - lib/compass/sass_extensions/functions/selectors.rb
748
- - lib/compass/sass_extensions/functions/selectors.rbc
749
619
  - lib/compass/sass_extensions/functions/sprites.rb
750
- - lib/compass/sass_extensions/functions/sprites.rbc
751
- - lib/compass/sass_extensions/functions/trig.rbc
752
620
  - lib/compass/sass_extensions/functions/urls.rb
753
- - lib/compass/sass_extensions/functions/urls.rbc
754
621
  - lib/compass/sass_extensions/functions.rb
755
- - lib/compass/sass_extensions/functions.rbc
756
622
  - lib/compass/sass_extensions/monkey_patches/browser_support.rb
757
- - lib/compass/sass_extensions/monkey_patches/browser_support.rbc
758
623
  - lib/compass/sass_extensions/monkey_patches/traversal.rb
759
- - lib/compass/sass_extensions/monkey_patches/traversal.rbc
760
624
  - lib/compass/sass_extensions/monkey_patches.rb
761
- - lib/compass/sass_extensions/monkey_patches.rbc
762
- - lib/compass/sass_extensions/sprites/base.rbc
763
625
  - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb
764
- - lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rbc
765
626
  - lib/compass/sass_extensions/sprites/engines.rb
766
- - lib/compass/sass_extensions/sprites/engines.rbc
767
627
  - lib/compass/sass_extensions/sprites/image.rb
768
- - lib/compass/sass_extensions/sprites/image.rbc
769
628
  - lib/compass/sass_extensions/sprites/image_methods.rb
770
- - lib/compass/sass_extensions/sprites/image_methods.rbc
771
629
  - lib/compass/sass_extensions/sprites/image_row.rb
772
- - lib/compass/sass_extensions/sprites/image_row.rbc
630
+ - lib/compass/sass_extensions/sprites/images.rb
631
+ - lib/compass/sass_extensions/sprites/layout/diagonal.rb
632
+ - lib/compass/sass_extensions/sprites/layout/horizontal.rb
633
+ - lib/compass/sass_extensions/sprites/layout/smart.rb
634
+ - lib/compass/sass_extensions/sprites/layout/vertical.rb
635
+ - lib/compass/sass_extensions/sprites/layout.rb
773
636
  - lib/compass/sass_extensions/sprites/layout_methods.rb
774
- - lib/compass/sass_extensions/sprites/layout_methods.rbc
775
637
  - lib/compass/sass_extensions/sprites/row_fitter.rb
776
- - lib/compass/sass_extensions/sprites/row_fitter.rbc
777
638
  - lib/compass/sass_extensions/sprites/sprite_map.rb
778
- - lib/compass/sass_extensions/sprites/sprite_map.rbc
779
639
  - lib/compass/sass_extensions/sprites/sprite_methods.rb
780
- - lib/compass/sass_extensions/sprites/sprite_methods.rbc
781
- - lib/compass/sass_extensions/sprites/sprites.rbc
782
640
  - lib/compass/sass_extensions/sprites.rb
783
- - lib/compass/sass_extensions/sprites.rbc
784
641
  - lib/compass/sass_extensions.rb
785
- - lib/compass/sass_extensions.rbc
786
642
  - lib/compass/sprite_importer/binding.rb
787
643
  - lib/compass/sprite_importer/content.erb
788
644
  - lib/compass/sprite_importer.rb
789
- - lib/compass/sprite_importer.rbc
790
645
  - lib/compass/stats.rb
791
646
  - lib/compass/test_case.rb
792
647
  - lib/compass/util.rb
793
- - lib/compass/util.rbc
794
648
  - lib/compass/validator.rb
795
649
  - lib/compass/version.rb
796
- - lib/compass/version.rbc
650
+ - lib/compass/watcher/compiler.rb
651
+ - lib/compass/watcher/project_watcher.rb
652
+ - lib/compass/watcher/watch.rb
653
+ - lib/compass/watcher.rb
797
654
  - lib/compass.rb
798
- - lib/compass.rbc
799
655
  - test/fixtures/extensions/only_stylesheets/compass_init.rb
800
656
  - test/fixtures/extensions/only_stylesheets/scss/only_stylesheets/foo.scss
801
657
  - test/fixtures/fonts/bgrove.base64.txt
@@ -828,56 +684,13 @@ files:
828
684
  - test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
829
685
  - test/fixtures/sprites/public/images/squares/ten-by-ten.png
830
686
  - test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
831
- - test/fixtures/stylesheets/blueprint/config.rb
832
- - test/fixtures/stylesheets/blueprint/css/ie.css
833
- - test/fixtures/stylesheets/blueprint/css/print.css
834
- - test/fixtures/stylesheets/blueprint/css/screen.css
835
- - test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css
836
- - test/fixtures/stylesheets/blueprint/css/single-imports/colors.css
837
- - test/fixtures/stylesheets/blueprint/css/single-imports/debug.css
838
- - test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
839
- - test/fixtures/stylesheets/blueprint/css/single-imports/form.css
840
- - test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
841
- - test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
842
- - test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
843
- - test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
844
- - test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
845
- - test/fixtures/stylesheets/blueprint/css/single-imports/print.css
846
- - test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
847
- - test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
848
- - test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
849
- - test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
850
- - test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
851
- - test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
852
- - test/fixtures/stylesheets/blueprint/images/grid.png
853
- - test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
854
- - test/fixtures/stylesheets/blueprint/images/link_icons/email.png
855
- - test/fixtures/stylesheets/blueprint/images/link_icons/external.png
856
- - test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
857
- - test/fixtures/stylesheets/blueprint/images/link_icons/im.png
858
- - test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
859
- - test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
860
- - test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
861
- - test/fixtures/stylesheets/blueprint/sass/ie.sass
862
- - test/fixtures/stylesheets/blueprint/sass/print.sass
863
- - test/fixtures/stylesheets/blueprint/sass/screen.sass
864
- - test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
865
- - test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
866
- - test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
867
- - test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
868
- - test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
869
- - test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
870
- - test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
871
- - test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
872
- - test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
873
- - test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
874
- - test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
875
- - test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
876
- - test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
877
- - test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
878
- - test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
879
- - test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
880
- - test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss
687
+ - test/fixtures/stylesheets/busted_font_urls/config.rb
688
+ - test/fixtures/stylesheets/busted_font_urls/css/screen.css
689
+ - test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
690
+ - test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
691
+ - test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
692
+ - test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
693
+ - test/fixtures/stylesheets/busted_font_urls/tmp/screen.css
881
694
  - test/fixtures/stylesheets/busted_image_urls/config.rb
882
695
  - test/fixtures/stylesheets/busted_image_urls/css/screen.css
883
696
  - test/fixtures/stylesheets/busted_image_urls/images/feed.png
@@ -890,15 +703,19 @@ files:
890
703
  - test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
891
704
  - test/fixtures/stylesheets/compass/css/animation.css
892
705
  - test/fixtures/stylesheets/compass/css/background-clip.css
706
+ - test/fixtures/stylesheets/compass/css/background-origin.css
707
+ - test/fixtures/stylesheets/compass/css/background-size.css
893
708
  - test/fixtures/stylesheets/compass/css/border_radius.css
894
709
  - test/fixtures/stylesheets/compass/css/box-sizeing.css
895
710
  - test/fixtures/stylesheets/compass/css/box.css
896
711
  - test/fixtures/stylesheets/compass/css/box_shadow.css
897
712
  - test/fixtures/stylesheets/compass/css/columns.css
713
+ - test/fixtures/stylesheets/compass/css/filters.css
898
714
  - test/fixtures/stylesheets/compass/css/fonts.css
899
715
  - test/fixtures/stylesheets/compass/css/force-wrap.css
900
716
  - test/fixtures/stylesheets/compass/css/gradients.css
901
717
  - test/fixtures/stylesheets/compass/css/grid_background.css
718
+ - test/fixtures/stylesheets/compass/css/hyphenation.css
902
719
  - test/fixtures/stylesheets/compass/css/image_size.css
903
720
  - test/fixtures/stylesheets/compass/css/images.css
904
721
  - test/fixtures/stylesheets/compass/css/layout.css
@@ -908,12 +725,15 @@ files:
908
725
  - test/fixtures/stylesheets/compass/css/pie.css
909
726
  - test/fixtures/stylesheets/compass/css/print.css
910
727
  - test/fixtures/stylesheets/compass/css/regions.css
728
+ - test/fixtures/stylesheets/compass/css/replacement.css
911
729
  - test/fixtures/stylesheets/compass/css/reset.css
730
+ - test/fixtures/stylesheets/compass/css/selection.css
912
731
  - test/fixtures/stylesheets/compass/css/sprites.css
913
732
  - test/fixtures/stylesheets/compass/css/stretching.css
914
733
  - test/fixtures/stylesheets/compass/css/text_shadow.css
915
734
  - test/fixtures/stylesheets/compass/css/transform.css
916
735
  - test/fixtures/stylesheets/compass/css/transition.css
736
+ - test/fixtures/stylesheets/compass/css/units.css
917
737
  - test/fixtures/stylesheets/compass/css/user-interface.css
918
738
  - test/fixtures/stylesheets/compass/css/utilities.css
919
739
  - test/fixtures/stylesheets/compass/css/vertical_rhythm.css
@@ -1169,19 +989,23 @@ files:
1169
989
  - test/fixtures/stylesheets/compass/images/flag/za.png
1170
990
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1171
991
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1172
- - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
992
+ - test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
1173
993
  - test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
1174
994
  - test/fixtures/stylesheets/compass/sass/animation.scss
1175
995
  - test/fixtures/stylesheets/compass/sass/background-clip.scss
996
+ - test/fixtures/stylesheets/compass/sass/background-origin.scss
997
+ - test/fixtures/stylesheets/compass/sass/background-size.scss
1176
998
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1177
999
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1178
1000
  - test/fixtures/stylesheets/compass/sass/box.sass
1179
1001
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
1180
1002
  - test/fixtures/stylesheets/compass/sass/columns.scss
1003
+ - test/fixtures/stylesheets/compass/sass/filters.scss
1181
1004
  - test/fixtures/stylesheets/compass/sass/fonts.sass
1182
1005
  - test/fixtures/stylesheets/compass/sass/force-wrap.scss
1183
1006
  - test/fixtures/stylesheets/compass/sass/gradients.sass
1184
1007
  - test/fixtures/stylesheets/compass/sass/grid_background.scss
1008
+ - test/fixtures/stylesheets/compass/sass/hyphenation.scss
1185
1009
  - test/fixtures/stylesheets/compass/sass/image_size.sass
1186
1010
  - test/fixtures/stylesheets/compass/sass/images.scss
1187
1011
  - test/fixtures/stylesheets/compass/sass/layout.sass
@@ -1191,12 +1015,15 @@ files:
1191
1015
  - test/fixtures/stylesheets/compass/sass/pie.scss
1192
1016
  - test/fixtures/stylesheets/compass/sass/print.sass
1193
1017
  - test/fixtures/stylesheets/compass/sass/regions.scss
1018
+ - test/fixtures/stylesheets/compass/sass/replacement.scss
1194
1019
  - test/fixtures/stylesheets/compass/sass/reset.sass
1020
+ - test/fixtures/stylesheets/compass/sass/selection.scss
1195
1021
  - test/fixtures/stylesheets/compass/sass/sprites.scss
1196
1022
  - test/fixtures/stylesheets/compass/sass/stretching.sass
1197
1023
  - test/fixtures/stylesheets/compass/sass/text_shadow.scss
1198
1024
  - test/fixtures/stylesheets/compass/sass/transform.scss
1199
1025
  - test/fixtures/stylesheets/compass/sass/transition.scss
1026
+ - test/fixtures/stylesheets/compass/sass/units.scss
1200
1027
  - test/fixtures/stylesheets/compass/sass/user-interface.scss
1201
1028
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1202
1029
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
@@ -1226,52 +1053,36 @@ files:
1226
1053
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1227
1054
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1228
1055
  - test/fixtures/stylesheets/valid/config.rb
1056
+ - test/fixtures/stylesheets/valid/css/simple.css
1229
1057
  - test/fixtures/stylesheets/valid/sass/simple.sass
1230
1058
  - test/helpers/command_line.rb
1231
- - test/helpers/command_line.rbc
1232
1059
  - test/helpers/diff.rb
1233
- - test/helpers/diff.rbc
1234
1060
  - test/helpers/io.rb
1235
- - test/helpers/io.rbc
1236
1061
  - test/helpers/rails.rb
1237
- - test/helpers/rails.rbc
1238
1062
  - test/helpers/test_case.rb
1239
- - test/helpers/test_case.rbc
1240
1063
  - test/integrations/compass_test.rb
1241
- - test/integrations/compass_test.rbc
1242
- - test/integrations/rails_integration_test.rbc
1243
1064
  - test/integrations/sprites_test.rb
1244
- - test/integrations/sprites_test.rbc
1245
1065
  - test/test_helper.rb
1246
- - test/test_helper.rbc
1247
1066
  - test/units/actions_test.rb
1248
- - test/units/actions_test.rbc
1249
1067
  - test/units/command_line_test.rb
1250
- - test/units/command_line_test.rbc
1251
1068
  - test/units/compass_module_test.rb
1252
1069
  - test/units/compass_png_test.rb
1253
- - test/units/compass_png_test.rbc
1254
1070
  - test/units/compiler_test.rb
1255
1071
  - test/units/configuration_test.rb
1256
- - test/units/configuration_test.rbc
1257
- - test/units/rails_configuration_test.rbc
1072
+ - test/units/regressions_test.rb
1258
1073
  - test/units/sass_extensions_test.rb
1259
- - test/units/sass_extensions_test.rbc
1260
1074
  - test/units/sprites/engine_test.rb
1261
- - test/units/sprites/engine_test.rbc
1262
1075
  - test/units/sprites/image_row_test.rb
1263
- - test/units/sprites/image_row_test.rbc
1264
1076
  - test/units/sprites/image_test.rb
1265
- - test/units/sprites/image_test.rbc
1077
+ - test/units/sprites/images_test.rb
1266
1078
  - test/units/sprites/importer_test.rb
1267
- - test/units/sprites/importer_test.rbc
1268
1079
  - test/units/sprites/layout_test.rb
1269
1080
  - test/units/sprites/row_fitter_test.rb
1270
- - test/units/sprites/row_fitter_test.rbc
1271
1081
  - test/units/sprites/sprite_command_test.rb
1272
- - test/units/sprites/sprite_command_test.rbc
1273
1082
  - test/units/sprites/sprite_map_test.rb
1274
- - test/units/sprites/sprite_map_test.rbc
1083
+ - test/units/watcher/compiler_test.rb
1084
+ - test/units/watcher/project_watcher_test.rb
1085
+ - test/units/watcher/watch_test.rb
1275
1086
  - features/command_line.feature
1276
1087
  - features/extensions.feature
1277
1088
  - features/step_definitions/command_line_steps.rb
@@ -1296,7 +1107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1296
1107
  version: 1.3.1
1297
1108
  requirements: []
1298
1109
  rubyforge_project:
1299
- rubygems_version: 1.8.10
1110
+ rubygems_version: 1.8.17
1300
1111
  signing_key:
1301
1112
  specification_version: 3
1302
1113
  summary: A Real Stylesheet Framework
@@ -1333,56 +1144,13 @@ test_files:
1333
1144
  - test/fixtures/sprites/public/images/selectors/ten-by-ten_target.png
1334
1145
  - test/fixtures/sprites/public/images/squares/ten-by-ten.png
1335
1146
  - test/fixtures/sprites/public/images/squares/twenty-by-twenty.png
1336
- - test/fixtures/stylesheets/blueprint/config.rb
1337
- - test/fixtures/stylesheets/blueprint/css/ie.css
1338
- - test/fixtures/stylesheets/blueprint/css/print.css
1339
- - test/fixtures/stylesheets/blueprint/css/screen.css
1340
- - test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css
1341
- - test/fixtures/stylesheets/blueprint/css/single-imports/colors.css
1342
- - test/fixtures/stylesheets/blueprint/css/single-imports/debug.css
1343
- - test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css
1344
- - test/fixtures/stylesheets/blueprint/css/single-imports/form.css
1345
- - test/fixtures/stylesheets/blueprint/css/single-imports/grid.css
1346
- - test/fixtures/stylesheets/blueprint/css/single-imports/ie.css
1347
- - test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css
1348
- - test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css
1349
- - test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css
1350
- - test/fixtures/stylesheets/blueprint/css/single-imports/print.css
1351
- - test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css
1352
- - test/fixtures/stylesheets/blueprint/css/single-imports/reset.css
1353
- - test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css
1354
- - test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css
1355
- - test/fixtures/stylesheets/blueprint/css/single-imports/typography.css
1356
- - test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css
1357
- - test/fixtures/stylesheets/blueprint/images/grid.png
1358
- - test/fixtures/stylesheets/blueprint/images/link_icons/doc.png
1359
- - test/fixtures/stylesheets/blueprint/images/link_icons/email.png
1360
- - test/fixtures/stylesheets/blueprint/images/link_icons/external.png
1361
- - test/fixtures/stylesheets/blueprint/images/link_icons/feed.png
1362
- - test/fixtures/stylesheets/blueprint/images/link_icons/im.png
1363
- - test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png
1364
- - test/fixtures/stylesheets/blueprint/images/link_icons/visited.png
1365
- - test/fixtures/stylesheets/blueprint/images/link_icons/xls.png
1366
- - test/fixtures/stylesheets/blueprint/sass/ie.sass
1367
- - test/fixtures/stylesheets/blueprint/sass/print.sass
1368
- - test/fixtures/stylesheets/blueprint/sass/screen.sass
1369
- - test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss
1370
- - test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss
1371
- - test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss
1372
- - test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss
1373
- - test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss
1374
- - test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss
1375
- - test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss
1376
- - test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss
1377
- - test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss
1378
- - test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss
1379
- - test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss
1380
- - test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss
1381
- - test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss
1382
- - test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss
1383
- - test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss
1384
- - test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss
1385
- - test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss
1147
+ - test/fixtures/stylesheets/busted_font_urls/config.rb
1148
+ - test/fixtures/stylesheets/busted_font_urls/css/screen.css
1149
+ - test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf
1150
+ - test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf
1151
+ - test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf
1152
+ - test/fixtures/stylesheets/busted_font_urls/sass/screen.sass
1153
+ - test/fixtures/stylesheets/busted_font_urls/tmp/screen.css
1386
1154
  - test/fixtures/stylesheets/busted_image_urls/config.rb
1387
1155
  - test/fixtures/stylesheets/busted_image_urls/css/screen.css
1388
1156
  - test/fixtures/stylesheets/busted_image_urls/images/feed.png
@@ -1395,15 +1163,19 @@ test_files:
1395
1163
  - test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
1396
1164
  - test/fixtures/stylesheets/compass/css/animation.css
1397
1165
  - test/fixtures/stylesheets/compass/css/background-clip.css
1166
+ - test/fixtures/stylesheets/compass/css/background-origin.css
1167
+ - test/fixtures/stylesheets/compass/css/background-size.css
1398
1168
  - test/fixtures/stylesheets/compass/css/border_radius.css
1399
1169
  - test/fixtures/stylesheets/compass/css/box-sizeing.css
1400
1170
  - test/fixtures/stylesheets/compass/css/box.css
1401
1171
  - test/fixtures/stylesheets/compass/css/box_shadow.css
1402
1172
  - test/fixtures/stylesheets/compass/css/columns.css
1173
+ - test/fixtures/stylesheets/compass/css/filters.css
1403
1174
  - test/fixtures/stylesheets/compass/css/fonts.css
1404
1175
  - test/fixtures/stylesheets/compass/css/force-wrap.css
1405
1176
  - test/fixtures/stylesheets/compass/css/gradients.css
1406
1177
  - test/fixtures/stylesheets/compass/css/grid_background.css
1178
+ - test/fixtures/stylesheets/compass/css/hyphenation.css
1407
1179
  - test/fixtures/stylesheets/compass/css/image_size.css
1408
1180
  - test/fixtures/stylesheets/compass/css/images.css
1409
1181
  - test/fixtures/stylesheets/compass/css/layout.css
@@ -1413,12 +1185,15 @@ test_files:
1413
1185
  - test/fixtures/stylesheets/compass/css/pie.css
1414
1186
  - test/fixtures/stylesheets/compass/css/print.css
1415
1187
  - test/fixtures/stylesheets/compass/css/regions.css
1188
+ - test/fixtures/stylesheets/compass/css/replacement.css
1416
1189
  - test/fixtures/stylesheets/compass/css/reset.css
1190
+ - test/fixtures/stylesheets/compass/css/selection.css
1417
1191
  - test/fixtures/stylesheets/compass/css/sprites.css
1418
1192
  - test/fixtures/stylesheets/compass/css/stretching.css
1419
1193
  - test/fixtures/stylesheets/compass/css/text_shadow.css
1420
1194
  - test/fixtures/stylesheets/compass/css/transform.css
1421
1195
  - test/fixtures/stylesheets/compass/css/transition.css
1196
+ - test/fixtures/stylesheets/compass/css/units.css
1422
1197
  - test/fixtures/stylesheets/compass/css/user-interface.css
1423
1198
  - test/fixtures/stylesheets/compass/css/utilities.css
1424
1199
  - test/fixtures/stylesheets/compass/css/vertical_rhythm.css
@@ -1674,19 +1449,23 @@ test_files:
1674
1449
  - test/fixtures/stylesheets/compass/images/flag/za.png
1675
1450
  - test/fixtures/stylesheets/compass/images/flag/zm.png
1676
1451
  - test/fixtures/stylesheets/compass/images/flag/zw.png
1677
- - test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png
1452
+ - test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png
1678
1453
  - test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
1679
1454
  - test/fixtures/stylesheets/compass/sass/animation.scss
1680
1455
  - test/fixtures/stylesheets/compass/sass/background-clip.scss
1456
+ - test/fixtures/stylesheets/compass/sass/background-origin.scss
1457
+ - test/fixtures/stylesheets/compass/sass/background-size.scss
1681
1458
  - test/fixtures/stylesheets/compass/sass/border_radius.scss
1682
1459
  - test/fixtures/stylesheets/compass/sass/box-sizeing.scss
1683
1460
  - test/fixtures/stylesheets/compass/sass/box.sass
1684
1461
  - test/fixtures/stylesheets/compass/sass/box_shadow.scss
1685
1462
  - test/fixtures/stylesheets/compass/sass/columns.scss
1463
+ - test/fixtures/stylesheets/compass/sass/filters.scss
1686
1464
  - test/fixtures/stylesheets/compass/sass/fonts.sass
1687
1465
  - test/fixtures/stylesheets/compass/sass/force-wrap.scss
1688
1466
  - test/fixtures/stylesheets/compass/sass/gradients.sass
1689
1467
  - test/fixtures/stylesheets/compass/sass/grid_background.scss
1468
+ - test/fixtures/stylesheets/compass/sass/hyphenation.scss
1690
1469
  - test/fixtures/stylesheets/compass/sass/image_size.sass
1691
1470
  - test/fixtures/stylesheets/compass/sass/images.scss
1692
1471
  - test/fixtures/stylesheets/compass/sass/layout.sass
@@ -1696,12 +1475,15 @@ test_files:
1696
1475
  - test/fixtures/stylesheets/compass/sass/pie.scss
1697
1476
  - test/fixtures/stylesheets/compass/sass/print.sass
1698
1477
  - test/fixtures/stylesheets/compass/sass/regions.scss
1478
+ - test/fixtures/stylesheets/compass/sass/replacement.scss
1699
1479
  - test/fixtures/stylesheets/compass/sass/reset.sass
1480
+ - test/fixtures/stylesheets/compass/sass/selection.scss
1700
1481
  - test/fixtures/stylesheets/compass/sass/sprites.scss
1701
1482
  - test/fixtures/stylesheets/compass/sass/stretching.sass
1702
1483
  - test/fixtures/stylesheets/compass/sass/text_shadow.scss
1703
1484
  - test/fixtures/stylesheets/compass/sass/transform.scss
1704
1485
  - test/fixtures/stylesheets/compass/sass/transition.scss
1486
+ - test/fixtures/stylesheets/compass/sass/units.scss
1705
1487
  - test/fixtures/stylesheets/compass/sass/user-interface.scss
1706
1488
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1707
1489
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
@@ -1731,52 +1513,36 @@ test_files:
1731
1513
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/print.css
1732
1514
  - test/fixtures/stylesheets/uses_only_stylesheets_ext/stylesheets/screen.css
1733
1515
  - test/fixtures/stylesheets/valid/config.rb
1516
+ - test/fixtures/stylesheets/valid/css/simple.css
1734
1517
  - test/fixtures/stylesheets/valid/sass/simple.sass
1735
1518
  - test/helpers/command_line.rb
1736
- - test/helpers/command_line.rbc
1737
1519
  - test/helpers/diff.rb
1738
- - test/helpers/diff.rbc
1739
1520
  - test/helpers/io.rb
1740
- - test/helpers/io.rbc
1741
1521
  - test/helpers/rails.rb
1742
- - test/helpers/rails.rbc
1743
1522
  - test/helpers/test_case.rb
1744
- - test/helpers/test_case.rbc
1745
1523
  - test/integrations/compass_test.rb
1746
- - test/integrations/compass_test.rbc
1747
- - test/integrations/rails_integration_test.rbc
1748
1524
  - test/integrations/sprites_test.rb
1749
- - test/integrations/sprites_test.rbc
1750
1525
  - test/test_helper.rb
1751
- - test/test_helper.rbc
1752
1526
  - test/units/actions_test.rb
1753
- - test/units/actions_test.rbc
1754
1527
  - test/units/command_line_test.rb
1755
- - test/units/command_line_test.rbc
1756
1528
  - test/units/compass_module_test.rb
1757
1529
  - test/units/compass_png_test.rb
1758
- - test/units/compass_png_test.rbc
1759
1530
  - test/units/compiler_test.rb
1760
1531
  - test/units/configuration_test.rb
1761
- - test/units/configuration_test.rbc
1762
- - test/units/rails_configuration_test.rbc
1532
+ - test/units/regressions_test.rb
1763
1533
  - test/units/sass_extensions_test.rb
1764
- - test/units/sass_extensions_test.rbc
1765
1534
  - test/units/sprites/engine_test.rb
1766
- - test/units/sprites/engine_test.rbc
1767
1535
  - test/units/sprites/image_row_test.rb
1768
- - test/units/sprites/image_row_test.rbc
1769
1536
  - test/units/sprites/image_test.rb
1770
- - test/units/sprites/image_test.rbc
1537
+ - test/units/sprites/images_test.rb
1771
1538
  - test/units/sprites/importer_test.rb
1772
- - test/units/sprites/importer_test.rbc
1773
1539
  - test/units/sprites/layout_test.rb
1774
1540
  - test/units/sprites/row_fitter_test.rb
1775
- - test/units/sprites/row_fitter_test.rbc
1776
1541
  - test/units/sprites/sprite_command_test.rb
1777
- - test/units/sprites/sprite_command_test.rbc
1778
1542
  - test/units/sprites/sprite_map_test.rb
1779
- - test/units/sprites/sprite_map_test.rbc
1543
+ - test/units/watcher/compiler_test.rb
1544
+ - test/units/watcher/project_watcher_test.rb
1545
+ - test/units/watcher/watch_test.rb
1780
1546
  - features/command_line.feature
1781
1547
  - features/extensions.feature
1782
1548
  - features/step_definitions/command_line_steps.rb