mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-03 10:41:23 -06:00
This involves some explicit adding of gems that were moved out of the default gems: - `base64` and `csv` are needed for both Jekyll 3.9 and Jekyll 4.3 - `bigdecimal` is just needed for Jekyll 3.9 In the ideal case, this gets backported to both Jekyll 3.9 and 4.3 so we don't need custom Gemfiles. But, I'm also okay with adding these manually for now, and then reverting once both get a backport that patches this. Reminds me of webrick!
13 lines
254 B
Ruby
13 lines
254 B
Ruby
source "https://rubygems.org"
|
|
gemspec
|
|
|
|
gem "base64"
|
|
gem "csv"
|
|
|
|
gem "jekyll-github-metadata", ">= 2.15"
|
|
|
|
gem "jekyll-include-cache", group: :jekyll_plugins
|
|
gem "jekyll-sitemap", group: :jekyll_plugins
|
|
|
|
gem "html-proofer", "~> 5.0", :group => :development
|