class Github::Gists
def star(gist_id, params={})
github.gists.star 'gist-id'
github = Github.new
= Examples
Star a gist
def star(gist_id, params={}) _validate_presence_of(gist_id) _normalize_params_keys(params) put_request("/gists/#{gist_id}/star", params) end