class Github::Gists::Comments
def create(gist_id, params={})
github.gists.comments.create 'gist-id'
github = Github.new
= Examples
Create a comment
def create(gist_id, params={}) normalize! params filter! VALID_GIST_COMMENT_OPTIONS, params assert_required_keys(REQUIRED_GIST_COMMENT_OPTIONS, params) post_request("/gists/#{gist_id}/comments", params) end