Pattern: Missing use of desc
method
Issue: -
Rake task definition should have a description with desc
method.
It is useful as a documentation of task. And Rake does not display
task that does not have desc
by rake -T
.
# bad
task :do_something
# bad
task :do_something do
end
# good
desc 'Do something'
task :do_something
# good
desc 'Do something'
task :do_something do
end