class Bundler::UI::Shell

def tell_me(msg, color = nil, newline = nil)

valimism
def tell_me(msg, color = nil, newline = nil)
  msg = word_wrap(msg) if newline.is_a?(Hash) && newline[:wrap]
  if newline.nil?
    @shell.say(msg, color)
  else
    @shell.say(msg, color, newline)
  end
end