Sha256: a155476e89afdbe987a6ce477ac0989a04c610eae69d7931852127fbe23336a3

Contents?: true

Size: 792 Bytes

Versions: 1

Compression:

Stored size: 792 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, cli: "--color" do
  watch(/.*\.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

1 entries across 1 versions & 1 rubygems

Version Path
guard-cane-0.1.1 README.md