-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
26 lines (23 loc) · 782 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"
ruby ">=2.6.0"
# When you want to use a different version of some gem, change it below, save the
# file, and run `bundle install`. Then run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "wdm", "~>0.1.1"
gem "jekyll", "3.9.2"
# jekyll-3.9.2 is the last currently supported by GitHub Pages version of Jekyll
gem "rake", "~>12.0"
gem "sass", "~>3.4"
gem 'html-proofer', '~> 5.0', '>= 5.0.8'
gem "kramdown", "~>2.3.1"
gem "kramdown-parser-gfm", "1.1.0"
gem "nokogiri", "1.15.6"
# Currently used version of nokogiri requires ruby >=2.6.0"
# If you have any other plugins, list them here:
group :jekyll_plugins do
gem "jekyll-paginate-v2"
end