blog/Gemfile

23 lines
450 B
Text
Raw Permalink Normal View History

2021-02-11 00:34:35 +01:00
source "https://rubygems.org"
2021-02-11 01:37:40 +01:00
gem "webrick", "~> 1.7"
gem "jekyll", "~> 4.2"
2021-02-11 00:34:35 +01:00
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
gem "jekyll-seo-tag", "~> 2.8"
end
require "rbconfig"
if RbConfig::CONFIG["target_os"] =~ /(?i-mx:bsd|dragonfly)/
gem "rb-kqueue", ">= 0.2"
2021-02-11 00:34:35 +01:00
end
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end
platforms :mingw, :x64_mingw, :mswin do
gem "wdm", "~> 0.1.1"
2021-04-21 17:39:04 +02:00
end