-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
33 lines (26 loc) · 833 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
27
28
29
30
31
32
33
source "https://rubygems.org"
# Jekyll version management
# Uncomment and set the version if needed
# gem "jekyll", "~> 4.4.1"
# Default theme for Jekyll sites
gem "minima"
# GitHub Pages support
# If using GitHub Pages, it provides the required dependencies and plugins
gem "github-pages", group: :jekyll_plugins
# Jekyll plugins
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
gem "jekyll-default-layout"
gem "jekyll-titles-from-headings"
gem "jekyll-sitemap"
gem "jekyll-gist"
end
# Windows and JRuby compatibility
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", ">= 1", "< 3"
gem "tzinfo-data"
end
# Performance booster for Windows
gem "wdm", "~> 0.1", platforms: [:mingw, :x64_mingw, :mswin]
# JRuby compatibility for http_parser.rb
gem "http_parser.rb", "~> 0.6.0", platforms: [:jruby]