forked from circleci/circleci-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (23 loc) · 651 Bytes
/
Gemfile
File metadata and controls
27 lines (23 loc) · 651 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
source 'https://rubygems.org'
ruby '2.7.6'
gem "jekyll", '~> 4.2.0', github: "jekyll/jekyll"
gem 'html-proofer'
gem 'asciidoctor'
gem 'pygments.rb', '~> 1.1.2'
gem 'rake'
gem 'dotenv'
gem "kramdown-parser-gfm"
gem "liquid-c"
gem 'nokogiri', '~> 1.14'
gem 'htmlcompressor'
gem 'htmlentities', '~> 4.3', '>= 4.3.4'
group :jekyll_plugins do
gem 'jekyll-sitemap'
gem 'jekyll-asciidoc', github: "asciidoctor/jekyll-asciidoc"
gem 'jekyll-algolia', '~> 1.6', '>= 1.6.0' # Used by `Update Algolia Index` CI step
gem 'jekyll-last-modified-at' # Used for page metadata
end
group :test, :development do
gem 'pronto'
gem 'pronto-markdownlint'
end