module Jekyll::Commands::Watch

def init_with_program(prog); end

def init_with_program(prog); end

def process(options)

Continuously watch if `watch` is set to true in the config.
Build your jekyll site
def process(options)
  Jekyll.logger.log_level = :error if options["quiet"]
  Jekyll::Watcher.watch(options) if options["watch"]
end