This blog is based upton Reverie and hence Jekyll-powered.
To visit click here!
If you want to try it / fork it either follow the docs under the originally forked repo or:
# you need ruby and jekyll installed!
# https://jekyllrb.com/docs/installation/
bundle install
bundle exec jekyll server --watch
Note: This project uses the github-pages gem to ensure compatibility with GitHub Pages.
Or push to your own github pages repo.
-
Install rbenv and ruby-build with Homebrew:
brew install rbenv ruby-build
-
Initialize rbenv in your shell:
- For Zsh (default):
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
- For Bash:
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
Afterward, restart your terminal for the changes to take effect.
- For Zsh (default):
-
Install and set your desired Ruby version:
# Install a specific version (e.g., 3.2.2) rbenv install 3.2.2 # Set it as the default version rbenv global 3.2.2
For a project-specific version, navigate to your project's folder and use
rbenv local 3.2.2
instead. -
Verify the installation: Check that the correct Ruby version is now active.
ruby -v
MIT