This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
tell_me(msg, color = nil, newline = nil)
private
valimism
# File lib/bundler/ui/shell.rb, line 102
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