class Preek::CompactOutput

Public Instance Methods

print_line() click to toggle source
Also aliased as: separator
separator()
Alias for: print_line
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