class Rake::Task

def comment=(description)

Writing to the comment attribute is the same as adding a description.
def comment=(description)
  add_description(description)
end