Sha256: ec755fc6ab0345047a4a0376801cb445c121d962c2cb6e3861ccfc8348dc0132

Contents?: true

Size: 717 Bytes

Versions: 2

Compression:

Stored size: 717 Bytes

Contents

# Guard::Cane
[![Build Status](https://secure.travis-ci.org/justincampbell/guard-cane.png)](https://secure.travis-ci.org/justincampbell/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'
```

And then install with:

```sh
$ bundle
$ guard init cane
```

This will place the following in your Guardfile:

```rb
guard :cane, cli: "--color" do
  watch(/.*\.rb/) 
end
```

Also recommended is adding a `.cane` file to your project. See
[square/cane](https://github.com/square/cane#usage) for details.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guard-cane-0.1.0 README.md
guard-cane-0.1.0.pre README.md