Pre-requisites
- Ruby:
If running on OS X, make sure to install the latest version of ruby.- Install
rbenv:brew install rbenv. Follow instructions (see guide). - Set to the latest version (
rbenv install -lto see available versions),rbenv install X.X.Xand then set it as globalrbenv global X.X.X. - Reload your terminal (open a new one) and check that the ruby version is not the default one
usr/bin/rubyby executingwhich ruby.
- Install
Installation
- #1 install
bundle install
Local development
start serving the website: bundle exec jekyll serve
If bumping into an issue similar to require': cannot load such file -- webrick (LoadError), try bundle init and then bundle add $missing_package until it succeeds.