module Bovem::ConsoleMethods::StyleHandling

Methods for handling styles in the terminal.

Public Instance Methods

replace_markers(message, plain = false) click to toggle source

Replaces colors markers in a string.

@see .replace_markers

@param message [String] The message to analyze. @param plain [Boolean] If ignore (cleanify) color markers into the message. @return [String] The replaced message.

# File lib/bovem/console.rb, line 116
def replace_markers(message, plain = false)
  Bovem::Console.replace_markers(message, plain)
end