To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorReek can be controlled using command-line options
In order to change reek's default behaviour
As a developer
I want to supply options on the command line
- Scenarios
-
- return non-zero status on bad option
- display the current version number
- display the help information
- return non-zero status on bad option
-
- When
- I run reek --no-such-option
- Then
- the exit status indicates an error
- And
- it reports the error "Error: invalid option: --no-such-option"
- And
- stdout equals ""
- display the current version number
-
- When
- I run reek --version
- Then
- it succeeds
- And
- it reports the current version
- display the help information
-
- When
- I run reek --help
- Then
- it succeeds
- And
-
it reports:
Usage: reek [options] [files] Examples: reek lib/*.rb reek -q lib cat my_class.rb | reek See http://wiki.github.com/kevinrutherford/reek for detailed help. Common options: -h, --help Show this message -v, --version Show version Configuration: -c, --config FILE Read configuration options from FILE Report formatting: -q, --[no-]quiet Suppress headings for smell-free source files -y, --yaml Report smells in YAML format
Last published about 7 years ago by kevinrutherford.