features/support/env.rb in reek-4.8.2 vs features/support/env.rb in reek-5.0.0

- old
+ new

@@ -11,14 +11,14 @@ # # Provides runner methods used in the cucumber steps. # class ReekWorld def reek(args) - run_simple("reek --no-color --no-wiki-links #{args}", false) + run_simple("reek --no-color --no-documentation #{args}", false) end def reek_with_pipe(stdin, args) - run "reek --no-color --no-wiki-links #{args}" + run "reek --no-color --no-documentation #{args}" type(stdin) close_input end end