comparison Gemfile @ 215:dedb85c54245

Reorganize homepage.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Thu, 10 Sep 2020 17:47:36 +0900
parents ff5b4e46fe3d
children
comparison
equal deleted inserted replaced
214:fe5dcb23372a 215:dedb85c54245
1 source "https://rubygems.org" 1 source "https://rubygems.org"
2 2
3 # Hello! This is where you manage which Jekyll version is used to run. 3 gem "github-pages"
4 # When you want to use a different version, change it below, save the
5 # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6 #
7 # bundle exec jekyll serve
8 #
9 # This will help ensure the proper Jekyll version is running.
10 # Happy Jekylling!
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
15
16 # If you have any plugins, put them here!
17 group :jekyll_plugins do
18 gem "jekyll-feed", "~> 0.14" # Release 2020-06-24
19 end
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.
23 gem "pygments.rb"
24
25 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26 # and associated library.
27 install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
28 gem "tzinfo", "~> 1.2"
29 gem "tzinfo-data"
30 end
31
32 # Performance-booster for watching directories on Windows
33 gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?