cssbristol / cssbristol.co.uk

Source code for the UoB Computer Science Society web portal
MIT License
12 stars 25 forks source link

Missing TZInfo on Windows #67

Closed rossng closed 1 year ago

rossng commented 4 years ago

While looking at #39 I discovered that bundle exec jekyll serve doesn't work on Windows because Jekyll doesn't know where to look for timezone info. There's a gem that provides it. Here's a Gemfile that's been updated to include it:

source 'https://rubygems.org'
gem 'github-pages', '>=204', group: :jekyll_plugins
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]