-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
49 lines (38 loc) · 1.42 KB
/
Gemfile
File metadata and controls
49 lines (38 loc) · 1.42 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "3.9.0" # Keep with GitHub Pages
# EDIT 2017-09-24: Update to 3.6.0 ahead of GH (which uses 3.5.2) due to
# asciidoctor-rouge requiring Rouge 2
gem "rouge", "~> 3.1.0"
gem "kramdown-parser-gfm", "~> 1.0"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
# Add AsciiDoc as a compatible syntax
# 2017-10-14: Apply expedited patch for jekyll-asciidoc/#160
gem "jekyll-asciidoc", "~> 3.0.0"
# Use Rouge for Asciidoctor highlighting
gem "asciidoctor-rouge"
# Use Jekyll Compose
gem "jekyll-compose"
# Create a RSS feed
gem "jekyll-feed", "~> 0.6"
# Add jekyll SEO
gem "jekyll-seo-tag"
# Add sitemap
gem "jekyll-sitemap"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
###
# END JEKYLL CONFIG
###