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_keys(params)
  get("/gists/starred", params)
end