-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (21 loc) · 665 Bytes
/
Gemfile
File metadata and controls
28 lines (21 loc) · 665 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
# frozen_string_literal: true
source "https://rubygems.org"
# gem "rails"
#gem "jekyll"
gem "minima", "~> 2.5.1"
gem "github-pages", "~> 231", group: :jekyll_plugins
gem "webrick", "~> 1.8"
#
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
# #gem "jekyll-remote-theme", "~> 0.4.3"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
gem "tzinfo", "~> 2.0.6"
gem "tzinfo-data"
end
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?