class Athena::Formats::Lingo::KeyValue

“John Vorhauer*Vorhauer, John”

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 52
def convert(record)
  super.map { |terms|
    terms.join(SEPARATOR) if check_args(2, terms.size)
  }.compact
end