class Rake::Task

def clear

Clear the existing prerequisites, actions, comments, and arguments of a rake task.
def clear
  clear_prerequisites
  clear_actions
  clear_comments
  clear_args
  self
end