Class: NomenclaturalRank::Iczn::FamilyGroup::Family
Constant Summary
ENDINGS
Class Method Summary
collapse
valid_parents
group_base
bottom_rank, nomenclatural_code, nomenclatural_code_class, rank_name, top_rank, typical_use, valid_parents
Class Method Details
.abbreviation ⇒ Object
12
13
14
|
# File 'app/models/nomenclatural_rank/iczn/family_group/family.rb', line 12
def self.abbreviation
"fam."
end
|
.parent_rank ⇒ Object
3
4
5
|
# File 'app/models/nomenclatural_rank/iczn/family_group/family.rb', line 3
def self.parent_rank
NomenclaturalRank::Iczn::FamilyGroup::Epifamily
end
|
7
8
9
10
|
# File 'app/models/nomenclatural_rank/iczn/family_group/family.rb', line 7
def self.validate_name_format(taxon_name)
super
taxon_name.errors.add(:name, 'name must end in -idae') if not(taxon_name.name =~ /.*idae\Z/)
end
|