Sha256: 1998a367778323e8fb51495f7cc0d122c8382f71eb74f3dcc3ce05956d6c3c0c
Contents?: true
Size: 477 Bytes
Versions: 4
Compression:
Stored size: 477 Bytes
Contents
class SlugValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) unless valid?(value.to_s) record.errors[attribute] << (options.fetch(:message, false) || I18n.t('active_validation.errors.messages.slug'.freeze)) 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
Version data entries
4 entries across 4 versions & 1 rubygems