From ad0eef5e8ac6bf8b0d42361ef194f8291b0d2608 Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Wed, 13 Sep 2023 00:34:37 -0300 Subject: [PATCH] Add missing windows extensions When running on Windows, wdm is required in order to properly do incremental updates and regeneration. Fix dependency on timezone to match docs See https://jekyllrb.com/docs/installation/windows/#time-zone-management --- Gemfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Gemfile b/Gemfile index d1d370852a7c..a22beae715ac 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,14 @@ source "https://rubygems.org" +gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform? + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", ">= 1", "< 3" + gem "tzinfo-data" + end + gemspec