class Athena::Formats::Lingo::MultiValue

“Fax;Faxkopie;Telefax”

Constants

SEPARATOR

Public Instance Methods

convert(record) click to toggle source
Calls superclass method Athena::Formats::Lingo#convert
# File lib/athena/formats/lingo.rb, line 82
def convert(record)
  super.map { |terms|
    terms.join(SEPARATOR) if check_args('> 1', terms.size) { |actual|
      actual > 1
    }
  }.compact
end