2020-09-07 13:27:54 +00:00
|
|
|
source "https://rubygems.org"
|
|
|
|
|
2024-08-08 13:20:10 +00:00
|
|
|
# Use override plugin to drop incorrect dependency of jekyll-rtd-them on github-pages (~> 209)
|
|
|
|
# The original dep would allow github-pages v209.x but not v210 or later.
|
|
|
|
plugin 'bundler-override'
|
|
|
|
require File.join(Bundler::Plugin.index.load_paths("bundler-override")[0], "bundler-override") rescue nil
|
|
|
|
override 'jekyll-rtd-theme', :drop => "github-pages"
|
|
|
|
|
2020-09-07 13:27:54 +00:00
|
|
|
# Hello! This is where you manage which Jekyll version is used to run.
|
|
|
|
# When you want to use a different version, change it below, save the
|
|
|
|
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
|
|
|
|
#
|
|
|
|
# bundle exec jekyll serve
|
|
|
|
#
|
|
|
|
# This will help ensure the proper Jekyll version is running.
|
|
|
|
# Happy Jekylling!
|
|
|
|
gem "jekyll", "~> 3.9.0"
|
|
|
|
|
|
|
|
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
|
|
|
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
2023-08-16 10:32:18 +00:00
|
|
|
gem "github-pages", "~> 228", group: :jekyll_plugins
|
2020-09-07 13:27:54 +00:00
|
|
|
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
|
|
# and associated library.
|
|
|
|
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
|
2023-08-16 10:32:18 +00:00
|
|
|
gem "tzinfo", "~> 2.0"
|
2020-09-07 13:27:54 +00:00
|
|
|
gem "tzinfo-data"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Performance-booster for watching directories on Windows
|
|
|
|
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
|
|
|
|
|
|
|
|
# kramdown v2 ships without the gfm parser by default. If you're using
|
|
|
|
# kramdown v1, comment out this line.
|
|
|
|
#gem "kramdown-parser-gfm"
|
2023-08-30 09:12:36 +00:00
|
|
|
|
|
|
|
gem "webrick", "~> 1.8"
|
2024-08-08 13:20:10 +00:00
|
|
|
|
|
|
|
gem 'jekyll-rtd-theme', '~> 2.0', '>= 2.0.10'
|