class Github::Repos::Commits

def repo_comments(user_name, repo_name, params={})


github.repos.commits.repo_comments 'user-name', 'repo-name' { |com| ... }
github.repos.commits.repo_comments 'user-name', 'repo-name'
github = Github.new
= Examples

List commit comments for a repository
def repo_comments(user_name, repo_name, params={})
  _update_user_repo_params(user_name, repo_name)
  _validate_user_repo_params(user, repo) unless user? && repo?
  _normalize_params_keys(params)
  response = get_request("/repos/#{user}/#{repo}/comments", params)
  return response unless block_given?
  response.each { |el| yield el }
end