-
-
Notifications
You must be signed in to change notification settings - Fork 373
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (26 loc) · 725 Bytes
/
Gemfile
File metadata and controls
33 lines (26 loc) · 725 Bytes
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
source "https://rubygems.org"
# Specify the gem's runtime dependencies in jekyll-admin.gemspec
gemspec
group :development do
gem "gem-release", "~> 0.7"
# Fixture site dependencies
gem "jekyll-redirect-from"
gem "sinatra-cross_origin", "~> 0.3"
end
group :docs do
gem "jekyll-seo-tag"
gem "jekyll-sitemap"
end
group :test do
# To allow testing with specific Jekyll versions
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
if ENV["JEKYLL_VERSION"] == "~> 3.9"
gem "bigdecimal" if RUBY_VERSION >= "3.4"
gem "kramdown-parser-gfm"
end
gem "rack-test", "~> 2.0"
gem "rake", ">= 10.0"
gem "rspec", "~> 3.4"
gem "rubocop-jekyll", "~> 0.14.0"
end