-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
47 lines (41 loc) · 1.23 KB
/
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
41
42
43
44
45
46
47
source "https://rubygems.org"
gem "minimal-mistakes-jekyll"
# Required for LSI, too slow however
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
# Class 1: Default plugins on GitHub Pages
#gem "jekyll-gist"
gem "jekyll-sitemap"
#gem "jekyll-paginate"
gem "jekyll-feed"
#gem "jemoji"
gem "jekyll-relative-links"
gem "jekyll-optional-front-matter"
#gem "jekyll-readme-index"
#gem "jekyll-default-layout"
#gem "jekyll-titles-from-headings"
# gem "jekyll-github-metadata" if ENV['CI'] == 'true'
#gem "github-pages"
# Class 2: Optional plugins on GitHub Pages
gem "jekyll-redirect-from"
gem "jekyll-mentions"
gem "jekyll-seo-tag"
#gem "jekyll-coffeescript"
gem "jekyll-include-cache"
# Class 3: Extras
gem "jekyll-environment-variables"
gem "jekyll-data"
gem "jekyll-tidy"
gem "jekyll-last-modified", '>= 1.0.3'
#gem "jekyll-assets"
gem "jekyll-algolia"
gem "jekyll-archives", '>= 2.2.1'
gem "jekyll-paginate-v2", '>= 3.0.0'
end