Method: Blufin::Terminal.automatic
- Defined in:
- lib/core/terminal.rb
.automatic(title = nil, message = nil, preceding_blank_line = true) ⇒ Object
Displays automatic message.
185 186 187 188 189 |
# File 'lib/core/terminal.rb', line 185 def self.automatic(title = nil, = nil, preceding_blank_line = true) puts if preceding_blank_line puts "\x1B[38;5;231m\x1B[48;5;96m Automatic \x1B[0m #{title.nil? ? '' : "\xe2\x86\x92 "}#{title}\n" () end |