Class: NomenclaturalRank::Icnp::GenusGroup

Inherits:
NomenclaturalRank::Icnp show all
Defined in:
app/models/nomenclatural_rank/icnp/genus_group.rb

Direct Known Subclasses

Genus, Subgenus

Defined Under Namespace

Classes: Genus, Subgenus

Constant Summary

Constants inherited from NomenclaturalRank::Icnp

KINGDOM

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from NomenclaturalRank::Icnp

group_base

Methods inherited from NomenclaturalRank

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

Class Method Details

.valid_parentsObject



12
13
14
15
16
# File 'app/models/nomenclatural_rank/icnp/genus_group.rb', line 12

def self.valid_parents
  self.collect_descendants_to_s(
      NomenclaturalRank::Icnp::FamilyGroup,
      NomenclaturalRank::Icnp::GenusGroup)
end

.validate_name_format(taxon_name) ⇒ Object



3
4
5
6
# File 'app/models/nomenclatural_rank/icnp/genus_group.rb', line 3

def self.validate_name_format(taxon_name)
  taxon_name.errors.add(:name, 'name must be capitalized') if !taxon_name.name.blank? && taxon_name.name != taxon_name.name.capitalize && !taxon_name.name.include?(' ')
  taxon_name.errors.add(:name, 'name must be at least two letters') unless taxon_name.name.length > 1
end

Instance Method Details

#parent_rankObject



8
9
10
# File 'app/models/nomenclatural_rank/icnp/genus_group.rb', line 8

def parent_rank
  nil
end