module Coveralls::Output

def print(string, options = {})

Returns nil.

Coveralls::Output.print("Hello World!", :color => "underline")

Example

Term::ANSIColor
:color - The color to be passed as a method to
options - The hash of options used for formatting the text:
string - the text to be formatted

Public: Passes .format to Kernel#print
def print(string, options = {})
  return if silent?
  (options[:output] || output).print self.format(string, options)
end