class Github::Client::Repos::Releases

def list(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/repos/releases/#list-releases-for-a-repository -
def list(*args)
  arguments(args, required: [:owner, :repo])
  response = get_request("/repos/#{arguments.owner}/#{arguments.repo}/releases", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end