Class: Underline

Inherits:
Object show all
Defined in:
lib/vv/style/underline.rb

Instance Method Summary collapse

Instance Method Details

#codeObject



3
4
5
# File 'lib/vv/style/underline.rb', line 3

def code
  "\033[4m"
end

#offObject Also known as: underline_off



7
8
9
# File 'lib/vv/style/underline.rb', line 7

def off
  "\033[24m"
end

#uncodeObject



12
13
14
# File 'lib/vv/style/underline.rb', line 12

def uncode
  off
end