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.

The tzinfo-data dependency is also reported missing (under Windows
at least, with jekyll 3.9.3).
  • Loading branch information
kzu committed Nov 1, 2024
1 parent 3920be6 commit 3fbf90e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@

source "https://rubygems.org"

gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?

gemspec

2 changes: 2 additions & 0 deletions beautiful-jekyll-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1"
spec.add_runtime_dependency "kramdown", "~> 2.3"
spec.add_runtime_dependency "webrick", "~> 1.8"
# This seems to only be required on Windows
spec.add_runtime_dependency "tzinfo-data", "~> 1.2023.3" if Gem.win_platform?

spec.add_development_dependency "bundler", ">= 1.16"
spec.add_development_dependency "rake", "~> 12.0"
Expand Down

0 comments on commit 3fbf90e

Please sign in to comment.