README.md in flutie-1.3.0 vs README.md in flutie-1.3.1

- old
+ new

@@ -22,14 +22,20 @@ Click on the "Default styles" link to view the same markup with a barebones layout that only contains the Flutie stylesheets. Click on "Application styles" to view the markup in your application layout. To upgrade, bump the gem version in your Gemfile, and then run 'rake flutie:install' again to get the latest changes moved into your application. -If you are using rails 3.1 or greater with asset pipelining enabled, you don't need to run the installer. Simply add - = require 'flutie' -in the application stylesheet manifest (app/assets/stylesheets/application.css). +If you are using rails 3.1 or greater with asset pipelining enabled, you don't need to run the installer. Simply add: + *= require _flutie + +in the application stylesheet manifest (app/assets/stylesheets/application.css), or: + + @import 'flutie'; + +as a sass import. + Usage ----- Flutie registers a :flutie shortcut for stylesheets, so in your layout you can do... @@ -79,10 +85,10 @@ ----------- The actual stylesheet source files are sass, so edit the files in app/assets/stylesheets/. To rebuild the static flutie.css file, you can run: - sass --update app/assets/stylesheets/flutie.scss:public/stylesheets/flutie.css + sass --update app/assets/stylesheets/_flutie.scss:public/stylesheets/flutie.css You can run a server which will allow you to view the flutie styleguide locally: ruby server.rb