Class: SlugValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
app/validators/slug_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(object, attribute, value) ⇒ Object



2
3
4
5
6
# File 'app/validators/slug_validator.rb', line 2

def validate_each(object, attribute, value)
  unless value =~ /^[a-z0-9-]+$/
    object.errors[attribute] << (options[:message] || "is not formatted properly")
  end
end