From 15104991e838fa600d6ed8f8d9757dda13dd27e3 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Wed, 24 Jan 2018 20:16:39 +0530 Subject: [PATCH] add gem "wdm" to all newly generated Gemfiles --- lib/jekyll/commands/new.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/jekyll/commands/new.rb b/lib/jekyll/commands/new.rb index f930d4d7ff8..3947ce43a3e 100644 --- a/lib/jekyll/commands/new.rb +++ b/lib/jekyll/commands/new.rb @@ -89,6 +89,9 @@ def gemfile_contents # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.0" if Gem.win_platform? + RUBY end