class Haml::Exec::CSS2Sass

def process_result

and runs the CSS compiler appropriately.
Processes the options set by the command-line arguments,
def process_result
  super
  input = @options[:input]
  output = @options[:output]
  output.write(::Sass::CSS.new(input, @module_opts).render)
end