class Rake::Application

def truncate(string, width) # :nodoc:

:nodoc:
def truncate(string, width) # :nodoc:
  if string.nil?
    ""
  elsif string.length <= width
    string
  else
    (string[0, width - 3] || "") + "..."
  end
end