Sha256: e3d7493924b0504f952995afb5bc57663b9ff01c48d83fefb1c876fbc7368ee1

Contents?: true

Size: 511 Bytes

Versions: 1

Compression:

Stored size: 511 Bytes

Contents

# frozen_string_literal: true

class HexValidator < 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.hex'))
  end

  private

  def valid_format?(value)
    value =~ /^#?([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/
  end

  def valid_length?(value)
    value.present?
  end

  def valid?(value)
    valid_length?(value) &&
      valid_format?(value)
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_validation-5.1.0 lib/active_validation/validators/hex_validator.rb