Jekyll After Ubuntu Upgrade
I recently had some issues running my Jekyll site after upgrading my OS ( Pop!_OS , an Ubuntu derivative). Ruby Jekyll is a static web-site development environment - very useful for blogs but also general purpose landing pages. I use it for profitview.net for example. It is written in Ruby, a dynamically typed general purpose language, made popular in particular through Ruby-On-Rails website development system that became popular in the mid 2000s. When updating Pop!_OS typically a new Ruby version will be installed - and the old one removed to avoid conflicts. Ruby's bundler refers to a specific Ruby instance - which may no longer be there. Therefore this must be updated. The mechanism for doing this is as follows: gem uninstall bundler gem install bundler This simply causes it to use the current native Ruby. Unless the changes in Ruby are substantial, this should cause no problem. Jekyll With the newly installed bund...