Sha256: 7e6015f57dab0c41cf8a50f1c23f98048493bf9ef11a3883b51b4ace61f96419
Contents?: true
Size: 323 Bytes
Versions: 48
Compression:
Stored size: 323 Bytes
Contents
module Fig; end module Fig::Logging; end # A String that has colors associated with it. class Fig::Logging::Colorizable < String attr_reader :foreground, :background def initialize(string = '', foreground = nil, background = nil) super(string) @foreground = foreground @background = background end end
Version data entries
48 entries across 48 versions & 1 rubygems