mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
3c7449397a
This mimics the GitHub Pages environment so that you can build and serve the site locally for testing. It's will also be required later for using Jekyll Actions[1] instead of the automated GitHub Pages flow. 1. https://github.com/marketplace/actions/jekyll-actions
15 lines
439 B
Ruby
15 lines
439 B
Ruby
# Bundler setup for jekyll to be deployed on github pages.
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# Note that we're using the github-pages gem to mimic the GitHub pages
|
|
# automated setup. That installs jekyll, a default set of jekyll
|
|
# plugins, and a modified jekyll configuration.
|
|
group :jekyll_plugins do
|
|
gem "github-pages"
|
|
gem "jekyll-remote-theme"
|
|
end
|
|
|
|
# Prefer the GitHub flavored markdown version of kramdown.
|
|
gem "kramdown-parser-gfm"
|