class SlugValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) unless valid?(value.to_s) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.slug')) end end private def valid_format?(value) value =~ /^[a-z0-9_-]+$/ end def valid_length?(value) value.present? end def valid?(value) valid_length?(value) && valid_format?(value) end end