Skip to content

Commit

Permalink
Verion bump and readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil LaPier committed Jan 20, 2012
1 parent 0ebf906 commit b55a763
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lib/bourbon/version.rb
@@ -1,3 +1,3 @@
module Bourbon
VERSION = "1.3.1"
VERSION = "1.3.2"
end
27 changes: 18 additions & 9 deletions readme.md
Expand Up @@ -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:

Expand All @@ -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.
Expand Down

0 comments on commit b55a763

Please sign in to comment.