class Steep::CLI

def process_watch

def process_watch
  Drivers::Watch.new(stdout: stdout, stderr: stderr).tap do |command|
    OptionParser.new do |opts|
      opts.banner = "Usage: steep watch [options] [dirs]"
      handle_logging_options opts
    end.parse!(argv)
    command.dirs.push *argv
  end.run
end