class Github::Client::Gitignore

def list(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/gitignore/#listing-available-templates -
def list(*args)
  arguments(args)
  response = get_request("/gitignore/templates", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end