Sha256: d07a4901c286752719c99ce92ab18752e0db3890e7948af68a6564cd75ff86e4

Contents?: true

Size: 536 Bytes

Versions: 3

Compression:

Stored size: 536 Bytes

Contents

# frozen_string_literal: true

module GitHubPages
  module HealthCheck
    module Errors
      class InvalidAAAARecordError < GitHubPages::HealthCheck::Error
        DOCUMENTATION_PATH = "/articles/setting-up-a-custom-domain-with-github-pages/".freeze

        def message
          <<-MSG
             Your site's DNS settings are using a custom subdomain, #{domain.host},
             that's set up with an AAAA record. GitHub Pages currently does not support
             IPv6.
           MSG
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
github-pages-health-check-1.11.0 lib/github-pages-health-check/errors/invalid_aaaa_record_error.rb
github-pages-health-check-1.10.0 lib/github-pages-health-check/errors/invalid_aaaa_record_error.rb
github-pages-health-check-1.9.0 lib/github-pages-health-check/errors/invalid_aaaa_record_error.rb