class Github::Activity::Starring

def list(*args)


github.activity.starring.list { |star| ... }
github.activity.starring.list
github = Github.new :user => 'user-name', :repo => 'repo-name'
= Examples

List stargazers
def list(*args)
  arguments(args, :required => [:user, :repo])
  response = get_request("/repos/#{user}/#{repo}/stargazers", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end