README.md in guard-cane-0.1.0 vs README.md in guard-cane-0.1.1

- old
+ new

@@ -1,33 +1,42 @@ # Guard::Cane -[![Build Status](https://secure.travis-ci.org/justincampbell/guard-cane.png)](https://secure.travis-ci.org/justincampbell/guard-cane) +[![Build Status](https://travis-ci.org/guard/guard-cane.png?branch=master)](https://travis-ci.org/guard/guard-cane) [![Gem Version](https://badge.fury.io/rb/guard-cane.png)](http://badge.fury.io/rb/guard-cane) Guard::Cane automatically runs [Cane](https://github.com/square/cane#usage) when files change. ## Installation Put this in your Gemfile: ```rb -gem 'guard-cane' +group :development + gem 'guard-cane' +end ``` And then install with: ```sh $ bundle $ guard init cane ``` -This will place the following in your Guardfile: +This will place the following in your `Guardfile`: ```rb guard :cane, cli: "--color" do - watch(/.*\.rb/) + watch(/.*\.rb/) end ``` -Also recommended is adding a `.cane` file to your project. See -[square/cane](https://github.com/square/cane#usage) for details. +It's also recommended to add a `.cane` file to your project: + +``` +--abc-max 10 +--no-doc +--style-exclude spec/**/* +``` + +See [square/cane](https://github.com/square/cane#usage) for detailed usage.