comparison Gemfile @ 183:ff5b4e46fe3d

Update build information.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 08 Jul 2020 11:08:19 +0900
parents 7a664b44fd8d
children dedb85c54245
comparison
equal deleted inserted replaced
182:7a664b44fd8d 183:ff5b4e46fe3d
6 # 6 #
7 # bundle exec jekyll serve 7 # bundle exec jekyll serve
8 # 8 #
9 # This will help ensure the proper Jekyll version is running. 9 # This will help ensure the proper Jekyll version is running.
10 # Happy Jekylling! 10 # Happy Jekylling!
11 gem "jekyll", "~> 3.8.6" 11
12 # NOTE: Jekyll 4 released 2020-05-09, but no support for Pygments, see below
13 # https://jekyllrb.com/docs/liquid/tags/
14 gem "jekyll", "~> 3.8.7" # Release 2020-05-08
12 15
13 # If you have any plugins, put them here! 16 # If you have any plugins, put them here!
14 group :jekyll_plugins do 17 group :jekyll_plugins do
15 gem "jekyll-feed", "~> 0.6" 18 gem "jekyll-feed", "~> 0.14" # Release 2020-06-24
16 end 19 end
17 20
21 # Rouge is the default highlighter for Jekyll 4 and does not support Octave
22 # highlighting yet. Thus stay on Jekyll 3.8 for a while.
18 gem "pygments.rb" 23 gem "pygments.rb"
19 24
20 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 25 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
21 # and associated library. 26 # and associated library.
22 install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do 27 install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do