forked from imagej/imagej.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
26 lines (22 loc) · 803 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
source 'https://rubygems.org'
# NB: This site uses stock GitHub Pages deployment, as described at:
#
# https://pages.github.com/versions/
#
# However, builds with Jekyll 4.2 are orders of magnitude faster than with
# Jekyll 3.9, especially on Windows (6x faster) and macOS (3x faster).
#
# Therefore, this Gemfile declares Jekyll 4.2 with a suitable config,
# rather than using the github-pages gem, so that local builds will
# benefit from the superior performance.
#
# When developing functionality for the site, please take care to
# use only features available in Jekyll 3.9 / stock GitHub Pages.
#gem 'github-pages', group: :jekyll_plugins
gem 'jekyll', '~> 4.2'
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
gem 'html-proofer'
gem 'webrick'
group :jekyll_plugins do
gem 'jekyll-sitemap'
end