class Preek::CompactOutput
Public Instance Methods
print_line()
click to toggle source
# File lib/preek/output.rb, line 40 def print_line say "\n-\n\n" end
Also aliased as: separator
status(title, text, color = nil)
click to toggle source
# File lib/preek/output.rb, line 34 def status(title, text, color = nil) title = title.to_s + ": " if title.is_a?(Symbol) say title, color, false say text end