Class: NomenclaturalRank::Icn::HigherClassificationGroup::Order
Constant Summary
KINGDOM
Class Method Summary
collapse
valid_parents
group_base
abbreviation, bottom_rank, collect_descendants_to_s, collect_to_s, nomenclatural_code, nomenclatural_code_class, ordered_ranks, parent, rank_name, top_rank, typical_use, valid_parents
Class Method Details
.valid_name_ending ⇒ Object
14
15
16
|
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/order.rb', line 14
def self.valid_name_ending
'ales'
end
|
7
8
9
10
11
12
|
# File 'app/models/nomenclatural_rank/icn/higher_classification_group/order.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 -ales') unless(taxon_name.name =~ /.*ales\Z/)
taxon_name.errors.add(:name, 'name must not end in -virales') if(taxon_name.name =~ /.*virales\Z/)
end
|