From cd467810fb5d488e08e14b3cbcb18809c4479db8 Mon Sep 17 00:00:00 2001 From: ADTC Date: Sat, 27 Mar 2021 02:57:40 +0800 Subject: [PATCH] Install wdm Ruby gem in Windows To avoid polling the file system for changes, Jekyll recommends installing the Windows Directory Monitor in a Windows environment. After merging this, those on Windows will need to run `bundle install` again. This shouldn't affect other environments. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 1d482a7..007383c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ source 'https://rubygems.org' gem 'github-pages', '>=180', group: :jekyll_plugins +gem 'wdm', '>= 0.1.0' if Gem.win_platform?