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 put_request("/gists/#{gist_id}/star", params) end
def star(gist_id, params={}) _validate_presence_of(gist_id) normalize! params put_request("/gists/#{gist_id}/star", params) end