From 9d45644e6c115dbc7047bef35ee2162b90787c29 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 30 Jul 2016 11:35:06 -0400 Subject: [PATCH 1/2] docs/quickstart: update instructions to require bundler With gem-based themes being bundled in the new site via the `Gemfile`, we should ask folks to use Bundler wherever possible. This should lead to more successful installations and getting the base site setup properly. The only trouble this introduces is it puts a dependency on Bundler. That said, I'm totally fine with requiring everyone use Bundler for this site. How could we best install bundler in these instructions? /cc @jekyll/documentation --- site/_docs/quickstart.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/_docs/quickstart.md b/site/_docs/quickstart.md index 9d3800f5..ceabbce2 100644 --- a/site/_docs/quickstart.md +++ b/site/_docs/quickstart.md @@ -10,7 +10,8 @@ For the impatient, here's how to get a boilerplate Jekyll site up and running. ~ $ gem install jekyll ~ $ jekyll new myblog ~ $ cd myblog -~/myblog $ jekyll serve +~/myblog $ bundle install +~/myblog $ bundle exec jekyll serve # => Now browse to http://localhost:4000 {% endhighlight %} From 207b6f19f04490dbb1fe2ee11b964c2ea4871d9f Mon Sep 17 00:00:00 2001 From: DirtyF Date: Sat, 30 Jul 2016 18:22:51 +0200 Subject: [PATCH 2/2] update instructions to require bundler --- site/index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/site/index.html b/site/index.html index 88da5ec9..9a2aa655 100644 --- a/site/index.html +++ b/site/index.html @@ -57,10 +57,15 @@ overview: true $ cd my-awesome-site

+

+ ~ + $ + bundle install +

~/my-awesome-site $ - jekyll serve + bundle exec jekyll serve

# => Now browse to http://localhost:4000