-
Notifications
You must be signed in to change notification settings - Fork 14
/
Gemfile
42 lines (36 loc) · 903 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
41
42
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem "gsl"#, install_if: -> { ENV["JEKYLL_ENV"] == "development" }
gem "jekyll"
gem "liquid-c"
group :jekyll_plugins do
gem "classifier-reborn"
gem "jekyll-cloudinary"
gem "jekyll-compose"
gem "jekyll-feed"
gem "jekyll-github-metadata"
gem "jekyll-include-cache"
gem "jekyll-last-modified-at"
gem "jekyll-mentions"
gem "jekyll-microtypo"
gem "jekyll-purgecss"
gem "jekyll-pwa-workbox"
gem "jekyll-redirect-from"
gem "jekyll-sass-converter"
gem "jekyll-seo-tag"
gem "jekyll-sitemap"
gem "jekyll-tidy"
gem "jekyll-typogrify"
gem "jekyll_reading_time", github: "DirtyF/jekyll_reading_time"
gem "jemoji"
end
group :development do
gem "dotenv"
gem "launchy"
gem "rake"
end
group :test do
gem "html-proofer"
gem "rubocop"
end