nicojensen.de/vendor/bundle/gems/jekyll-watch-2.1.2/lib/jekyll/commands/watch.rb

19 lines
413 B
Ruby
Raw Normal View History

2019-03-12 13:49:49 +01:00
# frozen_string_literal: true
module Jekyll
module Commands
module Watch
extend self
def init_with_program(prog); end
# Build your jekyll site
# Continuously watch if `watch` is set to true in the config.
def process(options)
Jekyll.logger.log_level = :error if options["quiet"]
Jekyll::Watcher.watch(options) if options["watch"]
end
end
end
end