module Cucumber::Formatter::ANSIColor

def grey(m) #:nodoc:

:nodoc:
:nodoc:
def grey(m) #:nodoc:
  if ::Term::ANSIColor.coloring?
    "\e[90m#{m}\e[0m"
  else
    m
  end
end