From bb1889afe43dd7b0d65bba4ff253bcc1bfe72c0a Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Thu, 3 May 2018 10:41:04 +0200 Subject: [PATCH] Update quickstart.md --- docs/_docs/quickstart.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docs/_docs/quickstart.md b/docs/_docs/quickstart.md index 50d430c9..9c88d0cf 100644 --- a/docs/_docs/quickstart.md +++ b/docs/_docs/quickstart.md @@ -7,11 +7,8 @@ permalink: /docs/quickstart/ If you already have a full [Ruby](https://www.ruby-lang.org/en/downloads/) development environment with all headers and [RubyGems](https://rubygems.org/pages/download) installed (see Jekyll's [requirements](/docs/installation/#requirements)), you can create a new Jekyll site by doing the following: ```sh -# Install Bundler through RubyGems -gem install bundler - -# Add Jekyll to your Gemfile and install its dependencies -bundle add jekyll && bundle install +# Install Jekyll and Bundler gems through RubyGems +gem install jekyll bundler # Create a new Jekyll site at ./myblog jekyll new myblog