module Github::Gists::Comments

def gist_comments(gist_id, params={})


@github.gists.gist_comments 'gist-id'
@github = Github.new
= Examples

List comments on a gist
def gist_comments(gist_id, params={})
  _normalize_params_keys(params)
  get("/gists/#{gist_id}/comments", params)
end