From b55a763d0fc82cf06476ea9e5c4ef02eafb474db Mon Sep 17 00:00:00 2001 From: Phil LaPier Date: Fri, 20 Jan 2012 17:55:37 -0500 Subject: [PATCH] Verion bump and readme update --- lib/bourbon/version.rb | 2 +- readme.md | 27 ++++++++++++++++++--------- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/lib/bourbon/version.rb b/lib/bourbon/version.rb index 53ae56503..ac976984c 100644 --- a/lib/bourbon/version.rb +++ b/lib/bourbon/version.rb @@ -1,3 +1,3 @@ module Bourbon - VERSION = "1.3.1" + VERSION = "1.3.2" end diff --git a/readme.md b/readme.md index 966623bca..9792c56bf 100644 --- a/readme.md +++ b/readme.md @@ -54,12 +54,26 @@ Import the mixins at the beginning of your stylesheet rake bourbon:install[app/stylesheets] # Install without Rails -Bourbon includes an easy way to generate a directory with all the necessary files. +Bourbon includes an easy way to generate a directory with all the necessary files. +Install the bourbon gem: - bourbon generate + gem install bourbon -This will create a `bourbon` directory that can be used by `sass --watch`. Move -the generated directory into your project's sass directory, e.g. `stylesheets/sass/`. +From the terminal, change the directory to where you want to generate the bourbon folder and files: + + cd project_name/stylesheets/sass/ + +Install bourbon: + + bourbon install + +This will generate a folder called `bourbon` containing all the mixins and other necessary bourbon files. It is recommended not to add or modify the bourbon files so that you can update bourbon easily. + +Update an existing bourbon installation with: + + bourbon update + +This will delete the bourbon directory and regenerate it. To output properly, Bourbon must be explicitly required (`-r`) by Sass at the command line: @@ -70,11 +84,6 @@ In this case, you will need to import the mixins at the beginning of your styles @import 'bourbon/bourbon'; -To update your existing bourbon files, do this: - - bourbon update - -This will delete the bourbon directory and regenerate it. # Browser support Bourbon aims to provide support for CSS3 properties that are not yet fully supported in modern stable browsers.