-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
23 lines (19 loc) · 712 Bytes
/
Copy pathGemfile
File metadata and controls
23 lines (19 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://rubygems.org'
# Matches CI (.github/workflows/jekyll.yml) and .ruby-version. 3.3+ is required
# by html-proofer's async→console dependency. Lower bound only, so newer local
# Rubies (3.4) still resolve.
ruby '>= 3.3'
gem 'jekyll', '~> 4.3'
# Pin to the libsass-based converter (2.x). The 3.x line switched to dart-sass,
# which errors on the vendored Bourbon/Neat frameworks' legacy `/` division.
gem 'jekyll-sass-converter', '~> 2.0'
gem 'jekyll-paginate'
gem 'jekyll-sitemap'
gem 'jekyll-feed'
gem 'kramdown-parser-gfm'
gem 'base64'
gem 'bigdecimal'
gem 'logger'
gem 'webrick'
# CI quality gate: validates internal links, images, and HTML structure of _site/
gem 'html-proofer', '~> 5.0'