module ScientificNameClean::SimpleAuthorship4

Public Instance Methods

details() click to toggle source
Calls superclass method
# File lib/biodiversity/parser/scientific_name_clean.rb, line 4501
def details
  details = details_with_arg(:basionymAuthorTeam)
  details[:basionymAuthorTeam].merge!(super)
  details
end
details_with_arg(authorTeamType = "basionymAuthorTeam") click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 4507
def details_with_arg(authorTeamType = "basionymAuthorTeam")
  { :authorship => text_value,
    authorTeamType.to_sym => {
      :authorTeam => text_value,
    }
  }
end