class Rake::Task

def clear

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