-
Notifications
You must be signed in to change notification settings - Fork 3
Versioning
Gilles Legoux edited this page Oct 21, 2024
·
2 revisions
Before updating the used versions, check the used versions.
TODO
TODO
- Update
rvm
- Check the last available release: https://github.com/rvm/rvm/releases
- Apply the instructions from https://rvm.io/
- Check with
rvm --version
- Update
ruby
- Check the last available release: https://www.ruby-lang.org/en/downloads/releases
- Update the
.ruby-versionfile with this last version - Install this version with
rvm:
rvm install "ruby-<version>"
- Check with
ruby --version, and inGemfile.lockthat this last version is used - Use
source bootstrap.shto use this last version withrvm
- Update
bundlethe tool to manage the ruby dependencies, calledgems
- Check the last available release: https://rubygems.org/gems/bundler/versions
- Execute the command to update to this last available version:
bundle update --bundler
- Check with
bundle --version, and inGemfile.lockthat this last version is used
- Update
jekyll
- Check the last available release: https://jekyllrb.com/news/releases/
- Update the
Gemfilefile with this last version - Execute the command to update to this last available version:
bundle update
- Check with
jekyll --version, and inGemfile.lockthat this last version is used
- Update each
jekyllplugin
For example, for jekyll-sitemap:
- Check the last available release: https://github.com/jekyll/jekyll-sitemap/releases
- Update the
Gemfilefile with this last version - Execute the command to update to this last available version:
bundle update
- Check the
Gemfile.lockthat this last version is used
The repeat for each jekyll plugin.
- Update the other
gems
- Execute the command to update to the last available versions for all gems:
bundle update
- Check
Gemfile.lockthat the last versions are used
See the last version used of a gem: https://rubygems.org/releases.