class Github::Client::Gists

def forks(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/gists/#list-gist-forks -
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