readme.md in bourbon-0.0.5 vs readme.md in bourbon-0.0.6
- old
+ new
@@ -1,27 +1,38 @@
-#Vanilla Sass Mixins
-The purpose of Vanilla Sass Mixins is to provide a comprehensive framework of sass mixins that are designed to be as vanilla as possible. Meaning they should not deter from the original CSS syntax. The mixins contain vendor specific prefixes for all CSS3 properties for support amongst modern browsers. The prefixes also ensure graceful degradation for older browsers that support only CSS3 prefixed properties.
+#Bourbon Vanilla Sass Mixins
+The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive framework of sass mixins that are designed to be as vanilla as possible. Meaning they should not deter from the original CSS syntax. The mixins contain vendor specific prefixes for all CSS3 properties for support amongst modern browsers. The prefixes also ensure graceful degradation for older browsers that support only CSS3 prefixed properties.
##Requirements
Sass 3.1+
##Install
**Update your Gemfile**
- gem 'sass-mixins'
+ gem 'bourbon'
bundle install
-**For Rails < 3.1 you must run the installation rake task. This will copy the
-Sass files into your project's public/stylesheets/sass directory.**
+###Rails 3.1.x
+**Comment-out the following sprocket directive in /application.css.scss** (Remove the =)
- rake sass_mixins:install
+ * require_tree .
**Import the mixins at the beginning of your stylesheet**
- @import 'sass-mixins/mixins';
+ @import 'bourbon';
+
+###Rails 3.0.9 and below
+**For Rails < 3.1 you must run the installation rake task.**
+This will copy the Sass files into your project's public/stylesheets/sass directory.
+
+ rake bourbon:install
+
+**Import the mixins at the beginning of your stylesheet**
+
+ @import 'bourbon/bourbon';
+
##Usage
Below are a few examples of mixin usage. Note that these are just a few, explore the repo to find out more.
**Animation**