class Github::Repos::Comments
def delete(user_name, repo_name, comment_id, params={})
github.repos.comments.delete 'user-name', 'repo-name', 'comment-id'
github = Github.new
= Examples
Deletes a commit comment
def delete(user_name, repo_name, comment_id, params={}) set :user => user_name, :repo => repo_name assert_presence_of user, repo, comment_id normalize! params delete_request("/repos/#{user}/#{repo}/comments/#{comment_id}", params) end