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_keys(params) # _merge_mime_type(:gist_comment, params) _filter_params_keys(ALLOWED_GIST_COMMENT_INPUTS, params) _validate_inputs(REQUIRED_GIST_COMMENT_INPUTS, params) post_request("/gists/#{gist_id}/comments", params) end