Add info about checking version + updating

This commit is contained in:
Scott King 2016-10-18 21:07:58 -04:00
parent 53d20bc77e
commit 8a4edc550b
No known key found for this signature in database
GPG Key ID: 6388FBC8E75B4B11
1 changed files with 22 additions and 1 deletions

View File

@ -103,4 +103,25 @@ Check out [the extras page](../extras/) for more information.
</p> </p>
</div> </div>
Now that youve got everything installed, lets get to work! ## Already Have Jekyll?
Before you start developing with Jekyll, you may want to check that you're up to date with the latest version. To find your version of Jekyll, run one of these commands:
```sh
$ jekyll --version
$ gem list jekyll
```
You can always use <a href="https://rubygems.org/gems/jekyll">RubyGems</a> to find the current stable version of the Jekyll gem. But you can also use the `gem` command line tool:
```sh
$ gem search jekyll --remote
```
and you'll search for just the name `Jekyll`, and in brackets will be latest version. If you aren't running the latest version, run the update command:
```sh
$ gem update jekyll
```
Now that youve got everything up-to-date and installed, lets get to work!