class Rake::Task

def clear

def clear
  clear_prerequisites
  clear_actions
  clear_comments
  self
end

def clear_comments

def clear_comments
  @full_comment = nil
  @comment = nil
  self
end

def comment

Overrides the default #comment to provide the plugin name.
#
def comment
  "%-#{$plugin_max}s # %s" % [plugin, old_comment] if old_comment
end