From 830f157f518e418d796da38601ffd6c7cf85c487 Mon Sep 17 00:00:00 2001 From: Nadjib Amar Date: Fri, 19 Aug 2016 05:38:05 +0200 Subject: [PATCH 1/2] Bundler isn't installed by default The bundle command requires the bundler gem to have been installed before it's run. --- site/_docs/quickstart.md | 1 + 1 file changed, 1 insertion(+) diff --git a/site/_docs/quickstart.md b/site/_docs/quickstart.md index ceabbce2..753e92b2 100644 --- a/site/_docs/quickstart.md +++ b/site/_docs/quickstart.md @@ -8,6 +8,7 @@ For the impatient, here's how to get a boilerplate Jekyll site up and running. {% highlight shell %} ~ $ gem install jekyll +~ $ gem install bundler ~ $ jekyll new myblog ~ $ cd myblog ~/myblog $ bundle install From 3dcad7284bb03dfbb935ef89c100e0373e628ca6 Mon Sep 17 00:00:00 2001 From: Nadjib Amar Date: Fri, 19 Aug 2016 05:46:02 +0200 Subject: [PATCH 2/2] combined jekyll and bundler install in one line --- site/_docs/quickstart.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/site/_docs/quickstart.md b/site/_docs/quickstart.md index 753e92b2..81bd74d2 100644 --- a/site/_docs/quickstart.md +++ b/site/_docs/quickstart.md @@ -7,8 +7,7 @@ permalink: /docs/quickstart/ For the impatient, here's how to get a boilerplate Jekyll site up and running. {% highlight shell %} -~ $ gem install jekyll -~ $ gem install bundler +~ $ gem install jekyll bundler ~ $ jekyll new myblog ~ $ cd myblog ~/myblog $ bundle install