Class: SecurityIdentifiers::Validations::SedolValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/security_identifiers/validations/sedol_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/security_identifiers/validations/sedol_validator.rb', line 4

def validate_each(record, attribute, value)
  sedol = SEDOL.new(value)

  record.errors[attribute] << 'does not have a valid check digit' unless sedol.valid?
rescue SecurityIdentifiers::InvalidFormat
  record.errors[attribute] << 'is not in the correct format'
end