From 6897a2d3ce3a4514e1e584bc875c9d2361ccd6cb Mon Sep 17 00:00:00 2001 From: Igor Santos Date: Mon, 15 Feb 2016 01:31:49 -0200 Subject: [PATCH] Adding more precise Jekyll instructions --- CONTRIBUTING.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3c69b84..8a01ce4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,7 +62,16 @@ included in the project: git checkout -b ``` -4. Install the [Jekyll](https://github.com/jekyll/jekyll/) gem to preview locally. +4. Install the [Jekyll](https://github.com/jekyll/jekyll/) gem and dependencies to preview locally: + + ```bash + # Install the needed gems + gem install jekyll jekyll-sitemap pygments.rb + # Build and open _site/index.html in your browser... + jekyll build [--watch] + # ...or run a local server to easily develop: + jekyll serve + ``` 5. Commit your changes in logical chunks. Please adhere to these [git commit message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)