Class: NomenclaturalRank::Icnp::HigherClassificationGroup::ClassRank
- Inherits:
-
NomenclaturalRank::Icnp::HigherClassificationGroup
- Object
- NomenclaturalRank
- NomenclaturalRank::Icnp
- NomenclaturalRank::Icnp::HigherClassificationGroup
- NomenclaturalRank::Icnp::HigherClassificationGroup::ClassRank
- Defined in:
- app/models/nomenclatural_rank/icnp/higher_classification_group/class_rank.rb
Constant Summary
Constants inherited from NomenclaturalRank::Icnp
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from NomenclaturalRank::Icnp::HigherClassificationGroup
Methods inherited from NomenclaturalRank::Icnp
Class Method Details
.parent_rank ⇒ Object
3 4 5 |
# File 'app/models/nomenclatural_rank/icnp/higher_classification_group/class_rank.rb', line 3 def self.parent_rank NomenclaturalRank::Icnp::HigherClassificationGroup::Phylum end |
.valid_name_ending ⇒ Object
13 14 15 |
# File 'app/models/nomenclatural_rank/icnp/higher_classification_group/class_rank.rb', line 13 def self.valid_name_ending 'ia' end |
.validate_name_format(taxon_name) ⇒ Object
7 8 9 10 11 |
# File 'app/models/nomenclatural_rank/icnp/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, 'name must end in -ia') if not(taxon_name.name =~ /.*ia\Z/) end |
Instance Method Details
#rank_name ⇒ Object
17 18 19 |
# File 'app/models/nomenclatural_rank/icnp/higher_classification_group/class_rank.rb', line 17 def rank_name 'class' end |