SpeciesFileGroup/taxonworks

View on GitHub
app/models/nomenclatural_rank/icn.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NomenclaturalRank::Icn < NomenclaturalRank

  KINGDOM = %w{Plantae Chromista Fungi}

  def self.group_base(rank_string)
    rank_string.match( /(NomenclaturalRank::Icn::.+Group::).+/)
    $1
  end

end