-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specify remote theme for GH Pages build process
In order for this to work locally we must include the jekyll-remote-theme gem as part of a specially named dependency group that is loaded when jekyll starts. Authored-by: Owen Nelson <[email protected]>
- Loading branch information
1 parent
2eb815c
commit a02d361
Showing
3 changed files
with
12 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem "github-pages", "~> 228", group: :jekyll_plugin | ||
gem "just-the-docs", "~> 0.7.0" | ||
gem "jekyll-seo-tag", "~> 2.8.0" | ||
gem 'kramdown-parser-gfm', "~> 1.1.0" | ||
gem 'kramdown-parser-gfm', "1.1.0" | ||
|
||
group :jekyll_plugins do | ||
gem "github-pages", "228" | ||
gem "jekyll-seo-tag", "2.8.0" | ||
gem "jekyll-remote-theme", "0.4.3" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters