Sha256: e53be1c93ba609d1455e75f94400075c8666ed254e49f38e66725e6c1d7b74e1
Contents?: true
Size: 782 Bytes
Versions: 4
Compression:
Stored size: 782 Bytes
Contents
# 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 group :development gem 'guard-cane' end ``` And then install with: ```sh $ bundle $ guard init cane ``` This will place the following in your `Guardfile`: ```rb guard :cane do watch(%r{^(.+)\.rb$}) end ``` 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.
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
guard-cane-0.2.1 | README.md |
guard-cane-0.2.0 | README.md |
guard-cane-0.1.4 | README.md |
guard-cane-0.1.3 | README.md |