forked from quartz-scheduler/quartz-scheduler.org-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
22 lines (15 loc) · 664 Bytes
/
Gemfile
File metadata and controls
22 lines (15 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source 'https://rubygems.org'
# Website is written in asciidoc
gem 'asciidoctor', '1.5.8'
# Use to check broken links during build
gem 'html-proofer', '3.9.2'
# Website redering engine. Note: also change azure-pipelines.yml (docker tag) if changing this version.
gem 'jekyll', '3.7.4'
# By default, jekyll does markdown, so we need the asciidoc plugin
gem "jekyll-asciidoc", "2.1.1"
# Jekyll plugin to convert SASS and SCSS into CSS during jekyll build (see _sass directory)
gem 'jekyll-sass-converter', '1.5.2'
# Generates a sitemap during Jekyll build
gem 'jekyll-sitemap', '1.2.0'
# Avoid polling for changes:
gem 'wdm', '>= 0.1.0' if Gem.win_platform?