Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,27 @@ want anything else installed system-wide.

### Option 1) Building with Bundler

`cd` into the directory where you cloned this repository, then install the required gems with `bundle install`. This will automatically put the gems into `./bundle-vendor/bundle`.
`cd` into the directory where you cloned this repository, then install the
required gems with `bundle install`. This will automatically put the gems into
`./bundle-vendor/bundle`.

Start the server in the context of the bundle:

bundle exec jekyll serve

That's it.

If that doesn't work, to guarantee that your version of Ruby, etc, completely
matches the production environment, you can also use `rbenv`. Start by `cd`ing
into the directory where you cloned this repository, then execute the following:

rbenv install 2.3.1
rbenv local 2.3.1
rbenv rehash
gem install bundle
bundle install # This will automatically put the gems into `./bundle-vendor/bundle`
bundle exec jekyll serve # Start the server in the context of the bundle

From this point, everything else should be the same, regardless of which method
you used to run Jekyll.

Expand All @@ -37,7 +52,8 @@ Install Jekyll 3.3.0 on your system using RubyGems:

gem install jekyll -v 3.3.0

After cloning, `cd` into the directory where you cloned this repository and run:
After cloning, `cd`ing into the directory where you cloned this repository and
run:

jekyll serve

Expand Down