class Rake::ThreadHistoryDisplay

def show

def show
  puts "Job History:"
  stats.each do |stat|
    stat[:data] ||= {}
    rename(stat, :thread, threads)
    rename(stat[:data], :item_id, items)
    rename(stat[:data], :new_thread, threads)
    rename(stat[:data], :deleted_thread, threads)
    printf("%8d %2s %-20s %s\n",
      (stat[:time] * 1_000_000).round,
      stat[:thread],
      stat[:event],
      stat[:data].map do |k, v| "#{k}:#{v}" end.join(" "))
  end
end