class Sass::Exec::SassConvert

def miscellaneous(opts)

def miscellaneous(opts)
  opts.separator ''
  opts.separator 'Miscellaneous:'
    opts.on('--cache-location PATH',
            'The path to save parsed Sass files. Defaults to .sass-cache.') do |loc|
      @options[:for_engine][:cache_location] = loc
    end
  opts.on('-C', '--no-cache', "Don't cache to sassc files.") do
    @options[:for_engine][:read_cache] = false
  end
  opts.on('-q', '--quiet', 'Silence warnings and status messages during conversion.') do |bool|
    @options[:for_engine][:quiet] = bool
  end
  opts.on('--trace', :NONE, 'Show a full Ruby stack trace on error') do
    @options[:trace] = true
  end
end