Class: NomenclaturalRank::Icn::HigherClassificationGroup::Kingdom
Class Method Summary
collapse
valid_parents
group_base
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_rank ⇒ Object
3
4
5
|
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/kingdom.rb', line 3
def self.parent_rank
NomenclaturalRank::Icn
end
|
7
8
9
10
11
|
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/kingdom.rb', line 7
def self.validate_name_format(taxon_name)
super
return true if taxon_name.name.length < 2
taxon_name.errors.add(:name, "Should be 'Plantae or Fungi or Chromista'") if taxon_name.name != 'Plantae' && taxon_name.name != 'Fungi' && taxon_name.name != 'Chromista'
end
|