forked from galaxyproject/training-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
33 lines (26 loc) · 727 Bytes
/
Gemfile
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
# 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'
# Documentation
gem 'rdoc', '~> 6.7'
gem 'rorvswild_theme_rdoc'