module Github::Gists::Comments
def comments(gist_id, params={})
@github.gists.comments 'gist-id'
@github = Github.new
= Examples
List comments on a gist
def comments(gist_id, params={}) _normalize_params_keys(params) _validate_presence_of(gist_id) # _merge_mime_type(:gist_comment, params) response = get("/gists/#{gist_id}/comments", params) return response unless block_given? response.each { |el| yield el } end