Sha256: 9636475638dcec00cf29eb8cd1fe589d3f861f8e7b614bd48e8cb098febbf7fe
Contents?: true
Size: 416 Bytes
Versions: 24
Compression:
Stored size: 416 Bytes
Contents
module Vidar class Log class << self def line puts "|" + "-" * 122 + "|" end def info(text, fill_with = "#") puts ColorizedString["#{fill_with} #{text} ".ljust(124, fill_with)].colorize(:light_green) end def error(text, fill_with = "#") puts ColorizedString["#{fill_with} #{text} ".ljust(124, fill_with)].colorize(:light_red) end end end end
Version data entries
24 entries across 24 versions & 1 rubygems