class Rake::Task
def add_description(description)
Add a description to the task. The description can consist of an option
def add_description(description) return if ! description comment = description.strip add_comment(comment) if comment && ! comment.empty? end