Skip to content

Commit

Permalink
Docs: Add gemfile for running jekyll locally. (#834)
Browse files Browse the repository at this point in the history
This lets us test docs site changes by running `bundle exec jekyll serve` from inside the docs folder.
  • Loading branch information
russellhancox authored Jul 1, 2022
1 parent 7df209e commit d4a0d77
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor
Gemfile.lock
13 changes: 13 additions & 0 deletions docs/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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
#
gem "github-pages", group: :jekyll_plugins

# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
end

0 comments on commit d4a0d77

Please sign in to comment.