From 55867cb9705b771db859ea0590cb35013edad020 Mon Sep 17 00:00:00 2001 From: pisani Date: Tue, 5 Jan 2016 14:33:54 +1100 Subject: [PATCH] docs(readme): ruby-sass download instructions Document the need to download Ruby and install compass, whilst ruby-sass is still used by default. Closes #1243 --- readme.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/readme.md b/readme.md index 45af397e6..0268ae512 100644 --- a/readme.md +++ b/readme.md @@ -17,6 +17,13 @@ Install `yo`, `grunt-cli`, `bower`, `generator-angular` and `generator-karma`: npm install -g grunt-cli bower yo generator-karma generator-angular ``` +If you are planning on using Sass, you will need to first install Ruby and Compass: +- Install Ruby by downloading from [here](http://rubyinstaller.org/downloads/) or use Homebrew +- Install the compass gem: +``` +gem install compass +``` + Make a new directory, and `cd` into it: ``` mkdir my-new-project && cd $_