# File lib/buildr/core/progressbar.rb, line 68
  def title
    return @title if ProgressBar.width <= 10
    @title.size > ProgressBar.width / 5 ? (@title[0, ProgressBar.width / 5 - 2] + '..') : @title
  end