-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
24 lines (18 loc) · 656 Bytes
/
Gemfile
File metadata and controls
24 lines (18 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
source "https://rubygems.org"
gem "jekyll", "~> 3.9"
gem "kramdown-parser-gfm", "~> 1.1" # Required for Jekyll 3.9 (not 3.8 or 4)
gem "webrick", "~> 1.7" # Ruby 3 support
gem "jekyll-remote-theme"
gem "minima", git: "https://github.com/jekyll/minima"
group :jekyll_plugins do
gem "jekyll-sitemap", "~> 1.4"
end
# Windows
# The zoneinfo files are missing, so bundle the tzinfo-data gem and associated
# library.
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end
# Performance-booster for watching directories and fix for livereload.
gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?