-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (26 loc) · 682 Bytes
/
Gemfile
File metadata and controls
31 lines (26 loc) · 682 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
25
26
27
28
29
30
31
source "https://rubygems.org"
gem "jekyll", "~> 4.3.2"
gem "minima", "~> 2.5"
# Ruby 3.4+ standard library gems
gem "csv"
gem "base64"
gem "bigdecimal"
gem "drb"
gem "mutex_m"
gem "ostruct"
gem "logger"
group :jekyll_plugins do
gem "jekyll-feed"
gem "jekyll-paginate"
gem "jekyll-sitemap"
gem "jekyll-remote-theme"
gem "jekyll-webp"
end
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin]