Sha256: 16c0a9214d26efba79be547c9eae3b14a0fc5411c33d37b307fe39dd66667a34
Contents?: true
Size: 641 Bytes
Versions: 2
Compression:
Stored size: 641 Bytes
Contents
# frozen_string_literal: true class IpValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) return if valid?(value.to_s) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.ip')) end private # rubocop:disable Metrics/LineLength def valid_format?(value) value =~ /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/ end # rubocop:enable Metrics/LineLength def valid_length?(value) value.present? end def valid?(value) valid_length?(value) && valid_format?(value) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_validation-5.0.0 | lib/active_validation/validators/ip_validator.rb |
active_validation-4.1.0 | lib/active_validation/validators/ip_validator.rb |