Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/dvla/herodotus/string.rb
Instance Method Summary collapse
- #bg_black ⇒ Object
- #bg_blue ⇒ Object
- #bg_brown ⇒ Object
- #bg_cyan ⇒ Object
- #bg_gray ⇒ Object
- #bg_green ⇒ Object
- #bg_magenta ⇒ Object
- #bg_red ⇒ Object
- #black ⇒ Object
- #blink ⇒ Object
- #blue ⇒ Object
- #bold ⇒ Object
- #brown ⇒ Object
- #cyan ⇒ Object
- #gray ⇒ Object
- #green ⇒ Object
- #italic ⇒ Object
- #magenta ⇒ Object
- #red ⇒ Object
- #reverse_color ⇒ Object
- #underline ⇒ Object
Instance Method Details
#bg_black ⇒ Object
18 |
# File 'lib/dvla/herodotus/string.rb', line 18 def bg_black = "\e[40m#{self}\e[0m" |
#bg_blue ⇒ Object
26 |
# File 'lib/dvla/herodotus/string.rb', line 26 def bg_blue = "\e[44m#{self}\e[0m" |
#bg_brown ⇒ Object
24 |
# File 'lib/dvla/herodotus/string.rb', line 24 def bg_brown = "\e[43m#{self}\e[0m" |
#bg_cyan ⇒ Object
30 |
# File 'lib/dvla/herodotus/string.rb', line 30 def bg_cyan = "\e[46m#{self}\e[0m" |
#bg_gray ⇒ Object
32 |
# File 'lib/dvla/herodotus/string.rb', line 32 def bg_gray = "\e[47m#{self}\e[0m" |
#bg_green ⇒ Object
22 |
# File 'lib/dvla/herodotus/string.rb', line 22 def bg_green = "\e[42m#{self}\e[0m" |
#bg_magenta ⇒ Object
28 |
# File 'lib/dvla/herodotus/string.rb', line 28 def bg_magenta = "\e[45m#{self}\e[0m" |
#bg_red ⇒ Object
20 |
# File 'lib/dvla/herodotus/string.rb', line 20 def bg_red = "\e[41m#{self}\e[0m" |
#black ⇒ Object
2 |
# File 'lib/dvla/herodotus/string.rb', line 2 def black = "\e[30m#{self}\e[0m" |
#blink ⇒ Object
40 |
# File 'lib/dvla/herodotus/string.rb', line 40 def blink = "\e[5m#{self}\e[25m" |
#blue ⇒ Object
10 |
# File 'lib/dvla/herodotus/string.rb', line 10 def blue = "\e[34m#{self}\e[0m" |
#bold ⇒ Object
34 |
# File 'lib/dvla/herodotus/string.rb', line 34 def bold = "\e[1m#{self}\e[22m" |
#brown ⇒ Object
8 |
# File 'lib/dvla/herodotus/string.rb', line 8 def brown = "\e[33m#{self}\e[0m" |
#cyan ⇒ Object
14 |
# File 'lib/dvla/herodotus/string.rb', line 14 def cyan = "\e[36m#{self}\e[0m" |
#gray ⇒ Object
16 |
# File 'lib/dvla/herodotus/string.rb', line 16 def gray = "\e[37m#{self}\e[0m" |
#green ⇒ Object
6 |
# File 'lib/dvla/herodotus/string.rb', line 6 def green = "\e[32m#{self}\e[0m" |
#italic ⇒ Object
36 |
# File 'lib/dvla/herodotus/string.rb', line 36 def italic = "\e[3m#{self}\e[23m" |
#magenta ⇒ Object
12 |
# File 'lib/dvla/herodotus/string.rb', line 12 def magenta = "\e[35m#{self}\e[0m" |
#red ⇒ Object
4 |
# File 'lib/dvla/herodotus/string.rb', line 4 def red = "\e[31m#{self}\e[0m" |
#reverse_color ⇒ Object
42 |
# File 'lib/dvla/herodotus/string.rb', line 42 def reverse_color = "\e[7m#{self}\e[27m" |
#underline ⇒ Object
38 |
# File 'lib/dvla/herodotus/string.rb', line 38 def underline = "\e[4m#{self}\e[24m" |