class Github::Gists

def fork(*args)


github.gists.fork 'gist-id'
github = Github.new
= Examples

Fork a gist
def fork(*args)
  arguments(args, :required => [:gist_id])
  post_request("/gists/#{gist_id}/fork", arguments.params)
end