-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use latest ruby and newer jekyll versions
- [x] ruby 3.3.5, update .ruby-version - [x] use latest github-pages gem which uses Jekyll 3.10.0 (from 6/2024) - previous was using jekyll 2.4.0 (was from 10 years ago) - [x] setup .devcontainer for local development - [x] add Gemfile.lock (remove from .gitignore) - [x] update dependabot config to include gems/bundler (weekly) - [x] fix markdown formatting in CONTRIBUTING.md - [x] fix liquid parsing issue of handlebars/index.md (backticks to quotes) - [Error](https://github.com/github/explore/actions/runs/11299945094/job/31431925940#step:6:82) Signed-off-by: jmeridth <jmeridth@gmail.com>
- Loading branch information
Showing
8 changed files
with
411 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "Jekyll website", | ||
"image": "mcr.microsoft.com/devcontainers/jekyll:latest", | ||
"features": { | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "22" | ||
}, | ||
"ghcr.io/devcontainers/features/ruby:1": { | ||
"version": "3.3.5" | ||
} | ||
}, | ||
"forwardPorts": [ | ||
// Jekyll server | ||
4000, | ||
// Live reload server | ||
35729 | ||
This comment has been minimized.
Sorry, something went wrong. |
||
], | ||
"postCreateCommand": "bundle exec jekyll serve --incremental" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
.DS_Store | ||
Gemfile.lock | ||
scripts/ | ||
_site | ||
.sass-cache | ||
|
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 +1 @@ | ||
3.1.2 | ||
3.3.5 |
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
Oops, something went wrong.
bien