class PAK::ValidatesHostname::FqdnValidator

Public Class Methods

new(options) click to toggle source
# File lib/validates_hostname.rb, line 282
def initialize(options)
  opts = {
    :require_valid_tld       => true,
  }.merge(options)
  super(opts)
end