module Gish::Commands::Comment

Public Instance Methods

delete_comment(comment_number) click to toggle source
# File lib/gish/commands/comment.rb, line 8
def delete_comment(comment_number)
  request { client.delete_comment(Gish.repository, comment_number) }
end
issue_comment(comment_number) click to toggle source
# File lib/gish/commands/comment.rb, line 12
def issue_comment(comment_number)
  request { client.issue_comment(Gish.repository, comment_number) }
end
update_comment(comment_number, comment) click to toggle source
# File lib/gish/commands/comment.rb, line 4
def update_comment(comment_number, comment)
  request { client.update_comment(Gish.repository, comment_number, comment) }
end