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={})
  process_params do
    normalize params
  end
  response = get_request("/gists/starred", params)
  return response unless block_given?
  response.each { |el| yield el }
end