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