-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathGemfile
More file actions
23 lines (21 loc) · 533 Bytes
/
Gemfile
File metadata and controls
23 lines (21 loc) · 533 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Frozen-string-literal: true
# Copyright: 2012 - 2020 - MIT License
# rubocop:disable Bundler/DuplicatedGem
# Encoding: utf-8
source "https://rubygems.org"
gemspec
s_version = "~> 4.0"
j_version = "~> 4.0"
gem "sprockets", ENV["SPROCKETS_VERSION"] || s_version, require: false
if ENV["JEKYLL_VERSION"]
gem "jekyll", ENV["JEKYLL_VERSION"], {
require: false,
}
elsif ENV["JEKYLL_BRANCH"]
gem "jekyll", {
git: "https://github.com/jekyll/jekyll",
branch: ENV["JEKYLL_BRANCH"],
}
else
gem "jekyll", j_version
end