Write To Think

How I Setup This Site

Last update:
Reading time: less than a minute

Setup Ruby and Jekyll (on Fedora)

You would think that parenthetical doesn’t make a difference, more on that to come.

  1. install ruby from dnf
sudo dnf install ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools
  1. install jekyll
sudo dnf install ruby ruby-devel openssl-devel redhat-rpm-config gcc-c++ @development-tools
gem install jekyll bundler
  1. also had to install webrick to get jekyll serve to work
bundle add webrick