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