Method: Xcode::TerminalOutput#puts
- Defined in:
- lib/xcode/terminal_output.rb
#puts(text, color = :default) ⇒ Object
93 94 95 96 |
# File 'lib/xcode/terminal_output.rb', line 93 def puts(text, color = :default) color_params = color_output? ? color : {} super(text.colorize(color_params)) end |