Class: NomenclaturalRank::Icvcn::Subfamily
  
  
  
  Constant Summary
  
  
  KINGDOM
  
    
      Class Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  
  group_base
  
  
  
  
  
  
  
  
  
  bottom_rank, collect_descendants_to_s, collect_to_s, nomenclatural_code, nomenclatural_code_class, order_ranks, ordered_ranks, parent, rank_expansion_sql, rank_name, top_rank, typical_use, valid_parents
  
    Class Method Details
    
      
  
  
    .abbreviation  ⇒ Object 
  
  
  
  
    | 
17
18
19 | # File 'app/models/nomenclatural_rank/icvcn/subfamily.rb', line 17
def self.abbreviation
  'subfam.'
end | 
 
    
      
    
      
  
  
    .valid_name_ending  ⇒ Object 
  
  
  
  
    | 
13
14
15 | # File 'app/models/nomenclatural_rank/icvcn/subfamily.rb', line 13
def self.valid_name_ending
  'inae'
end | 
 
    
      
  
  
    | 
7
8
9
10
11 | # File 'app/models/nomenclatural_rank/icvcn/subfamily.rb', line 7
def self.validate_name_format(taxon_name)
  return true if taxon_name.name.length < 2
  taxon_name.errors.add(:name, 'name must be capitalized') unless  !taxon_name.name.blank? && taxon_name.name == taxon_name.name.capitalize
  taxon_name.errors.add(:name, 'name must end in -virinae or -viroinae or -satellitinae') if not(taxon_name.name =~ /.*(virinae|viroinae|satellitinae)\Z/)
end |