Method: Convoy::Formatter::StreamOutputFormatter#puts

Defined in:
lib/convoy/formatter/stream_output_formatter.rb

#puts(string, options = { :newlines => 1 }) ⇒ Object



32
33
34
35
# File 'lib/convoy/formatter/stream_output_formatter.rb', line 32

def puts(string, options = { :newlines => 1 })
    print(string)
    newline(options[:newlines])
end