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