README.md in respondsass-0.0.2 vs README.md in respondsass-0.0.3

- old
+ new

@@ -19,10 +19,43 @@ Using rems with pixel fallbacks is a future friendly way to implement sizing for fonts and spacing. I've also created a configurable baseline grid to create a nice verticle rhythm. Getting started --------------- -To download the exstension go the github repository. +The easiest way to get started is to install as a Ruby gem. First make sure you have Sass and Compass installed, go to the command line (don't freak out at the command line like I used to do) and type: + +sass -version + +and + +compass -v + +If you get something like: + +Sass 3.2.5 (Media Mark) + +and + +Compass 0.12.2 (Alnilam) +Copyright (c) 2008-2013 Chris Eppstein +Released under the MIT License. +Compass is charityware., Please make a tax deductable donation for a worthy cause: http://umdf.org/compass" + +then you are all set. If not you'll need to install one or both of them. When you do have them installed getting Respondsass is as simple as this: + +sudo gem install respondsass + +This will install the ruby gem, now all we need is to create a project and require the respondsass framework, again this is easy. Navigate to the folder you want your project folder to be created in for example: + +cd Desktop + +Then simply put this (where my_project is the name of your project folder) + +compass create my_project -r respondsass --using respondsass + +Now your all set either just set compass of watching the folder: + +compass watch my_project Creating the grid ----------------- Creating columns is easy and is by default based of a 16 column grid. First set your html. If I wanted to set up a one row grid with 4 columns, each the same with we could do this. \ No newline at end of file