Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin github_pages gem #265

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

gem 'github-pages'
gem 'github-pages', '228' # Context: https://github.com/eecs485staff/primer-spec/issues/261
gem 'webrick'

# For runtime dependencies (Jekyll auto-includes those plugins for all users)
Expand Down
26 changes: 13 additions & 13 deletions docs/USAGE_ADVANCED.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ See the [Primer Spec README](../README.md) for the main usage instructions. This
- [Callouts](#callouts)
- [Enhanced code blocks](#enhanced-code-blocks)
- [Page configuration options](#page-configuration-options)
- [`disableSidebar`: Boolean](#disablesidebar-boolean)
- [`hideSidebarOnLoad`: Boolean](#hidesidebaronload-boolean)
- [`sitemapOrder`: Number](#sitemaporder-number)
- [`latex`: Boolean](#latex-boolean)
- [`mermaid`: Boolean](#mermaid-boolean)
- [`defaultCodeblockVariant`: CodeblockVariant (String)](#defaultcodeblockvariant-codeblockvariant-string)
- [`excludeFromSitemap`: Boolean](#excludefromsitemap-boolean)
- [`disableSidebar`: Boolean](#disablesidebar-boolean)
- [`hideSidebarOnLoad`: Boolean](#hidesidebaronload-boolean)
- [`sitemapOrder`: Number](#sitemaporder-number)
- [`latex`: Boolean](#latex-boolean)
- [`mermaid`: Boolean](#mermaid-boolean)
- [`defaultCodeblockVariant`: CodeblockVariant (String)](#defaultcodeblockvariant-codeblockvariant-string)
- [`excludeFromSitemap`: Boolean](#excludefromsitemap-boolean)
- [Site configuration options](#site-configuration-options)
- [`defaultSubthemeName`: String](#defaultsubthemename-string)
- [`defaultSubthemeMode`: String](#defaultsubthememode-string)
- [`defaultCodeblockVariant`: CodeblockVariant (String)](#defaultcodeblockvariant-codeblockvariant-string-1)
- [`sitemap`: Boolean | {label: String; externalLinks: Array}](#sitemap-boolean--label-string-externallinks-array)
- [`disableJokes`: Boolean](#disablejokes-boolean)
- [`defaultSubthemeName`: String](#defaultsubthemename-string)
- [`defaultSubthemeMode`: String](#defaultsubthememode-string)
- [`defaultCodeblockVariant`: CodeblockVariant (String)](#defaultcodeblockvariant-codeblockvariant-string-1)
- [`sitemap`: Boolean | {label: String; externalLinks: Array}](#sitemap-boolean--label-string-externallinks-array)
- [`disableJokes`: Boolean](#disablejokes-boolean)
- [Pinning to a specific version](#pinning-to-a-specific-version)
- [Using without Jekyll](#using-without-jekyll)

Expand All @@ -59,7 +59,7 @@ If you'd like to preview your site on your computer (or if you aren't using GitH
```ruby
source 'https://rubygems.org'

gem 'github-pages'
gem 'github-pages', '228'
gem 'webrick'
```

Expand Down
Loading