Skip to content
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ _site
# Other Jekyll files
.sass-cache
.jekyll-metadata

# Locking Ruby library version creates a ton of headaches for local preview
# and GitHub pages deploy
Gemfile.lock
9 changes: 8 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Based on Primer Spec instructions
# https://eecs485staff.github.io/primer-spec/docs/USAGE_ADVANCED.html#previewing-locally

source 'https://rubygems.org'
gem 'github-pages'

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

# Needed for Ruby 3.4
gem 'csv'
271 changes: 0 additions & 271 deletions Gemfile.lock

This file was deleted.

3 changes: 2 additions & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This config file renders the "primer-spec" theme from:
# https://github.com/eecs485staff/primer-spec
# https://eecs485staff.github.io/primer-spec/docs/USAGE_ADVANCED.html#site-configuration-options
# This theme is built on the default GitHub Markdown theme "Primer", and
# optionally renders a sidebar to easily navigate project specs.

Expand All @@ -13,6 +13,7 @@ plugins:
- jekyll-optional-front-matter
- jekyll-readme-index
- jekyll-relative-links
- jekyll-default-layout
- jemoji
kramdown:
input: GFM
Expand Down
Loading