class Github::Gists
def starred(params={})
github.gists.starred
github = Github.new :oauth_token => '...'
= Examples
List the authenticated user's starred gists
def starred(params={}) normalize! params response = get_request("/gists/starred", params) return response unless block_given? response.each { |el| yield el } end