Update & Fix Codespaces / DevContainer build #160
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates and improves the development container for the project. The most important changes include upgrading the Ruby base image, enforcing consistent line endings, updating shell and Ruby settings, and improving local development workflows.
This PR addresses Issue #159.
Development container and environment updates:
.devcontainer/Dockerfilefrom2.7-bullseyeto3.2-bookwormfor improved compatibility and access to newer Ruby features..devcontainer/Dockerfileto convertsetup.shline endings from CRLF to LF, and ensured shell scripts and Dockerfiles always use LF endings via.gitattributesfor better cross-platform support. [1] [2]Devcontainer and VS Code customization:
.devcontainer/devcontainer.jsonto explicitly set the Dockerfile, customize VS Code extensions and settings (including Ruby LSP options), and add a post-create command to fix gem permissions and runbundle install.Gem and dependency management:
Gemfileto require Jekyll3.9.5(from3.9.2) and added thewebrickgem, which is necessary for Ruby 3.x compatibility.Development workflow improvements:
.vscode/tasks.jsonto usebundle exec jekyll serve --livereload --force_polling, enabling live reload and more reliable file watching during development.