Sha256: 9b315f0b4f8bb8e30d4050c4e47ef6cfc942bd593452eb975bf278da8c530324
Contents?: true
Size: 943 Bytes
Versions: 30
Compression:
Stored size: 943 Bytes
Contents
module Term module ANSIColor class Attribute class Text Attribute.set :clear, 0 # String#clear already used in String Attribute.set :reset, 0 # synonym for :clear Attribute.set :bold, 1 Attribute.set :dark, 2 Attribute.set :faint, 2 Attribute.set :italic, 3 # not widely implemented Attribute.set :underline, 4 Attribute.set :underscore, 4 # synonym for :underline Attribute.set :blink, 5 Attribute.set :rapid_blink, 6 # not widely implemented Attribute.set :reverse, 7 # String#reverse already used in String Attribute.set :negative, 7 # synonym for :reverse Attribute.set :concealed, 8 Attribute.set :conceal, 8 # synonym for :concealed Attribute.set :strikethrough, 9 # not widely implemented end end end end
Version data entries
30 entries across 21 versions & 2 rubygems