class Github::Client::Gists

def forks(*args)

Other tags:
    Api: - public
def forks(*args)
  arguments(args, required: [:id])
  response = get_request("/gists/#{arguments.id}/forks")
  return response unless block_given?
  response.each { |el| yield el }
end