desc(description)
private
Describe the next rake task. Duplicate
descriptions are discarded.
Example:
desc "Run the Unit Tests"
task :test => [:build]
runtests
end
# File lib/rake/dsl_definition.rb, line 127
def desc(description)
Rake.application.last_description = description
end