1+ source "https://rubygems.org"
12# Hello! This is where you manage which Jekyll version is used to run.
23# When you want to use a different version, change it below, save the
34# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
78# This will help ensure the proper Jekyll version is running.
89# Happy Jekylling!
910
10- source "https://rubygems.org"
11- gemspec
12-
13- gem "jekyll-theme-minima" , "~> 0.1.1"
14- gem "github-pages" , "~> 232" , group : :jekyll_plugins
15- gem "jekyll" , ENV [ "JEKYLL_VERSION" ] if ENV [ "JEKYLL_VERSION" ]
16- gem "kramdown-parser-gfm" if ENV [ "JEKYLL_VERSION" ] == "~> 3.9"
17-
11+ gem "jekyll" , "~> 4.4.1"
12+ # This is the default theme for new Jekyll sites. You may change this to anything you like.
13+ gem "minima" , "~> 2.5"
14+ # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
15+ # uncomment the line below. To upgrade, run `bundle update github-pages`.
16+ # gem "github-pages", group: :jekyll_plugins
17+ # If you have any plugins, put them here!
1818group :jekyll_plugins do
1919 gem "jekyll-feed" , "~> 0.17"
2020 gem "jekyll-remote-theme"
@@ -29,9 +29,16 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
2929 gem "tzinfo-data"
3030end
3131
32+ # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
33+ # and associated library.
34+ platforms :mingw , :x64_mingw , :mswin , :jruby do
35+ gem "tzinfo" , ">= 1" , "< 3"
36+ gem "tzinfo-data"
37+ end
38+
3239# Performance-booster for watching directories on Windows
33- gem "wdm" , "~> 0.1.1 " , :platforms => [ :mingw , :x64_mingw , :mswin ]
40+ gem "wdm" , "~> 0.1" , :platforms => [ :mingw , :x64_mingw , :mswin ]
3441
3542# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
3643# do not have a Java counterpart.
37- gem "http_parser.rb" , "~> 0.6.0" , :platforms => [ :jruby ]
44+ gem "http_parser.rb" , "~> 0.6.0" , :platforms => [ :jruby ]
0 commit comments