module Rake::TaskManager

def get_description(task)

Return the current description, clearing it in the process.
def get_description(task)
  desc = @last_description
  @last_description = nil
  desc
end