Class: Identifier::Global::MorphbankSpecimenNumber

Inherits:
Identifier::Global show all
Defined in:
app/models/identifier/global/morphbank_specimen_number.rb

Overview

For use with Morphbank specimens, currently just a number e.g. 855664

Constant Summary

Constants included from SoftValidation

SoftValidation::ANCESTORS_WITH_SOFT_VALIDATIONS

Instance Attribute Summary

Attributes inherited from Identifier::Global

#relation

Instance Method Summary collapse

Methods inherited from Identifier::Global

#build_cached, #dwc_occurrences, #is_global?, #sv_resolves?

Methods included from SoftValidation

#clear_soft_validations, #fix_for, #fix_soft_validations, #soft_fixed?, #soft_valid?, #soft_validate, #soft_validated?, #soft_validations, #soft_validators

Instance Method Details

#is_numberObject



7
8
9
10
11
12
13
14
# File 'app/models/identifier/global/morphbank_specimen_number.rb', line 7

def is_number
  if identifier.present?
    # If non-number characters are in the string, invalid format
    if /\D/.match(identifier)
      errors.add(:identifier, 'invalid format, only numbers allowed')
    end
  end
end