-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
30 lines (25 loc) · 773 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
# frozen_string_literal: true
ruby ">= 2.7.0"
source "https://rubygems.org"
# https://pages.github.com/versions/
group :development, :test do
gem "byebug", "~> 10.0"
gem "ffi", "~> 1.12.0" # 1.13.0 has issues https://github.com/ffi/ffi/issues/773
gem "jekyll", "~> 3.9.0"
gem "kramdown", ">= 2.3.1" # sec
gem "rubocop", "~> 0.90.0"
gem "webdrivers", "~> 4.6.0" # 4.7.0 execute_script to reset local storage for theme tests fails
end
group :test do
gem "capybara", "~> 3.32.0"
gem "faraday", "~> 1.0.1"
gem "rspec", "~> 3.7.0"
gem "selenium-webdriver", "~> 3.8"
end
group :jekyll_plugins do
gem "github-pages"
gem "jekyll-feed", "~> 0.15.1"
gem "jekyll-paginate", "~> 1.1"
gem "jekyll-sitemap", "~> 1.4"
gem "jekyll-tagging", "~> 1.1"
end