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