-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (27 loc) · 856 Bytes
/
Copy pathGemfile
File metadata and controls
34 lines (27 loc) · 856 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
32
33
34
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'jekyll', '~> 4.3'
# Jekyll plugins listed in _config.yml
gem 'jekyll-github-metadata', '~> 2.16'
gem 'jekyll-redirect-from', '~> 0.16'
gem 'jekyll-seo-tag', '~> 2.8'
gem 'jekyll-sitemap', '~> 1.4'
# Internationalization. Not on the GitHub Pages plugin whitelist, so the site is
# built and deployed from GitHub Actions (.github/workflows/deploy.yml) rather than
# by the native Pages build.
gem 'jekyll-polyglot', '~> 1.5'
# https://github.com/jekyll/jekyll/issues/8523
gem 'webrick', '~> 1.7'
group :development do
gem 'colored'
gem 'fuzzy_match'
gem 'terminal-table'
end
group :test do
gem 'html-proofer', '~> 5.0'
gem 'licensee', git: 'https://github.com/licensee/licensee.git', branch: 'master'
gem 'rake'
gem 'rspec'
gem 'rubocop'
gem 'safe_yaml', '~> 1.0'
end