- 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 -l
to see available versions),rbenv install X.X.X
and 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/ruby
by executingwhich ruby
.
- Install
- #1 install
bundle install
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.