Project

guard-cane

0.01
No commit activity in last 3 years
No release in over 3 years
Guard::Cane automatically runs Cane when files change
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 3.1

Runtime

>= 0
>= 2.10.0
 Project Readme

Guard::Cane

Build Status Gem Version

Guard::Cane automatically runs Cane when files change.

Installation

Put this in your Gemfile:

group :development
  gem 'guard-cane'
end

And then install with:

$ bundle
$ guard init cane

This will place the following in your Guardfile:

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 for detailed usage.