module Rake::DSL

def desc(description) # :doc:

:doc:

end
# ... run tests
task test: [:build]
desc "Run the Unit Tests"
Example:

Describes the next rake task. Duplicate descriptions are discarded.
def desc(description) # :doc:
  Rake.application.last_description = description
end