Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
add_description(description)
public
Add a description to the task. The description can consist of an option
argument list (enclosed brackets) and an optional comment.
# File lib/rake/task.rb, line 258
def add_description(description)
return unless description
comment = description.strip
add_comment(comment) if comment && ! comment.empty?
end