class Github::Gists::Comments
def delete(comment_id, params={})
github.gists.comments.delete 'comment-id'
github = Github.new
= Examples
Delete a comment
def delete(comment_id, params={}) normalize! params assert_presence_of comment_id # _merge_mime_type(:gist_comment, params) delete_request("/gists/comments/#{comment_id}", params) end