class Github::Gists

def starred(*args)


github.gists.starred
github = Github.new :oauth_token => '...'
= Examples

List the authenticated user's starred gists
def starred(*args)
  arguments(args)
  response = get_request("/gists/starred", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end