-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (23 loc) · 770 Bytes
/
Gemfile
File metadata and controls
30 lines (23 loc) · 770 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'jekyll', '~> 4.4'
gem 'just-the-docs'
gem 'html2rss', git: 'https://github.com/html2rss/html2rss.git'
gem 'html2rss-configs', git: 'https://github.com/html2rss/html2rss-configs.git'
group :jekyll_plugins do
gem 'jekyll-feed', '~> 0.17'
gem 'jekyll-loading-lazy'
gem 'jekyll-sitemap'
gem 'jekyll-target-blank'
end
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem 'tzinfo', '~> 2.0'
gem 'tzinfo-data'
end
# Performance-booster for watching directories on Windows
gem 'wdm', '~> 0.1.1', platforms: %i[mingw x64_mingw mswin]
group :development do
gem 'rubocop', '~> 1.79'
end