method

desc

v2_2_9 - Show latest stable - Class: Rake::DSL
desc(description)
private

Describes the next rake task. Duplicate descriptions are discarded. Descriptions are shown with rake -T (up to the first sentence) and rake -D (the entire description).

Example:

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