# File lib/protest/utils/colorful_output.rb, line 34 def puts(string=nil, state=:normal) if string.nil? # calling IO#puts with nil is not the same as with no args stream.puts else stream.puts colorize(string, state) end end