Pass --no-line-comments to disable line comments.

This commit is contained in:
Chris Eppstein 2010-10-30 17:55:30 -07:00
parent a154d2e5cf
commit b601fb8d04
2 changed files with 5 additions and 0 deletions

View File

@ -13,6 +13,7 @@ COMPASS CHANGELOG
for that property for the current project
* Bug fix: In webkit, when the last gradient color stop was a percent less than 100%, the
intermediate values were being scaled to that value.
* You can now pass --no-line-comments to the Compass command line to disable line comments.
0.10.6 (10/11/2010)
-------------------

View File

@ -49,6 +49,10 @@ module Compass::Exec::ProjectOptionsParser
opts.on('--relative-assets', :NONE, 'Make compass asset helpers generate relative urls to assets.') do
self.options[:relative_assets] = true
end
opts.on('--no-line-comments', :NONE, 'Disable line comments.') do
self.options[:line_comments] = false
end
end
end