module ShellOpts class Ansi def self.bold(bold = true, s) bold && $stdout.tty? ? "#{s}" : s end end end