class SubnetValidator

Public Instance Methods

validate_each(record, attribute, value) click to toggle source
# File lib/validates_host/subnet_validator.rb, line 4
def validate_each(record, attribute, value)
  return if ValidatesHost::Subnet.new(value).valid?

  ruby_prior_version_three =
    Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.0.0')

  if ruby_prior_version_three
    record.errors.add(attribute, :invalid, options)
  else
    record.errors.add(attribute, :invalid, **options)
  end
end