Class: NomenclaturalRank::Icn::FamilyGroup::Subtribe

Inherits:
NomenclaturalRank::Icn::FamilyGroup show all
Defined in:
app/models/nomenclatural_rank/icn/family_group/subtribe.rb

Constant Summary

Constants inherited from NomenclaturalRank::Icn

KINGDOM

Class Method Summary collapse

Methods inherited from NomenclaturalRank::Icn

group_base

Methods inherited from NomenclaturalRank

bottom_rank, collect_descendants_to_s, collect_to_s, nomenclatural_code, nomenclatural_code_class, ordered_ranks, parent, rank_name, top_rank, typical_use

Class Method Details

.abbreviationObject



22
23
24
# File 'app/models/nomenclatural_rank/icn/family_group/subtribe.rb', line 22

def self.abbreviation
  'subtr.'
end

.parent_rankObject



3
4
5
# File 'app/models/nomenclatural_rank/icn/family_group/subtribe.rb', line 3

def self.parent_rank
  NomenclaturalRank::Icn::FamilyGroup::Tribe
end

.valid_name_endingObject



14
15
16
# File 'app/models/nomenclatural_rank/icn/family_group/subtribe.rb', line 14

def self.valid_name_ending
  'inae'
end

.valid_parentsObject



18
19
20
# File 'app/models/nomenclatural_rank/icn/family_group/subtribe.rb', line 18

def self.valid_parents
  [NomenclaturalRank::Icn::FamilyGroup::Tribe.to_s]
end

.validate_name_format(taxon_name) ⇒ Object



7
8
9
10
11
12
# File 'app/models/nomenclatural_rank/icn/family_group/subtribe.rb', line 7

def self.validate_name_format(taxon_name)
  super
  return true if taxon_name.name.length < 2
  taxon_name.errors.add(:name, 'name must end in -inae') unless(taxon_name.name =~ /.*inae\Z/)
  taxon_name.errors.add(:name, 'name must not end in -virinae') if (taxon_name.name =~ /.*virinae\Z/)
end