Merge pull request #5497 from kingscott/master

Merge pull request 5497
This commit is contained in:
jekyllbot 2016-10-19 10:40:42 -07:00 committed by GitHub
commit 0484986c16
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 also use [RubyGems](https://rubygems.org/gems/jekyll) to find the current versioning of any 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. Another way to check if you have the latest version is to run the command `gem outdated`. This will provide a list of all the gems on your system that need to be updated. If you aren't running the latest version, run this command:
```sh
$ gem update jekyll
```
Now that youve got everything up-to-date and installed, lets get to work!