class SecurityIdentifiers::Validations::CusipValidator

Public Instance Methods

validate_each(record, attribute, value) click to toggle source
# File lib/security_identifiers/validations/cusip_validator.rb, line 4
def validate_each(record, attribute, value)
  cusip = CUSIP.new(value)

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