From 5571dc766e2143e39762ff0b47c41d1c2e154f4c Mon Sep 17 00:00:00 2001 From: Benjamin Sanders Date: Sat, 11 Oct 2025 10:34:24 -0400 Subject: Vendor bundled gems for deployment --- .../jekyll-watch-2.2.1/lib/jekyll/commands/watch.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 vendor/bundle/ruby/3.4.0/gems/jekyll-watch-2.2.1/lib/jekyll/commands/watch.rb (limited to 'vendor/bundle/ruby/3.4.0/gems/jekyll-watch-2.2.1/lib/jekyll/commands') diff --git a/vendor/bundle/ruby/3.4.0/gems/jekyll-watch-2.2.1/lib/jekyll/commands/watch.rb b/vendor/bundle/ruby/3.4.0/gems/jekyll-watch-2.2.1/lib/jekyll/commands/watch.rb new file mode 100644 index 0000000..0cb6f0d --- /dev/null +++ b/vendor/bundle/ruby/3.4.0/gems/jekyll-watch-2.2.1/lib/jekyll/commands/watch.rb @@ -0,0 +1,18 @@ +# 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 -- cgit v1.2.3