class Closure::Compiler

def serialize_options(options)

Serialize hash options to the command-line format.
def serialize_options(options)
  options.map {|k, v| ["--#{k}", v.to_s] }.flatten
end