mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Switch from having all documentation contained within the README to publishing a jekyll static site of documentation under github pages. This allows for configuration and installation guides to be handled separately to make for the relevant pieces to be in smaller chunks and therefore easier to follow for users. Additionally a table of contents can now be included in a left navigation section that ensures it should be possible to quickly jump from the start to any section and back again. Include support for publishing previews and releases under separate directories to allow for them to exist at the same time as the other latest version of the documents. The navigation section also includes support for accessing any of the other versions published so that it easier to see what configuration options exist for a given release. These will be published automatically when releases are added.
35 lines
1.3 KiB
Ruby
35 lines
1.3 KiB
Ruby
source "https://rubygems.org"
|
|
# 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 "github-pages", "~> 226", group: :jekyll_plugins
|
|
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
|
# uncomment the line below. To upgrade, run `bundle update github-pages`.
|
|
# gem "github-pages", group: :jekyll_plugins
|
|
# If you have any plugins, put them here!
|
|
group :jekyll_plugins do
|
|
gem "jekyll-assets", "~> 3.0.12"
|
|
gem "jekyll-feed", "~> 0.12"
|
|
gem "jekyll-toc", "~> 0.17"
|
|
end
|
|
|
|
# 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.2"
|
|
gem "tzinfo-data"
|
|
end
|
|
|
|
# Performance-booster for watching directories on Windows
|
|
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
|
gem "sprockets", "~> 3.7.2"
|
|
|
|
# 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]
|