-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
31 lines (26 loc) · 723 Bytes
/
Gemfile
File metadata and controls
31 lines (26 loc) · 723 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"
# Note: Removed github-pages gem to allow modern Sass compiler
# This site deploys to GitHub Pages via GitHub Actions
gem "jekyll", "~> 4.3"
gem "jekyll-include-cache", group: :jekyll_plugins
# Explicitly include csv and logger for Ruby 3.4.4
gem "csv"
gem "logger"
gem "webrick"
gem "base64"
gem 'public_suffix', '~> 5.1.1'
gem 'font-awesome-sass'
gem 'faraday-retry'
#plugins
plugin 'bundler-graph'
# Theme
gem 'minimal-mistakes-jekyll'
# Jekyll plugins
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.17"
gem "jekyll-seo-tag", "~> 2.8"
gem 'jekyll-sass-converter', '~> 3.0' # Modern Sass compiler support
gem "jekyll-paginate"
gem "jekyll-sitemap"
gem "jekyll-gist"
end