forked from galaxyproject/training-material
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (23 loc) · 662 Bytes
/
Gemfile
File metadata and controls
29 lines (23 loc) · 662 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
# frozen_string_literal: true
# ruby '>= 3.0.0'
source 'https://rubygems.org'
gem 'addressable'
gem 'awesome_bot'
gem 'html-proofer', '< 5.0.0' # No specific need, it adds a lot of extra deps that we don't really need.
gem 'jekyll'
gem 'jekyll-feed'
gem 'jekyll-redirect-from'
gem 'kwalify'
gem 'nokogiri', '>= 1.10.4'
gem 'pkg-config'
gem 'webrick' if RUBY_VERSION >= '3.0' # Ruby3 does not ship with webrick and Jekyll needs it, see https://github.com/jekyll/jekyll/issues/8523
# Citations
gem 'bibtex-ruby'
gem 'citeproc-ruby'
gem 'csl-styles'
# Image processing
gem 'fastimage'
# For our CLI tools
gem 'commander'
# RO-Crates
gem 'rubyzip', '~> 2.3.0'