Sha256: 7bfa3605d4ca4728d16890fd07cdaf23c41c83f8cd96a1a46f42d828d1a52f2a
Contents?: true
Size: 340 Bytes
Versions: 15
Compression:
Stored size: 340 Bytes
Contents
# coding: utf-8 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
15 entries across 15 versions & 1 rubygems