-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
40 lines (33 loc) · 936 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
34
35
36
37
38
39
40
source 'https://rubygems.org/'
gem 'jekyll', '~> 4.3'
gem 'minimal-mistakes-jekyll', '~> 4.0', '>= 4.26.1'
gem 'liquid-c', '~> 4.0'
if ENV['LSI'] == 'true'
gem 'classifier-reborn'
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
gem 'gsl', git: 'https://github.com/SciRuby/rb-gsl.git', ref: '103a3e1'
else
gem 'gsl'
end
end
group :jekyll_plugins do
gem 'jekyll-sitemap'
gem 'jekyll-relative-links'
gem 'jekyll-optional-front-matter'
gem 'jekyll-titles-from-headings'
gem 'jekyll-github-metadata' if ENV['CI'] == 'true'
gem 'jekyll-redirect-from'
gem 'jekyll-seo-tag'
gem 'jekyll-include-cache'
gem 'jekyll-data'
gem 'jekyll-environment-variables'
gem 'jekyll-tidy'
gem 'jekyll-last-modified', '>= 1.0.3'
gem 'jekyll-assets'
gem 'jekyll-archives', '>= 2.2.1'
gem 'jekyll-paginate-v2', '>= 3.0.0'
gem 'jekyll-algolia'
end
group :development do
gem 'html-proofer'
end