-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
22 lines (18 loc) · 566 Bytes
/
Gemfile
File metadata and controls
22 lines (18 loc) · 566 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
source 'https://rubygems.org'
# Use plain Jekyll locally so non-whitelisted plugins (e.g. jekyll-archives)
# actually load. GitHub Pages builds will still ignore such plugins unless you
# prebuild via Actions and deploy the generated site.
gem 'jekyll', '~> 4.3'
group :jekyll_plugins do
gem 'jekyll-archives', '~> 2.3'
gem 'jekyll-remote-theme'
gem 'jekyll-feed'
gem 'jekyll-paginate'
gem 'jemoji'
gem 'jekyll-commonmark'
end
group :development do
gem 'webrick' # needed to run a server locally
gem 'rubocop'
end