Back once again
Little bit older. Little bit wiser.
Time to upgrade jekyll.
Where we at?
Publish script seems to be in order. Posts are generated.
jekyll -v
return 3.0.4. Which is strange since 3+ needs ruby >2.5 and there is only ruby 2.3 installed.
Must be the version of ruby from base osx install.
github keys gone. Recreated.
Update Ruby
brew list
Doesn't look like brew
was used to install ruby
.
Upgrading ruby
using the RVM
.
RVM is install. From last post I think. There are no rubies installed with it though.
Updating either should work.
With RVM
rvm install ruby --latest
RVM fails with requirement installation failes with brew errors.
Installing requirements for osx. Updating system…………………………………….. Installing required packages: automake, gcc@6, libyaml, libksba……….There were package installation errors, make sure to read the log.
Try `brew tap –repair` and make sure `brew doctor` looks reasonable.
Check Homebrew requirements https://docs.brew.sh/Installation … Error running 'requirements_osx_brew_libs_install automake gcc@6 libyaml libksba', please read Users/me.rvm/log/1658451776_ruby-3.0.0/package_install_automake_gcc@6_libyaml_libksba.log Requirements installation failed with status: 1.
Use brew
Installing ruby through brew takes out the middle man.
brew install ruby
Added it to the path with.
echo 'export PATH="/usr/local/opt/ruby/bin:$PATH"' >> /Users/sre/.bash_profile
Of course that version of ruby won't use the same gems.
So its effectivly a reinstall
Whatever. bundle update jekyll
.
Done