Class: NomenclaturalRank::Icnp::FamilyGroup
- Inherits:
-
NomenclaturalRank::Icnp
- Object
- NomenclaturalRank
- NomenclaturalRank::Icnp
- NomenclaturalRank::Icnp::FamilyGroup
- Defined in:
- app/models/nomenclatural_rank/icnp/family_group.rb
Defined Under Namespace
Classes: Family, Subfamily, Subtribe, Tribe
Constant Summary
Constants inherited from NomenclaturalRank::Icnp
Class Method Summary collapse
Methods inherited from NomenclaturalRank::Icnp
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_parents ⇒ Object
7 8 9 10 11 |
# File 'app/models/nomenclatural_rank/icnp/family_group.rb', line 7 def self.valid_parents self.collect_descendants_to_s( NomenclaturalRank::Icnp::HigherClassificationGroup, NomenclaturalRank::Icnp::FamilyGroup) end |
.validate_name_format(taxon_name) ⇒ Object
3 4 5 |
# File 'app/models/nomenclatural_rank/icnp/family_group.rb', line 3 def self.validate_name_format(taxon_name) taxon_name.errors.add(:name, 'name must be capitalized') unless !taxon_name.name.blank? && taxon_name.name == taxon_name.name.capitalize end |