class PAK::ValidatesHostname::WildcardValidator

Public Class Methods

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