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