Class: NomenclaturalRank::Icnp::FamilyGroup::Tribe
- Inherits:
-
NomenclaturalRank::Icnp::FamilyGroup
- Object
- NomenclaturalRank
- NomenclaturalRank::Icnp
- NomenclaturalRank::Icnp::FamilyGroup
- NomenclaturalRank::Icnp::FamilyGroup::Tribe
- Defined in:
- app/models/nomenclatural_rank/icnp/family_group/tribe.rb
Constant Summary
Constants inherited from NomenclaturalRank::Icnp
Class Method Summary collapse
- .abbreviation ⇒ Object
- .parent_rank ⇒ Object
- .valid_name_ending ⇒ Object
- .valid_parents ⇒ Object
- .validate_name_format(taxon_name) ⇒ Object
Methods inherited from NomenclaturalRank::Icnp
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
.abbreviation ⇒ Object
21 22 23 |
# File 'app/models/nomenclatural_rank/icnp/family_group/tribe.rb', line 21 def self.abbreviation 'tr.' end |
.parent_rank ⇒ Object
3 4 5 |
# File 'app/models/nomenclatural_rank/icnp/family_group/tribe.rb', line 3 def self.parent_rank NomenclaturalRank::Icnp::FamilyGroup::Subfamily end |
.valid_name_ending ⇒ Object
13 14 15 |
# File 'app/models/nomenclatural_rank/icnp/family_group/tribe.rb', line 13 def self.valid_name_ending 'eae' end |
.valid_parents ⇒ Object
17 18 19 |
# File 'app/models/nomenclatural_rank/icnp/family_group/tribe.rb', line 17 def self.valid_parents [NomenclaturalRank::Icnp::FamilyGroup::Subfamily.to_s] end |
.validate_name_format(taxon_name) ⇒ Object
7 8 9 10 11 |
# File 'app/models/nomenclatural_rank/icnp/family_group/tribe.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 -eae') unless(taxon_name.name =~ /.*eae\Z/) end |