lib/csscss/cli.rb in csscss-1.3.1 vs lib/csscss/cli.rb in csscss-1.3.2
- old
+ new
@@ -96,13 +96,10 @@
opts.on("--[no-]compass", "Enable compass extensions when parsing sass/scss (default is false)") do |compass|
enable_compass if @compass = compass
end
- opts.on("--compass-with-config config", "Enable compass extensions when parsing sass/scss and pass config file",
- "DEPRECATED: use --compass --require path/to/config.rb instead."
- ) do |config|
- deprecate("Use --compass --require #{config} instead of --compass-with-config #{config}")
+ opts.on("--compass-with-config config", "Enable compass extensions when parsing sass/scss and pass config file") do |config|
@compass = true
enable_compass(config)
end
opts.on("--require file.rb", "Load ruby file before running csscss.", "Great for bootstrapping requires/configurations") do |file|