class Haml::CLI

def read_file(file)

def read_file(file)
  if file == '-'
    STDIN.read
  else
    File.read(file)
  end
end