README.md in woo-0.1.3 vs README.md in woo-0.1.4

- old
+ new

@@ -1,9 +1,9 @@ # Woo [![Build Status](https://travis-ci.org/adorableio/woo.svg?branch=master)](https://travis-ci.org/adorableio/woo) -The Woo stylguide integrates with your Rails app, using your existing css. +The Woo styleguide integrates with your Rails app, using your existing CSS. ## Setup ### Add the Gem @@ -37,6 +37,21 @@ UI Elements are rendered as partials rather than individual pages. ``` rails generate styleguide:ui_element NAME +``` + +## Configuration + +By default, Woo will load your main assets files (`application.js` and `application.css`) in addition to its own. +However, you can override that behavior: + +```ruby +# config/application.rb + +# Add your custom Woo styles +config.woo.stylesheets << 'my_woo_styles.css' + +# Use only your JS in the styleguide +config.woo.javascripts = ['my_woo.js'] ```