module Github::Gists::Comments
def create_gist_comment(gist_id, params={})
@github.gists.create_gist_comment 'gist-id'
@github = Github.new
= Examples
Create a comment
def create_gist_comment(gist_id, params={}) _normalize_params_keys(params) _filter_params_keys(REQUIRED_GIST_COMMENT_INPUTS, params) raise ArgumentError, "Required inputs are: :body" unless _validate_inputs(REQUIRED_GIST_COMMENT_INPUTS, params) post("/gists/#{gist_id}/comments", params) end