README.md in guard-reek-1.0.2 vs README.md in guard-reek-1.1.0

- old
+ new

@@ -1,7 +1,7 @@ [![Gem Version](http://img.shields.io/gem/v/guard-reek.svg)](http://badge.fury.io/rb/guard-reek) -[![Build Status](https://travis-ci.org/my-grocery-price-book/guard-reek.svg?branch=master)](https://travis-ci.org/my-grocery-price-book/guard-reek) +[![Build Status](https://travis-ci.org/grantspeelman/guard-reek.svg?branch=master)](https://travis-ci.org/grantspeelman/guard-reek) # guard-reek **guard-reek** allows you to automatically detect code smells with [Reek](https://github.com/troessner/reek) when files are modified. @@ -42,19 +42,22 @@ ## Options You can pass some options in `Guardfile` like the following example: ```ruby -guard :reek, all_on_start: false, run_all: false do +guard :reek, all_on_start: false, run_all: false, cli: '--single-line --no-wiki-links' do # ... end ``` ### Available Options ``` all_on_start: true # Check all files at Guard startup. # default: true +cli: '--single-line' # Pass arbitrary reek CLI arguments. + # An array or string is acceptable. + # default: nil run_all: true # Check all files on "Enter" # default: true ``` ## Contributing