class Github::Gists

def starred?(gist_id, params={})


github.gists.starred? 'gist-id'
github = Github.new
= Examples

Check if a gist is starred
def starred?(gist_id, params={})
  assert_presence_of gist_id
  normalize! params
  get_request("/gists/#{gist_id}/star", params)
  true
rescue Github::Error::NotFound
  false
end