class Github::Repos::Statuses
def list(*args)
github.repos.statuses.list 'user-name', 'repo-name', 'sha' { |status| ... }
github.repos.statuses.list 'user-name', 'repo-name', 'sha'
github = Github.new
= Examples
List Statuses for a specific SHA
def list(*args) arguments(args, :required => [:user, :repo, :sha]) params = arguments.params response = get_request("/repos/#{user}/#{repo}/statuses/#{sha}", params) return response unless block_given? response.each { |el| yield el } end