Skip to content

Commit

Permalink
Fix dependency on timezone to match docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Nov 4, 2024
1 parent 7f3906b commit 64d16cf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions beautiful-jekyll-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,13 @@ 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?

# 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

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

0 comments on commit 64d16cf

Please sign in to comment.