Skip to content

Commit

Permalink
Add missing windows extensions
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kzu committed Nov 7, 2024
1 parent 3920be6 commit ad0eef5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ad0eef5

Please sign in to comment.