module ChefCLI::Helpers
def with_file(path, mode = "wb+", &block)
and binary so that windows writes out what we tell it,
Open a file. By default, the mode is for read+write,
def with_file(path, mode = "wb+", &block) File.open(path, mode, &block) end