Class: NomenclaturalRank::Icn::HigherClassificationGroup::ClassRank

Inherits:
NomenclaturalRank::Icn::HigherClassificationGroup show all
Defined in:
app/models/nomenclatural_rank/icn/higher_classification_group/class_rank.rb

Constant Summary

Constants inherited from NomenclaturalRank::Icn

KINGDOM

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from NomenclaturalRank::Icn::HigherClassificationGroup

valid_parents

Methods inherited from NomenclaturalRank::Icn

group_base

Methods inherited from NomenclaturalRank

abbreviation, bottom_rank, collect_descendants_to_s, collect_to_s, nomenclatural_code, nomenclatural_code_class, ordered_ranks, parent, rank_name, top_rank, typical_use, valid_name_ending, valid_parents

Class Method Details

.parent_rankObject



3
4
5
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/class_rank.rb', line 3

def self.parent_rank
  NomenclaturalRank::Icn::HigherClassificationGroup::Subphylum
end

.validate_name_format(taxon_name) ⇒ Object



7
8
9
10
11
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/class_rank.rb', line 7

def self.validate_name_format(taxon_name)
  super
  return true if taxon_name.name.length < 2
  taxon_name.errors.add(:name, 'must end in -opsida, -phyceae, or -mycetes') if not(taxon_name.name =~ /.*opsida|phyceae|mycetes\Z/)
end

Instance Method Details

#rank_nameObject



13
14
15
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/class_rank.rb', line 13

def rank_name
  'class'
end