class Rake::Task
Public Instance Methods
add_comment(comment)
click to toggle source
Add a comment to the task. Ignore duplicated comment
# File lib/rake/distribute/task.rb, line 6 def add_comment(comment) return if @full_comment.eql?(comment) _add_comment(comment) end
Also aliased as: _add_comment