Method: Console.puts

Defined in:
lib/color_console/console.rb

.puts(text = nil, fg = nil, bg = nil) ⇒ Object

Send a line of text to the screen, terminating with a new-line.

See Also:

  • #write


70
71
72
73
74
# File 'lib/color_console/console.rb', line 70

def puts(text = nil, fg = nil, bg = nil)
    @lock.synchronize do
        _puts(text, fg, bg)
    end
end