Skip to content

Commit 10ff949

Browse files
authored
Merge pull request #1555 from felixmulder/topic/docs
Migrate wiki to docs dir
2 parents eaa7f17 + 237ddc3 commit 10ff949

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2657
-654
lines changed

docs/.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Jekyll specific ignores
2+
vendor/
3+
.bundle/
4+
Gemfile.lock
5+
_site/
6+
.sass-cache/

docs/Gemfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
source "https://rubygems.org"
2+
ruby RUBY_VERSION
3+
4+
# Hello! This is where you manage which Jekyll version is used to run.
5+
# When you want to use a different version, change it below, save the
6+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7+
#
8+
# bundle exec jekyll serve
9+
#
10+
# This will help ensure the proper Jekyll version is running.
11+
# Happy Jekylling!
12+
gem "jekyll", "3.2.1"
13+
14+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
15+
gem "minima"
16+
17+
# Table of contents
18+
gem 'jekyll-toc'
19+
20+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
21+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
22+
# gem "github-pages", group: :jekyll_plugins
23+
24+
# If you have any plugins, put them here!
25+
# group :jekyll_plugins do
26+
# gem "jekyll-github-metadata", "~> 1.0"
27+
# end

0 commit comments

Comments
 (0)