module Coveralls::Output

def puts(string, options = {})

Returns nil.

Coveralls::Output.puts("Hello World", :color => "cyan")

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#puts
def puts(string, options = {})
  return if silent?
  (options[:output] || output).puts self.format(string, options)
end