- Create GitHub Actions workflow for deploying documentation to GitHub Pages - Update README.md with documentation badge and link - Add missing gem dependency in docs/Gemfile - Configure Jekyll build and deployment process
17 lines
535 B
Ruby
17 lines
535 B
Ruby
source "https://rubygems.org"
|
|
|
|
gem "github-pages", group: :jekyll_plugins
|
|
gem "jekyll-theme-minimal"
|
|
gem "jekyll-relative-links"
|
|
gem "jekyll-seo-tag"
|
|
|
|
# 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", ">= 1"
|
|
gem "tzinfo-data"
|
|
end
|
|
|
|
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
|
|
# do not have a Java counterpart.
|
|
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] |