Sha256: fc95cdf47a21334a75cd349e10c3782ef12fc99e9984920ce42b0b5f6c4b6ba3

Contents?: true

Size: 385 Bytes

Versions: 1

Compression:

Stored size: 385 Bytes

Contents

module Wlog
# Use this if the system does not support colored strings.
# @author Simon Symeonidis
class UncoloredString # :nodoc:
  def self.red(str); str end
  def self.yellow(str); str end
  def self.magenta(str); str end
  def self.green(str); str end
  def self.blue(str); str end
  def self.white(str); str end
  def self.black(str); str end
  def self.cyan(str); str end
end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wlog-1.2.2 lib/wlog/tech/uncolored_string.rb