periclesd / guard-reek

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guard::Reek Dependency Status Code Climate

Reek guard reeks every file on change.

  • Compatible with Bundler 1.0.x

Install

Please be sure to have Guard installed before continue.

Add it to your Gemfile (inside development group):

group :development do
  gem 'guard-reek', git: 'git://github.com/pericles/guard-reek.git'
end

Add guard definition to your Guardfile by running this command:

$ guard init reek

Usage

Please read Guard usage doc

Guardfile

guard :reek do
  watch(%r{^lib/(.+)\.rb$})

  # Rails example
  watch(%r{^app/(.+)\.rb$})
end

Please read Guard doc for more information about the Guardfile DSL.

Development

Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.

Authors

PĂ©ricles Dias

About

License:MIT License


Languages

Language:Ruby 100.0%